Skip to content
Snippets Groups Projects
Commit edff0a4e authored by Daniel Firth's avatar Daniel Firth
Browse files

httpd-shed: init at 0.4.1.1

parent 0e39d938
No related merge requests found
...@@ -320,6 +320,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -320,6 +320,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "hspec-core" "2.10.0.1" , callHackage "hspec-core" "2.10.0.1"
, callHackage "hspec-discover" "2.10.0.1" , callHackage "hspec-discover" "2.10.0.1"
, callHackage "hspec-meta" "2.9.3" , callHackage "hspec-meta" "2.9.3"
, callHackage "httpd-shed" "0.4.1.1"
, callHackage "http-api-data" "0.5" , callHackage "http-api-data" "0.5"
, callHackage "http-client-tls" "0.3.6.1" , callHackage "http-client-tls" "0.3.6.1"
, callHackage "http-client" "0.7.13.1" , callHackage "http-client" "0.7.13.1"
......
...@@ -433,6 +433,8 @@ self: with pkgs.haskell.lib; { ...@@ -433,6 +433,8 @@ self: with pkgs.haskell.lib; {
http2 = self.callPackage (./pkgs/http2.nix) { }; http2 = self.callPackage (./pkgs/http2.nix) { };
httpd-shed = self.callPackage (./pkgs/httpd-shed.nix) { };
incipit-base = self.callPackage (./pkgs/incipit-base.nix) { }; incipit-base = self.callPackage (./pkgs/incipit-base.nix) { };
incipit-core = self.callPackage (./pkgs/incipit-core.nix) { }; incipit-core = self.callPackage (./pkgs/incipit-core.nix) { };
......
{ mkDerivation, base, lib, network, network-bsd, network-uri }:
mkDerivation {
pname = "httpd-shed";
version = "0.4.1.1";
sha256 = "590fcfcb401923652bfcaf8c9a81b3bbbe83a4b1d16f7ccfecf7e47f6b6cafa5";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base network network-bsd network-uri ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "A simple web-server with an interact style API";
license = lib.licenses.bsd3;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment