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
37 lines
621 B
Nix
37 lines
621 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
gawk,
|
|
cmake,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ilbc-rfc3951";
|
|
|
|
script = ./extract-cfile.awk;
|
|
|
|
rfc3951 = fetchurl {
|
|
url = "http://www.ietf.org/rfc/rfc3951.txt";
|
|
sha256 = "0zf4mvi3jzx6zjrfl2rbhl2m68pzbzpf1vbdmn7dqbfpcb67jpdy";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
unpackPhase = ''
|
|
mkdir -v ${name}
|
|
cd ${name}
|
|
${gawk}/bin/gawk -f ${script} ${rfc3951}
|
|
cp -v ${./CMakeLists.txt} CMakeLists.txt
|
|
'';
|
|
|
|
# Fixes the build with CMake 4
|
|
cmakeFlags = [
|
|
"-DCMAKE_POLICY_VERSION_MINIMUM=3.5"
|
|
];
|
|
|
|
meta = {
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|