From 64daeabbb7b85f1c24156173673f8bfb9c3d5fcb Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Wed, 28 Dec 2016 18:23:42 +0100 Subject: pkgs/sternenseemann: spacecookie and gopher-proxy --- pkgs/sternenseemann/gopher-proxy/default.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pkgs/sternenseemann/gopher-proxy/default.nix (limited to 'pkgs/sternenseemann/gopher-proxy/default.nix') diff --git a/pkgs/sternenseemann/gopher-proxy/default.nix b/pkgs/sternenseemann/gopher-proxy/default.nix new file mode 100644 index 00000000..0b968c6d --- /dev/null +++ b/pkgs/sternenseemann/gopher-proxy/default.nix @@ -0,0 +1,21 @@ +{ mkDerivation, attoparsec, base, bytestring, errors, fetchgit +, http-types, lucid, mime-types, network, optparse-applicative +, stdenv, text, wai, warp +}: +mkDerivation { + pname = "gopher-proxy"; + version = "0.1.0.0"; + src = fetchgit { + url = "https://github.com/sternenseemann/gopher-proxy"; + sha256 = "0iskrx225rk1zaq949vh0xxsz3328ma78hzy11jdpc4rsyw1a1dn"; + rev = "84f0c940e041121a385519476193862fe1876ed8"; + }; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + attoparsec base bytestring errors http-types lucid mime-types + network optparse-applicative text wai warp + ]; + description = "proxy gopher over http"; + license = stdenv.lib.licenses.gpl3; +} -- cgit 1.4.1