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

24 lines
587 B
Nix
Raw Normal View History

2018-03-14 19:48:57 +00:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "gllvm-${version}";
version = "1.2.2";
2018-03-14 19:48:57 +00:00
goPackagePath = "github.com/SRI-CSL/gllvm";
src = fetchFromGitHub {
owner = "SRI-CSL";
repo = "gllvm";
rev = "v${version}";
sha256 = "1k6081frnc6i6h3fa8d796cirhbf5kkshw7qyarz5wi3fcgijn4s";
2018-03-14 19:48:57 +00:00
};
meta = with stdenv.lib; {
homepage = https://github.com/SRI-CSL/gllvm;
description = "Whole Program LLVM: wllvm ported to go";
license = licenses.bsd3;
maintainers = with maintainers; [ dtzWill ];
platforms = platforms.all;
2018-03-14 19:48:57 +00:00
};
}