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

23 lines
626 B
Nix
Raw Normal View History

2018-03-14 12:48:57 -07:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "gllvm-${version}";
version = "2018-04-28"; # ~= 1.0.2, but no release tags yet
2018-03-14 12:48:57 -07:00
goPackagePath = "github.com/SRI-CSL/gllvm";
src = fetchFromGitHub {
owner = "SRI-CSL";
repo = "gllvm";
rev = "7755cdabb9bd2c5115059c13dce986e4e38f624e";
sha256 = "0a7mzmshyl4m216cxnar0pzjq98n2678x0czqfxgfdga55xp5frl";
2018-03-14 12:48:57 -07: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 ];
};
}