* added haskell libraries: webserver, json 0.3.6, http 3001, base64string, CS173Tourney
* added dep on getopt to couchdb svn path=/nixpkgs/trunk/; revision=18201
This commit is contained in:
18
pkgs/development/libraries/haskell/WebServer/default.nix
Normal file
18
pkgs/development/libraries/haskell/WebServer/default.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{cabal, fetchgit, network, mtl, parsec}:
|
||||
|
||||
cabal.mkDerivation (self : {
|
||||
pname = "WebServer";
|
||||
version = "1.2";
|
||||
|
||||
src = fetchgit {
|
||||
url = git://github.com/arjunguha/haskell-web.git;
|
||||
rev = "76c9aabd31d03f052a80a0f6999dc7c5f1b11c41" ;
|
||||
sha256 = "afd550a4c6aeffe2f3adb38556b8e9ae198e98db17338ea6c8fa92d56c7eddb7";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [network mtl parsec];
|
||||
meta = {
|
||||
description = "";
|
||||
};
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user