3
0
Fork 0
forked from mirrors/nixpkgs

Add haskellPackages.heredoc

Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
Shea Levy 2013-12-28 17:31:52 -05:00
parent 86ecd31111
commit e5898a4f95
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ cabal }:
cabal.mkDerivation (self: {
pname = "heredoc";
version = "0.2.0.0";
sha256 = "0h0g2f7yscwl1ba1yn3jnz2drvd6ns9m910hwlmq3kdq3k39y3f9";
meta = {
homepage = "http://hackage.haskell.org/package/heredoc";
description = "multi-line string / here document using QuasiQuotes";
license = self.stdenv.lib.licenses.publicDomain;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -1211,6 +1211,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
hastache = callPackage ../development/libraries/haskell/hastache {};
heredoc = callPackage ../development/libraries/haskell/heredoc {};
hexpat = callPackage ../development/libraries/haskell/hexpat {};
hseCpp = callPackage ../development/libraries/haskell/hse-cpp {};