packages feed

cabal2nix-2.9.3: test/golden-test-cases/hit.nix.golden

{ mkDerivation, attoparsec, base, byteable, bytedump, bytestring
, containers, cryptohash, hourglass, mtl, parsec, patience, random
, stdenv, system-fileio, system-filepath, tasty, tasty-quickcheck
, unix-compat, utf8-string, vector, zlib, zlib-bindings
}:
mkDerivation {
  pname = "hit";
  version = "0.6.3";
  sha256 = "deadbeef";
  isLibrary = true;
  isExecutable = true;
  enableSeparateDataOutput = true;
  libraryHaskellDepends = [
    attoparsec base byteable bytestring containers cryptohash hourglass
    mtl parsec patience random system-fileio system-filepath
    unix-compat utf8-string vector zlib zlib-bindings
  ];
  testHaskellDepends = [
    base bytedump bytestring hourglass tasty tasty-quickcheck
  ];
  homepage = "http://github.com/vincenthz/hit";
  description = "Git operations in haskell";
  license = stdenv.lib.licenses.bsd3;
}