forked from mirrors/nixpkgs
haskell-hamlet: added version 0.10.0
svn path=/nixpkgs/trunk/; revision=28887
This commit is contained in:
parent
70f424ee5e
commit
5eb504674a
22
pkgs/development/libraries/haskell/hamlet/0.10.0.nix
Normal file
22
pkgs/development/libraries/haskell/hamlet/0.10.0.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ cabal, blazeBuilder, blazeHtml, failure, parsec, shakespeare
|
||||
, text
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "hamlet";
|
||||
version = "0.10.0";
|
||||
sha256 = "0xqlc03g0qnpnrw957108rpjbs88p9wwvcgmz7vc1f0k88lc0h6n";
|
||||
buildDepends = [
|
||||
blazeBuilder blazeHtml failure parsec shakespeare text
|
||||
];
|
||||
meta = {
|
||||
homepage = "http://www.yesodweb.com/book/templates";
|
||||
description = "Haml-like template files that are compile-time checked";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = [
|
||||
self.stdenv.lib.maintainers.andres
|
||||
self.stdenv.lib.maintainers.simons
|
||||
];
|
||||
};
|
||||
})
|
|
@ -649,9 +649,13 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||
|
||||
graphviz = callPackage ../development/libraries/haskell/graphviz {};
|
||||
|
||||
hakyll = callPackage ../development/libraries/haskell/hakyll {};
|
||||
hakyll = callPackage ../development/libraries/haskell/hakyll {
|
||||
hamlet = self.hamlet_0_8_2_1;
|
||||
};
|
||||
|
||||
hamlet = callPackage ../development/libraries/haskell/hamlet {};
|
||||
hamlet_0_8_2_1 = callPackage ../development/libraries/haskell/hamlet/0.8.2.1.nix {};
|
||||
hamlet_0_10_0 = callPackage ../development/libraries/haskell/hamlet/0.10.0.nix {};
|
||||
hamlet = self.hamlet_0_10_0;
|
||||
|
||||
happstackData = callPackage ../development/libraries/haskell/happstack/happstack-data.nix {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue