mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +03:00
haskell-yesod-routes: added version 0.0.1
svn path=/nixpkgs/trunk/; revision=32178
This commit is contained in:
parent
cd306852ad
commit
78d758d93f
14
pkgs/development/libraries/haskell/yesod-routes/default.nix
Normal file
14
pkgs/development/libraries/haskell/yesod-routes/default.nix
Normal file
@ -0,0 +1,14 @@
|
||||
{ cabal, pathPieces, text, vector }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "yesod-routes";
|
||||
version = "0.0.1";
|
||||
sha256 = "19bnww5idxr0j2l8g838idxkhhn73bhdz0bnvglinv7163fy8xhl";
|
||||
buildDepends = [ pathPieces text vector ];
|
||||
meta = {
|
||||
homepage = "http://www.yesodweb.com/";
|
||||
description = "Efficient routing for Yesod";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -1511,6 +1511,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
|
||||
yesodPersistent = callPackage ../development/libraries/haskell/yesod-persistent {};
|
||||
|
||||
yesodRoutes = callPackage ../development/libraries/haskell/yesod-routes {};
|
||||
|
||||
yesodStatic = callPackage ../development/libraries/haskell/yesod-static {};
|
||||
|
||||
yst = callPackage ../development/libraries/haskell/yst {};
|
||||
|
Loading…
Reference in New Issue
Block a user