summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-11-21 12:23:29 +0100
committerPeter Simons <simons@cryp.to>2012-11-21 12:30:53 +0100
commit4ea0f76ffc0744af17dc227d62c787e9b6f14b04 (patch)
treed4e21a45fbbb9884ebbc711196315642507b7ba7
parentafc41f22783ffe58b7c138bc0e152051bf008a0a (diff)
downloadnixlib-4ea0f76ffc0744af17dc227d62c787e9b6f14b04.tar
nixlib-4ea0f76ffc0744af17dc227d62c787e9b6f14b04.tar.gz
nixlib-4ea0f76ffc0744af17dc227d62c787e9b6f14b04.tar.bz2
nixlib-4ea0f76ffc0744af17dc227d62c787e9b6f14b04.tar.lz
nixlib-4ea0f76ffc0744af17dc227d62c787e9b6f14b04.tar.xz
nixlib-4ea0f76ffc0744af17dc227d62c787e9b6f14b04.tar.zst
nixlib-4ea0f76ffc0744af17dc227d62c787e9b6f14b04.zip
haskell-xml-hamlet: add version 0.4.0.3
-rw-r--r--pkgs/development/libraries/haskell/xml-hamlet/default.nix14
-rw-r--r--pkgs/top-level/haskell-packages.nix2
2 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/xml-hamlet/default.nix b/pkgs/development/libraries/haskell/xml-hamlet/default.nix
new file mode 100644
index 000000000000..41a5c710d6af
--- /dev/null
+++ b/pkgs/development/libraries/haskell/xml-hamlet/default.nix
@@ -0,0 +1,14 @@
+{ cabal, parsec, shakespeare, text, xmlConduit }:
+
+cabal.mkDerivation (self: {
+  pname = "xml-hamlet";
+  version = "0.4.0.3";
+  sha256 = "1923c2jg162jab01mcbpy52xs1pzxkrgny6sq8v0p758n8hjazwc";
+  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;
+  };
+})
diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix
index 6d0050222d53..4cf1a1ebfa60 100644
--- a/pkgs/top-level/haskell-packages.nix
+++ b/pkgs/top-level/haskell-packages.nix
@@ -1777,6 +1777,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
 
   xmlConduit = callPackage ../development/libraries/haskell/xml-conduit {};
 
+  xmlHamlet = callPackage ../development/libraries/haskell/xml-hamlet {};
+
   xmlhtml = callPackage ../development/libraries/haskell/xmlhtml {};
 
   xmlTypes = callPackage ../development/libraries/haskell/xml-types {};