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

28 lines
634 B
Nix
Raw Normal View History

2020-10-19 17:58:45 +00:00
{ stdenv
, fetchgit
, unstableGitUpdater
}:
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-2019-07-11";
2019-05-23 10:20:32 +00:00
src = fetchgit {
url = "git://c9x.me/qbe.git";
rev = "7bf08ff50729037c8820b26d085905175b5593c8";
sha256 = "0w1yack5ky6x6lbw8vn6swsy8s90n6ny0jpkw0866ja677z7qz34";
2019-05-23 10:20:32 +00:00
};
makeFlags = [ "PREFIX=$(out)" ];
2020-10-19 17:58:45 +00:00
passthru.updateScript = unstableGitUpdater { };
2019-05-23 10:20:32 +00:00
meta = with stdenv.lib; {
homepage = "https://c9x.me/compile/";
description = "A small compiler backend written in C";
maintainers = with maintainers; [ fgaz ];
license = licenses.mit;
platforms = platforms.all;
};
}