ac69747aa8
svn path=/nixpkgs/trunk/; revision=32292
20 lines
539 B
Nix
20 lines
539 B
Nix
{ cabal, Cabal, network }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "httpd-shed";
|
|
version = "0.4";
|
|
sha256 = "c03f784742bdc3053c7e867e587ee859a9a3adaa082d36bdb2ea69da1b02069f";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [ Cabal 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
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|