about summary refs log tree commit diff
path: root/pkgs/development/tools/haskell/haste/haste-Cabal.nix
diff options
context:
space:
mode:
authorobadz <dav-github@odav.org>2016-04-09 03:25:04 +0100
committerobadz <dav-github@odav.org>2016-04-11 15:24:56 +0100
commit7f2163fc97d422bf19f71f09f4c813e49b1fcc8e (patch)
treee5309dc00b6a8cefe80d1fd935550d5e2fdb7a6c /pkgs/development/tools/haskell/haste/haste-Cabal.nix
parente8b3532d26c15f308c4b597128da8b3b9554e932 (diff)
downloadnixlib-7f2163fc97d422bf19f71f09f4c813e49b1fcc8e.tar
nixlib-7f2163fc97d422bf19f71f09f4c813e49b1fcc8e.tar.gz
nixlib-7f2163fc97d422bf19f71f09f4c813e49b1fcc8e.tar.bz2
nixlib-7f2163fc97d422bf19f71f09f4c813e49b1fcc8e.tar.lz
nixlib-7f2163fc97d422bf19f71f09f4c813e49b1fcc8e.tar.xz
nixlib-7f2163fc97d422bf19f71f09f4c813e49b1fcc8e.tar.zst
nixlib-7f2163fc97d422bf19f71f09f4c813e49b1fcc8e.zip
haskellPackages.haste-compiler: fix so that it now builds and runs
Required adding:
haskellPackages.haste-Cabal, and
haskellPackages.haste-cabal-install
Diffstat (limited to 'pkgs/development/tools/haskell/haste/haste-Cabal.nix')
-rw-r--r--pkgs/development/tools/haskell/haste/haste-Cabal.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/development/tools/haskell/haste/haste-Cabal.nix b/pkgs/development/tools/haskell/haste/haste-Cabal.nix
new file mode 100644
index 000000000000..45a60172e395
--- /dev/null
+++ b/pkgs/development/tools/haskell/haste/haste-Cabal.nix
@@ -0,0 +1,35 @@
+# Haste requires its own patched up version of Cabal that's not on hackage
+{ mkDerivation, array, base, binary, bytestring, containers
+, deepseq, directory, extensible-exceptions, filepath, old-time
+, pretty, process, QuickCheck, regex-posix, stdenv, tasty
+, tasty-hunit, tasty-quickcheck, time, unix
+, fetchFromGitHub
+}:
+
+mkDerivation {
+  pname = "Cabal";
+  version = "1.23.0.0";
+  src = fetchFromGitHub {
+    owner = "valderman";
+    repo = "cabal";
+    rev = "a1962987ba32d5e20090830f50c6afdc78dae005";
+    sha256 = "1gjmscfsikcvgkv6zricpfxvj23wxahndm784lg9cpxrc3pn5hvh";
+  };
+  libraryHaskellDepends = [
+    array base binary bytestring containers deepseq directory filepath
+      pretty process time unix
+  ];
+  testHaskellDepends = [
+    base bytestring containers directory extensible-exceptions filepath
+      old-time pretty process QuickCheck regex-posix tasty tasty-hunit
+      tasty-quickcheck unix
+  ];
+  prePatch = ''
+    rm -rf cabal-install
+    cd Cabal
+    '';
+  doCheck = false;
+  homepage = "http://www.haskell.org/cabal/";
+  description = "A framework for packaging Haskell software";
+  license = stdenv.lib.licenses.bsd3;
+}