Merge pull request #193320 from aaronjheng/gllvm-1.3.1

gllvm: 1.3.0 -> 1.3.1
This commit is contained in:
Jonas Heinrich 2022-11-07 18:30:24 +01:00 committed by GitHub
commit 0993de80ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";