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

24 lines
579 B
Nix
Raw Normal View History

2018-03-14 20:48:57 +01:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "gllvm";
2020-06-14 17:59:53 +02:00
version = "1.2.6";
2018-03-14 20:48:57 +01:00
goPackagePath = "github.com/SRI-CSL/gllvm";
src = fetchFromGitHub {
owner = "SRI-CSL";
repo = "gllvm";
rev = "v${version}";
2020-06-14 17:59:53 +02:00
sha256 = "0qzmrprc7npc0ln6mhkjrm8fgh2n94rdylixk11p6imxyx5fj3gg";
2018-03-14 20:48:57 +01:00
};
meta = with stdenv.lib; {
homepage = "https://github.com/SRI-CSL/gllvm";
2018-03-14 20:48:57 +01:00
description = "Whole Program LLVM: wllvm ported to go";
license = licenses.bsd3;
maintainers = with maintainers; [ dtzWill ];
platforms = platforms.all;
2018-03-14 20:48:57 +01:00
};
}