2018-03-14 14:48:57 -05:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "gllvm";
|
2020-06-14 15:59:53 +00:00
|
|
|
version = "1.2.6";
|
2018-03-14 14:48:57 -05:00
|
|
|
|
|
|
|
|
goPackagePath = "github.com/SRI-CSL/gllvm";
|
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "SRI-CSL";
|
|
|
|
|
repo = "gllvm";
|
2018-05-02 19:32:12 -05:00
|
|
|
rev = "v${version}";
|
2020-06-14 15:59:53 +00:00
|
|
|
sha256 = "0qzmrprc7npc0ln6mhkjrm8fgh2n94rdylixk11p6imxyx5fj3gg";
|
2018-03-14 14:48:57 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://github.com/SRI-CSL/gllvm";
|
2018-03-14 14:48:57 -05:00
|
|
|
description = "Whole Program LLVM: wllvm ported to go";
|
|
|
|
|
license = licenses.bsd3;
|
|
|
|
|
maintainers = with maintainers; [ dtzWill ];
|
2018-06-01 14:50:49 -05:00
|
|
|
platforms = platforms.all;
|
2018-03-14 14:48:57 -05:00
|
|
|
};
|
|
|
|
|
}
|