ponyc: 0.18.0 -> 0.18.1

This commit is contained in:
patternspandemic 2017-08-29 11:26:24 -07:00
parent 8b4392094f
commit 4bca6eca06
No known key found for this signature in database
GPG Key ID: 3B91B0048337A5BC

View File

@ -3,13 +3,13 @@
stdenv.mkDerivation ( rec {
name = "ponyc-${version}";
version = "0.18.0";
version = "0.18.1";
src = fetchFromGitHub {
owner = "ponylang";
repo = "ponyc";
rev = version;
sha256 = "0favj1895fp5j5i23cmjn9wvrrlchr2dmc18grlvbjr2cg2c76mg";
sha256 = "1yjrmi8xigh1n95d5q98m2jc4z45m5dwkah4hyi9dyibbfiiwix3";
};
buildInputs = [ llvm makeWrapper which ];
@ -83,7 +83,7 @@ stdenv.mkDerivation ( rec {
description = "Pony is an Object-oriented, actor-model, capabilities-secure, high performance programming language";
homepage = http://www.ponylang.org;
license = licenses.bsd2;
maintainers = with maintainers; [ doublec kamilchm ];
maintainers = with maintainers; [ doublec kamilchm patternspandemic ];
platforms = subtractLists platforms.i686 platforms.unix;
};
})