summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/haskell/hack.nix
blob: df3343818794b41e8ea7270c1372315723007997 (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.1";
  src = fetchgit {
    url = "https://cgit.krebsco.de/hack";
    sha256 = "0ry5ikn89ij512qvk1xhdhfz4s8a6b9yawgx6lxgnw5jkiyjd7ka";
    rev = "f3ea150aca5cc86878fa10bc5b1f0918fc154e2a";
    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;
}