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

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

34 lines
756 B
Nix
Raw Normal View History

{ lib, stdenv
2020-10-19 17:58:45 +00:00
, fetchgit
, unstableGitUpdater
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";
version = "unstable-2021-12-05";
2019-05-23 10:20:32 +00:00
src = fetchgit {
url = "git://c9x.me/qbe.git";
rev = "367c8215d99054892740ad74c690b106c45ebf60";
sha256 = "sha256-xhTEiFR1RXMHtxmXlRof3O8monXEjstyWP3GClZmMuU=";
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 {};
updateScript = unstableGitUpdater { };
};
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;
};
}