Add haste-perch for hplayground

This commit is contained in:
tomberek 2014-08-12 20:45:22 -04:00
parent e3ad8ba4be
commit 0e24703c5b
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,17 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, hasteCompiler, transformers }:
cabal.mkDerivation (self: {
pname = "haste-perch";
version = "0.1.0.3";
sha256 = "1ad7kv47kq0sav49qnqdk76blk44sgjvk1zgn5k2bqvfnr26641j";
buildDepends = [ hasteCompiler transformers ];
meta = {
homepage = "https://github.com/agocorona/haste-perch";
description = "Create, navigate and modify the DOM tree with composable syntax, with the haste compiler";
license = self.stdenv.lib.licenses.gpl3;
platforms = self.ghc.meta.platforms;
maintainers = with self.stdenv.lib.maintainers; [ tomberek ];
};
})

View File

@ -1063,6 +1063,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
hasteCompiler = callPackage ../development/libraries/haskell/haste-compiler {};
hastePerch = callPackage ../development/libraries/haskell/haste-perch {};
HaTeX = callPackage ../development/libraries/haskell/HaTeX {};
hcltest = callPackage ../development/libraries/haskell/hcltest {};