about summary refs log tree commit diff
path: root/pkgs/development/tools/haskell/haste/haste-Cabal.nix
blob: 45a60172e3952f742d6ab3c69cb33d10ff1492ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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;
}