mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
gllvm: 1.3.0 -> 1.3.1
This commit is contained in:
parent
7e52b35fe9
commit
a1e07d8eda
@ -1,18 +1,23 @@
|
||||
{ lib, buildGoPackage, fetchFromGitHub }:
|
||||
{ lib, buildGoModule, fetchFromGitHub, llvmPackages, getconf }:
|
||||
|
||||
buildGoPackage rec {
|
||||
buildGoModule rec {
|
||||
pname = "gllvm";
|
||||
version = "1.3.0";
|
||||
|
||||
goPackagePath = "github.com/SRI-CSL/gllvm";
|
||||
version = "1.3.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "SRI-CSL";
|
||||
repo = "gllvm";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-nu6PRFk+GoN1gT1RTbX6mTPZByAGf0bSsj2C5YriGp8=";
|
||||
sha256 = "sha256-CoreqnMRuPuv+Ci1uyF3HJCJFwK2jwB79okynv6AHTA=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=";
|
||||
|
||||
checkInputs = with llvmPackages; [
|
||||
clang
|
||||
llvm
|
||||
] ++ lib.optionals stdenv.isDarwin [ getconf ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/SRI-CSL/gllvm";
|
||||
description = "Whole Program LLVM: wllvm ported to go";
|
||||
|
Loading…
Reference in New Issue
Block a user