nixpkgs/pkgs/development/tools/gllvm/default.nix

23 lines
548 B
Nix
Raw Normal View History

2018-03-14 19:48:57 +00:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "gllvm";
2020-08-10 10:02:57 +01:00
version = "1.2.7";
2018-03-14 19:48:57 +00:00
goPackagePath = "github.com/SRI-CSL/gllvm";
src = fetchFromGitHub {
owner = "SRI-CSL";
repo = "gllvm";
rev = "v${version}";
2020-08-10 10:02:57 +01:00
sha256 = "13cmmgbcdfgyxnxqfrn4m6vf0bhpday8lmrr3sm6rk48g77cq203";
2018-03-14 19:48:57 +00:00
};
meta = with stdenv.lib; {
homepage = "https://github.com/SRI-CSL/gllvm";
2018-03-14 19:48:57 +00:00
description = "Whole Program LLVM: wllvm ported to go";
license = licenses.bsd3;
maintainers = with maintainers; [ dtzWill ];
};
}