Merge pull request #40733 from dtzWill/update/gllvm-wllvm-1.2.1

{g,w}llvm: 1.2.0 -> 1.2.1
This commit is contained in:
Will Dietz 2018-05-18 13:15:01 -05:00 committed by GitHub
commit 6a8aa56a12
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View file

@ -2,7 +2,7 @@
buildGoPackage rec {
name = "gllvm-${version}";
version = "1.2.0";
version = "1.2.1";
goPackagePath = "github.com/SRI-CSL/gllvm";
@ -10,7 +10,7 @@ buildGoPackage rec {
owner = "SRI-CSL";
repo = "gllvm";
rev = "v${version}";
sha256 = "0779828kzw9ihdnw5r3h2fzzd8ml8cskyf5hmaqqksinjb7bm3is";
sha256 = "1rbvn7qhzb7xxqv0wrkwxq4sm657vsl6q7nwrfq2zwb21573811z";
};
meta = with stdenv.lib; {

View file

@ -1,20 +1,20 @@
{ stdenv, python3Packages }:
python3Packages.buildPythonApplication rec {
version = "1.2.0";
version = "1.2.1";
pname = "wllvm";
name = "${pname}-${version}";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "1hriyv5gfkcxjqk71l3030qfy3scsjr3mp12hkxfknh65inlqs5z";
sha256 = "1yr0gijhgbxx1sl5a8dygr3a8g5wfkh9rk4v789r2aplvcbanv5a";
};
meta = with stdenv.lib; {
homepage = https://github.com/travitch/whole-program-llvm;
description = "A wrapper script to build whole-program LLVM bitcode files";
license = licenses.mit;
maintainers = with maintainers; [ mic92 ];
maintainers = with maintainers; [ mic92 dtzWill ];
platforms = platforms.all;
};
}