nixpkgs/pkgs/development/libraries/haskell/web-routes/default.nix
Andres Löh df9f4a8696 Added a couple of web-programming-related Haskell packages.
svn path=/nixpkgs/trunk/; revision=22683
2010-07-21 09:41:12 +00:00

14 lines
449 B
Nix

{cabal, network, parsec, utf8String}:
cabal.mkDerivation (self : {
pname = "web-routes";
version = "0.22.0";
sha256 = "6482ecba585cf7b1f32c29bfd5cb6f5e06dba72231e38ae5baa15b6b95f7c6c8";
propagatedBuildInputs = [network parsec utf8String];
meta = {
description = "Library for maintaining correctness and composability of URLs within an application";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})