mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
16 lines
542 B
Nix
16 lines
542 B
Nix
{ cabal, hspec, HUnit, parsec, shakespeare, text, xmlConduit }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "xml-hamlet";
|
|
version = "0.4.0.8";
|
|
sha256 = "10hc4a6lqifiinm9rf1ziw35bjnjgkd5mhagg9anvz35hhr7bbrr";
|
|
buildDepends = [ parsec shakespeare text xmlConduit ];
|
|
testDepends = [ hspec HUnit 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;
|
|
};
|
|
})
|