nixpkgs/pkgs/development/libraries/haskell/httpd-shed/default.nix
2014-01-15 16:38:18 +01:00

17 lines
467 B
Nix

{ cabal, network }:
cabal.mkDerivation (self: {
pname = "httpd-shed";
version = "0.4.0.1";
sha256 = "04m07wqhaggkgksha7x528y890j30ay5axipfy6b1ma9cf0a9jwq";
isLibrary = true;
isExecutable = true;
buildDepends = [ network ];
meta = {
description = "A simple web-server with an interact style API";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})