nixpkgs/pkgs/development/compilers/qbe/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
654 B
Nix
Raw Normal View History

{ lib, stdenv
2022-06-25 13:55:45 +00:00
, fetchzip
2021-06-21 13:53:14 +00:00
, callPackage
2020-10-19 17:58:45 +00:00
}:
2019-05-23 10:20:32 +00:00
2020-10-19 17:58:45 +00:00
stdenv.mkDerivation rec {
2019-05-23 10:20:32 +00:00
pname = "qbe";
2023-02-09 21:12:31 +00:00
version = "1.1";
2019-05-23 10:20:32 +00:00
2022-06-25 13:55:45 +00:00
src = fetchzip {
url = "https://c9x.me/compile/release/qbe-${version}.tar.xz";
2023-02-09 21:12:31 +00:00
sha256 = "sha256-yFZ3cpp7eLjf7ythKFTY1YEJYyfeg2en4/D8+9oM1B4=";
2019-05-23 10:20:32 +00:00
};
makeFlags = [ "PREFIX=$(out)" ];
2020-10-19 17:58:45 +00:00
2021-06-21 13:55:50 +00:00
doCheck = true;
2021-06-21 13:53:14 +00:00
passthru = {
tests.can-run-hello-world = callPackage ./test-can-run-hello-world.nix {};
};
2020-10-19 17:58:45 +00:00
meta = with lib; {
2019-05-23 10:20:32 +00:00
homepage = "https://c9x.me/compile/";
description = "A small compiler backend written in C";
maintainers = with maintainers; [ fgaz ];
license = licenses.mit;
platforms = platforms.all;
};
}