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

30 lines
935 B
Nix
Raw Normal View History

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
2014-05-04 13:59:28 -07:00
{ cabal, attoparsec, bytedump, cryptohash, hourglass, HUnit, mtl
, parsec, patience, QuickCheck, random, systemFileio
2014-10-13 04:03:00 -07:00
, systemFilepath, testFramework, testFrameworkQuickcheck2
, unixCompat, vector, zlib, zlibBindings
}:
cabal.mkDerivation (self: {
pname = "hit";
2014-10-13 04:03:00 -07:00
version = "0.6.2";
sha256 = "07lfjbn48v8ykkyj15diy4a9kpgzc93gv0l1rdfcacl3f26a97hs";
isLibrary = true;
isExecutable = true;
buildDepends = [
2014-05-04 13:59:28 -07:00
attoparsec cryptohash hourglass mtl parsec patience random
2014-10-13 04:03:00 -07:00
systemFileio systemFilepath unixCompat vector zlib zlibBindings
];
testDepends = [
2014-05-04 13:59:28 -07: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;
};
})