nixpkgs/pkgs/development/libraries/haskell/hit/default.nix

28 lines
837 B
Nix
Raw Normal View History

2014-05-04 20:59:28 +00:00
{ cabal, attoparsec, bytedump, cryptohash, hourglass, HUnit, mtl
, parsec, patience, QuickCheck, random, systemFileio
, systemFilepath, testFramework, testFrameworkQuickcheck2, vector
, zlib, zlibBindings
}:
cabal.mkDerivation (self: {
pname = "hit";
2014-05-04 20:59:28 +00:00
version = "0.6.0";
sha256 = "1haslqhnpfdll5cl3vq1y03h916lydhc9mq4gagm9qzjfjqv54k2";
isLibrary = true;
isExecutable = true;
buildDepends = [
2014-05-04 20:59:28 +00:00
attoparsec cryptohash hourglass mtl parsec patience random
systemFileio systemFilepath vector zlib zlibBindings
];
testDepends = [
2014-05-04 20:59:28 +00:00
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;
};
})