about summary refs log tree commit diff
path: root/pkgs/development/compilers/elm
diff options
context:
space:
mode:
authorkarsten gebbert <k@ioctl.it>2014-11-03 21:31:32 +0100
committerkarsten gebbert <k@ioctl.it>2014-11-03 21:31:32 +0100
commitf646d1f6ec57671d98ebe7010ba8d1528b730241 (patch)
tree641fb81bb3460b91f0be38be315a6759a6ed47f7 /pkgs/development/compilers/elm
parentcd2cd41c9601279fd211be0103fff84baf380bdd (diff)
downloadnixlib-f646d1f6ec57671d98ebe7010ba8d1528b730241.tar
nixlib-f646d1f6ec57671d98ebe7010ba8d1528b730241.tar.gz
nixlib-f646d1f6ec57671d98ebe7010ba8d1528b730241.tar.bz2
nixlib-f646d1f6ec57671d98ebe7010ba8d1528b730241.tar.lz
nixlib-f646d1f6ec57671d98ebe7010ba8d1528b730241.tar.xz
nixlib-f646d1f6ec57671d98ebe7010ba8d1528b730241.tar.zst
nixlib-f646d1f6ec57671d98ebe7010ba8d1528b730241.zip
add elm-preprepl to package list
Diffstat (limited to 'pkgs/development/compilers/elm')
-rw-r--r--pkgs/development/compilers/elm/elm-repl.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/compilers/elm/elm-repl.nix b/pkgs/development/compilers/elm/elm-repl.nix
new file mode 100644
index 000000000000..ffeea93f9fb4
--- /dev/null
+++ b/pkgs/development/compilers/elm/elm-repl.nix
@@ -0,0 +1,28 @@
+# This file was auto-generated by cabal2nix. Please do NOT edit manually!
+
+{ cabal, bytestringTrie, cmdargs, Elm, filepath, haskeline, HUnit
+, mtl, parsec, QuickCheck, testFramework, testFrameworkHunit
+, testFrameworkQuickcheck2
+}:
+
+cabal.mkDerivation (self: {
+  pname = "elm-repl";
+  version = "0.3";
+  sha256 = "10a4a2ybg5dlshpklnisb957lknb0w8s3ppaq5p5y6ylqik8ak0a";
+  isLibrary = false;
+  isExecutable = true;
+  buildDepends = [
+    bytestringTrie cmdargs Elm filepath haskeline mtl parsec
+  ];
+  testDepends = [
+    bytestringTrie cmdargs Elm filepath haskeline HUnit mtl parsec
+    QuickCheck testFramework testFrameworkHunit
+    testFrameworkQuickcheck2
+  ];
+  meta = {
+    homepage = "https://github.com/elm-lang/elm-repl";
+    description = "a REPL for Elm";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+  };
+})