about summary refs log tree commit diff
path: root/pkgs/development/compilers/uhc
diff options
context:
space:
mode:
authorPhilipp Hausmann <ph_git@314.ch>2015-10-15 13:12:40 +0200
committerPhilipp Hausmann <ph_git@314.ch>2015-10-15 15:01:26 +0200
commit30d82d4a648e6080ec74a87c52ff0183d3f7b4d5 (patch)
tree14aa4a88967d3498227a91a9fa7d9b89b5aaf4a1 /pkgs/development/compilers/uhc
parentcb38f10d12dbe5b6910ed4716c60df3d7becb7af (diff)
downloadnixlib-30d82d4a648e6080ec74a87c52ff0183d3f7b4d5.tar
nixlib-30d82d4a648e6080ec74a87c52ff0183d3f7b4d5.tar.gz
nixlib-30d82d4a648e6080ec74a87c52ff0183d3f7b4d5.tar.bz2
nixlib-30d82d4a648e6080ec74a87c52ff0183d3f7b4d5.tar.lz
nixlib-30d82d4a648e6080ec74a87c52ff0183d3f7b4d5.tar.xz
nixlib-30d82d4a648e6080ec74a87c52ff0183d3f7b4d5.tar.zst
nixlib-30d82d4a648e6080ec74a87c52ff0183d3f7b4d5.zip
uhc: Update to 1.1.9.1
Diffstat (limited to 'pkgs/development/compilers/uhc')
-rw-r--r--pkgs/development/compilers/uhc/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/development/compilers/uhc/default.nix b/pkgs/development/compilers/uhc/default.nix
index 017dcfb3e126..b0bd70fab033 100644
--- a/pkgs/development/compilers/uhc/default.nix
+++ b/pkgs/development/compilers/uhc/default.nix
@@ -1,18 +1,18 @@
 { stdenv, coreutils, fetchgit, m4, libtool, clang, ghcWithPackages }:
 
-let wrappedGhc = ghcWithPackages (hpkgs: with hpkgs; [shuffle hashable mtl network uhc-util uulib] );
+let wrappedGhc = ghcWithPackages (hpkgs: with hpkgs; [fgl vector syb uulib network binary hashable uhc-util mtl transformers directory containers array process filepath shuffle uuagc] );
 in stdenv.mkDerivation rec {
   # Important:
   # The commits "Fixate/tag v..." are the released versions.
   # Ignore the "bumped version to ...." commits, they do not
   # correspond to releases.
-  version = "1.1.9.1.20150611";
+  version = "1.1.9.1";
   name = "uhc-${version}";
 
   src = fetchgit {
     url = "https://github.com/UU-ComputerScience/uhc.git";
-    rev = "b80098e07d12900f098ea964b1d2b3f38e5c9900";
-    sha256 = "14qg1fd9pgbczcmn5ggkd9674qadx1izmz8363ps7c207dg94f9x";
+    rev = "ce93d01486972c994ea2bbbd3d43859911120c39";
+    sha256 = "1y670sc6ky74l3msayzqjlkjv1kpv3g35pirsq3q79klzvnpyj2x";
   };
 
   postUnpack = "sourceRoot=\${sourceRoot}/EHC";
@@ -50,6 +50,5 @@ in stdenv.mkDerivation rec {
     # On Darwin, the GNU libtool is used, which does not
     # support the -static flag and thus breaks the build.
     platforms = ["x86_64-linux"];
-    broken = true; # https://github.com/UU-ComputerScience/uhc/issues/60
   };
 }