diff --git a/manifest.dhall b/manifest.dhall index 6974ddd768bdabe86bdf6452c083075d9b21874d..23e3d98d55cb3c1450a796c0eec4b53e8ea76ccc 100644 --- a/manifest.dhall +++ b/manifest.dhall @@ -320,6 +320,7 @@ in [ callHackage "Cabal" "3.8.1.0" , callHackage "hspec-core" "2.10.0.1" , callHackage "hspec-discover" "2.10.0.1" , callHackage "hspec-meta" "2.9.3" + , callHackage "httpd-shed" "0.4.1.1" , callHackage "http-api-data" "0.5" , callHackage "http-client-tls" "0.3.6.1" , callHackage "http-client" "0.7.13.1" diff --git a/overlay.nix b/overlay.nix index abf2a50939bb956dd8e8ea3a3d0fa804472a9090..c04991e11c64b1d5bdb376e56d418452e45bd4da 100644 --- a/overlay.nix +++ b/overlay.nix @@ -433,6 +433,8 @@ self: with pkgs.haskell.lib; { http2 = self.callPackage (./pkgs/http2.nix) { }; + httpd-shed = self.callPackage (./pkgs/httpd-shed.nix) { }; + incipit-base = self.callPackage (./pkgs/incipit-base.nix) { }; incipit-core = self.callPackage (./pkgs/incipit-core.nix) { }; diff --git a/pkgs/httpd-shed.nix b/pkgs/httpd-shed.nix new file mode 100644 index 0000000000000000000000000000000000000000..dc8860627f8c47ef120bd8ff6aa8c4446b791870 --- /dev/null +++ b/pkgs/httpd-shed.nix @@ -0,0 +1,20 @@ +{ 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; +}