depot/third_party/nixpkgs/pkgs/development/compilers/qbe/default.nix
Default email a944afd061 Project import generated by Copybara.
GitOrigin-RevId: 2247d824fe07f16325596acc7faa286502faffd1
2020-11-21 20:51:51 +01:00

28 lines
635 B
Nix

{ stdenv
, fetchgit
, unstableGitUpdater
}:
stdenv.mkDerivation rec {
pname = "qbe";
version = "unstable-2019-07-11";
src = fetchgit {
url = "git://c9x.me/qbe.git";
rev = "7bf08ff50729037c8820b26d085905175b5593c8";
sha256 = "0w1yack5ky6x6lbw8vn6swsy8s90n6ny0jpkw0866ja677z7qz34";
};
makeFlags = [ "PREFIX=$(out)" ];
passthru.updateScript = unstableGitUpdater { };
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;
};
}