24 lines
791 B
Nix
24 lines
791 B
Nix
{ cabal, blazeBuilder, httpTypes, HUnit, mtl, parsec, QuickCheck
|
|
, split, testFramework, testFrameworkHunit
|
|
, testFrameworkQuickcheck2, testFrameworkTh, text, utf8String
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "web-routes";
|
|
version = "0.27.6";
|
|
sha256 = "16jmiwnwmq9bkifk14dfs88a2kyy7rqybyq68ybrjq1x84x6pkkp";
|
|
buildDepends = [
|
|
blazeBuilder httpTypes mtl parsec split text utf8String
|
|
];
|
|
testDepends = [
|
|
HUnit QuickCheck testFramework testFrameworkHunit
|
|
testFrameworkQuickcheck2 testFrameworkTh
|
|
];
|
|
meta = {
|
|
description = "Library for maintaining correctness and composability of URLs within an application";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
|
|
};
|
|
})
|