summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authordipinhora <dipin@sendence.com>2016-10-20 14:01:10 -0400
committerdipinhora <dipin@sendence.com>2016-10-20 14:01:10 -0400
commitae4ef90fcbc624b85a7dfb6cf4cb381f986b478a (patch)
treed9d8533ec112d7b47fb5f1af9554307a96523787 /pkgs/development/compilers
parent11cbeda6751b4a85700cfb696ecd813bbc0bf4f5 (diff)
downloadnixpkgs-ae4ef90fcbc624b85a7dfb6cf4cb381f986b478a.tar
nixpkgs-ae4ef90fcbc624b85a7dfb6cf4cb381f986b478a.tar.gz
nixpkgs-ae4ef90fcbc624b85a7dfb6cf4cb381f986b478a.tar.bz2
nixpkgs-ae4ef90fcbc624b85a7dfb6cf4cb381f986b478a.tar.lz
nixpkgs-ae4ef90fcbc624b85a7dfb6cf4cb381f986b478a.tar.xz
nixpkgs-ae4ef90fcbc624b85a7dfb6cf4cb381f986b478a.tar.zst
nixpkgs-ae4ef90fcbc624b85a7dfb6cf4cb381f986b478a.zip
ponyc: 0.5.1 -> 0.6.0
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/ponyc/default.nix4
-rw-r--r--pkgs/development/compilers/ponyc/disable-tests.patch6
2 files changed, 4 insertions, 6 deletions
diff --git a/pkgs/development/compilers/ponyc/default.nix b/pkgs/development/compilers/ponyc/default.nix
index 9d451c2e4f3..122b9ff7ed1 100644
--- a/pkgs/development/compilers/ponyc/default.nix
+++ b/pkgs/development/compilers/ponyc/default.nix
@@ -3,13 +3,13 @@
 
 stdenv.mkDerivation ( rec {
   name = "ponyc-${version}";
-  version = "0.5.1";
+  version = "0.6.0";
 
   src = fetchFromGitHub {
     owner = "ponylang";
     repo = "ponyc";
     rev = version;
-    sha256 = "14c6qs3cqn9hk2hrq2d5rd4cmwzzz2fcb02dg5q1blq17pj7mcxa";
+    sha256 = "10miwsyxl589b0n1h3dbbc2qckq8z8a58s0d53asq88w2gpc339q";
   };
 
   buildInputs = [ llvm makeWrapper which ];
diff --git a/pkgs/development/compilers/ponyc/disable-tests.patch b/pkgs/development/compilers/ponyc/disable-tests.patch
index 804a99fddcd..696dc005f0a 100644
--- a/pkgs/development/compilers/ponyc/disable-tests.patch
+++ b/pkgs/development/compilers/ponyc/disable-tests.patch
@@ -2,15 +2,13 @@ diff --git a/packages/net/_test.pony b/packages/net/_test.pony
 index ce26bd7..9a98cc7 100644
 --- a/packages/net/_test.pony
 +++ b/packages/net/_test.pony
-@@ -5,11 +5,7 @@ actor Main is TestList
+@@ -5,9 +5,7 @@ actor Main is TestList
    new make() => None
 
    fun tag tests(test: PonyTest) =>
 -    test(_TestBroadcast)
 -    test(_TestTCPWritev)
--    ifdef not windows then
--      test(_TestTCPExpect)
--    end
+-    test(_TestTCPExpect)
 +    None
 
  class _TestPing is UDPNotify