summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/haskell/hack.nix
blob: 37ef94e467cb908351b7cc84c0214ef585c6fdc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ mkDerivation, base, blessings, containers, data-default, fetchgit
, lens, lib, mtl, old-locale, process, scanner, time, unix, zippers
}:
mkDerivation {
  pname = "hack";
  version = "1.0.0";
  src = fetchgit {
    url = "https://cgit.krebsco.de/hack";
    sha256 = "0hi6frpnxbg3h6s7gd48ri57jc226qycy4rnhmpzpq195xf8y3pf";
    rev = "cb004b2e5f0fce6cea8d54e60558a1c1904dbe39";
    fetchSubmodules = true;
  };
  isLibrary = true;
  isExecutable = true;
  libraryHaskellDepends = [ base ];
  executableHaskellDepends = [
    base blessings containers data-default lens mtl old-locale process
    scanner time unix zippers
  ];
  license = lib.licenses.mit;
}