qbe: init at unstable-2019-05-15

This commit is contained in:
Francesco Gazzetta 2019-05-23 12:20:32 +02:00
parent 99c8680f49
commit 6e4d686506
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, fetchgit }:
stdenv.mkDerivation {
pname = "qbe";
version = "unstable-2019-05-15";
src = fetchgit {
url = "git://c9x.me/qbe.git";
rev = "acc3af47330fd6610cf0fbdb28e9fbd05160888f";
sha256 = "1c8ynqbakgz3hfdcyhwdmz7i1hnyd9m25f9y47sc21bvxwfrbzpi";
};
makeFlags = [ "PREFIX=$(out)" ];
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;
};
}

View file

@ -7925,6 +7925,8 @@ in
pony-stable = callPackage ../development/compilers/ponyc/pony-stable.nix { };
qbe = callPackage ../development/compilers/qbe { };
rgbds = callPackage ../development/compilers/rgbds { };
rtags = callPackage ../development/tools/rtags {