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
44 lines
948 B
Nix
44 lines
948 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchzip,
|
|
callPackage,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "qbe";
|
|
version = "1.2";
|
|
|
|
src = fetchzip {
|
|
url = "https://c9x.me/compile/release/qbe-${finalAttrs.version}.tar.xz";
|
|
hash = "sha256-UgtJnZF/YtD54OBy9HzGRAEHx5tC9Wo2YcUidGwrv+s=";
|
|
};
|
|
|
|
makeFlags = [
|
|
"PREFIX=$(out)"
|
|
"CC=${stdenv.cc.targetPrefix}cc"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
patches = [
|
|
# Use "${TMPDIR:-/tmp}" instead of the latter directly
|
|
# see <https://lists.sr.ht/~mpu/qbe/patches/49613>
|
|
./001-dont-hardcode-tmp.patch
|
|
];
|
|
|
|
passthru = {
|
|
tests.can-run-hello-world = callPackage ./test-can-run-hello-world.nix { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://c9x.me/compile/";
|
|
description = "Small compiler backend written in C";
|
|
maintainers = with maintainers; [ fgaz ];
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
mainProgram = "qbe";
|
|
};
|
|
})
|