Merge pull request #1218 from ocharles/web-routes
haskellPackages.webRoutesBoomerang: new expression
This commit is contained in:
commit
8786aa1213
@ -0,0 +1,14 @@
|
||||
{ cabal, boomerang, mtl, parsec, text, webRoutes }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "web-routes-boomerang";
|
||||
version = "0.28.0";
|
||||
sha256 = "1xp8p0fkwirrpssb9lnxl7fmlmrql28r2ywaa99gw9cdqxifzbbl";
|
||||
buildDepends = [ boomerang mtl parsec text webRoutes ];
|
||||
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 ];
|
||||
};
|
||||
})
|
23
pkgs/development/libraries/haskell/web-routes/default.nix
Normal file
23
pkgs/development/libraries/haskell/web-routes/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ cabal, blazeBuilder, httpTypes, HUnit, mtl, parsec, QuickCheck
|
||||
, split, testFramework, testFrameworkHunit
|
||||
, testFrameworkQuickcheck2, testFrameworkTh, text, utf8String
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "web-routes";
|
||||
version = "0.27.3";
|
||||
sha256 = "06a3b88gzbn7dr7hff2fjy1q7sxc479ha4g1wqsbjrb2ajrp376q";
|
||||
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 ];
|
||||
};
|
||||
})
|
@ -2250,6 +2250,10 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
||||
};
|
||||
WebBitsHtml = self.WebBitsHtml_1_0_2;
|
||||
|
||||
webRoutes = callPackage ../development/libraries/haskell/web-routes {};
|
||||
|
||||
webRoutesBoomerang = callPackage ../development/libraries/haskell/web-routes-boomerang {};
|
||||
|
||||
CouchDB = callPackage ../development/libraries/haskell/CouchDB {};
|
||||
|
||||
wlPprint = callPackage ../development/libraries/haskell/wl-pprint {};
|
||||
|
Loading…
Reference in New Issue
Block a user