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