summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hit/default.nix
blob: 9e1a48d94e67e57f7e804d96f80a295a7f6a2152 (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
{ cabal, attoparsec, bytedump, cryptohash, hourglass, HUnit, mtl
, parsec, patience, QuickCheck, random, systemFileio
, systemFilepath, testFramework, testFrameworkQuickcheck2, vector
, zlib, zlibBindings
}:

cabal.mkDerivation (self: {
  pname = "hit";
  version = "0.6.0";
  sha256 = "1haslqhnpfdll5cl3vq1y03h916lydhc9mq4gagm9qzjfjqv54k2";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [
    attoparsec cryptohash hourglass mtl parsec patience random
    systemFileio systemFilepath vector zlib zlibBindings
  ];
  testDepends = [
    bytedump hourglass HUnit QuickCheck testFramework
    testFrameworkQuickcheck2
  ];
  meta = {
    homepage = "http://github.com/vincenthz/hit";
    description = "Git operations in haskell";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})