about summary refs log tree commit diff
path: root/pkgs/sternenseemann/spacecookie/default.nix
blob: bc4ea599b8191fbd7c0961c201a589014c9e1106 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ mkDerivation, aeson, attoparsec, base, bytestring, containers
, directory, fetchgit, filepath, hxt-unicode, mtl, network, stdenv
, transformers, unix
}:
mkDerivation {
  pname = "spacecookie";
  version = "0.1.0.0";
  src = fetchgit {
    url = "https://github.com/sternenseemann/spacecookie";
    sha256 = "0qxrrjjlrjkws978h10cwph5cskaa85p1ndxc9phcqqw79ib4xmi";
    rev = "1d654575c2b77102f876f98fbea7708ae87c9583";
  };
  isLibrary = true;
  isExecutable = true;
  libraryHaskellDepends = [
    attoparsec base bytestring containers directory filepath
    hxt-unicode mtl network transformers unix
  ];
  executableHaskellDepends = [
    aeson attoparsec base bytestring containers directory filepath mtl
    network transformers unix
  ];
  description = "gopher server daemon";
  license = stdenv.lib.licenses.gpl3;
}