mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
15 lines
460 B
Nix
15 lines
460 B
Nix
{ cabal, parsec, shakespeare, text, xmlConduit }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "xml-hamlet";
|
|
version = "0.4.0.4";
|
|
sha256 = "1s4s5z1xir9zmcbfz8mrznf2byclmg0qjjhwmpal2r9ly9g3na98";
|
|
buildDepends = [ parsec shakespeare text xmlConduit ];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/";
|
|
description = "Hamlet-style quasiquoter for XML content";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|