Merge pull request #28703 from patternspandemic/ponyc

ponyc: 0.18.0 -> 0.18.1
This commit is contained in:
Franz Pletz 2017-08-30 01:27:28 +02:00 committed by GitHub
commit ac388e9f87
1 changed files with 3 additions and 3 deletions

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;
};
})