about summary refs log tree commit diff
path: root/gopher-proxy.nix
blob: d943fc422a60c64e3e333b79658022e4ff84d96f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ mkDerivation, attoparsec, base, bytestring, directory, errors
, http-types, lucid, mime-types, network, optparse-applicative
, stdenv, text, wai, warp
}:
mkDerivation {
  pname = "gopher-proxy";
  version = "0.1.0.0";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [
    attoparsec base bytestring directory errors http-types lucid
    mime-types network optparse-applicative text wai warp
  ];
  description = "proxy gopher over http";
  license = stdenv.lib.licenses.gpl3;
}