Merge pull request #3555 from tomberek/haskell_hplayground
Haskell hplayground
This commit is contained in:
commit
cdabab5b28
|
@ -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 ];
|
||||||
|
};
|
||||||
|
})
|
|
@ -0,0 +1,21 @@
|
||||||
|
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||||
|
|
||||||
|
{ cabal, dataDefault, hasteCompiler, hastePerch, monadsTf
|
||||||
|
, transformers
|
||||||
|
}:
|
||||||
|
|
||||||
|
cabal.mkDerivation (self: {
|
||||||
|
pname = "hplayground";
|
||||||
|
version = "0.1.0.2";
|
||||||
|
sha256 = "13lzw0fhv305zh2ry0d74y5k7vxppjlwsb8vi3iri5zpkkdpfhij";
|
||||||
|
buildDepends = [
|
||||||
|
dataDefault hasteCompiler hastePerch monadsTf transformers
|
||||||
|
];
|
||||||
|
meta = {
|
||||||
|
homepage = "https://github.com/agocorona/hplayground";
|
||||||
|
description = "a client-side haskell framework that compiles to javascript with the haste compiler";
|
||||||
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
|
platforms = self.ghc.meta.platforms;
|
||||||
|
maintainers = with self.stdenv.lib.maintainers; [ tomberek ];
|
||||||
|
};
|
||||||
|
})
|
|
@ -1066,6 +1066,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
||||||
|
|
||||||
hasteCompiler = callPackage ../development/libraries/haskell/haste-compiler {};
|
hasteCompiler = callPackage ../development/libraries/haskell/haste-compiler {};
|
||||||
|
|
||||||
|
hastePerch = callPackage ../development/libraries/haskell/haste-perch {};
|
||||||
|
|
||||||
HaTeX = callPackage ../development/libraries/haskell/HaTeX {};
|
HaTeX = callPackage ../development/libraries/haskell/HaTeX {};
|
||||||
|
|
||||||
hcltest = callPackage ../development/libraries/haskell/hcltest {};
|
hcltest = callPackage ../development/libraries/haskell/hcltest {};
|
||||||
|
@ -1080,6 +1082,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
||||||
|
|
||||||
hourglass = callPackage ../development/libraries/haskell/hourglass {};
|
hourglass = callPackage ../development/libraries/haskell/hourglass {};
|
||||||
|
|
||||||
|
hplayground = callPackage ../development/libraries/haskell/hplayground {};
|
||||||
|
|
||||||
hseCpp = callPackage ../development/libraries/haskell/hse-cpp {};
|
hseCpp = callPackage ../development/libraries/haskell/hse-cpp {};
|
||||||
|
|
||||||
hsimport = callPackage ../development/libraries/haskell/hsimport {};
|
hsimport = callPackage ../development/libraries/haskell/hsimport {};
|
||||||
|
|
Loading…
Reference in New Issue