Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitea,
|
|
cmake,
|
|
pkg-config,
|
|
curl,
|
|
libunistring,
|
|
openssl,
|
|
pcre,
|
|
zlib,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "the-foundation";
|
|
version = "1.10.1";
|
|
|
|
src = fetchFromGitea {
|
|
domain = "git.skyjake.fi";
|
|
owner = "skyjake";
|
|
repo = "the_Foundation";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-EGltSimFdgojbXt97TbH7+a3iwuuI/jj14u9fkw4NnA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
curl
|
|
libunistring
|
|
openssl
|
|
pcre
|
|
zlib
|
|
];
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeFeature "UNISTRING_DIR" "${libunistring}")
|
|
];
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-Wno-error=attribute-warning";
|
|
|
|
postFixup = ''
|
|
substituteInPlace "$out"/lib/pkgconfig/the_Foundation.pc \
|
|
--replace '="''${prefix}//' '="/'
|
|
'';
|
|
|
|
meta = {
|
|
description = "Opinionated C11 library for low-level functionality";
|
|
homepage = "https://git.skyjake.fi/skyjake/the_Foundation";
|
|
license = lib.licenses.bsd2;
|
|
maintainers = with lib.maintainers; [ sikmir ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|