summary refs log tree commit diff
path: root/pkgs/development/compilers/elm/packages/elm-instrument.nix
diff options
context:
space:
mode:
authorMarek Fajkus <marek.faj@gmail.com>2020-03-16 20:10:34 +0100
committerMarek Fajkus <marek.faj@gmail.com>2020-03-16 20:10:34 +0100
commitf387b85540cef7bdbf44ef5a0a32f15d023359eb (patch)
tree60eca92432fac91e5713654ece88c13844f71f24 /pkgs/development/compilers/elm/packages/elm-instrument.nix
parent3355e8d1ca1e6e414d5ef64da02fa5728f873e17 (diff)
downloadnixpkgs-f387b85540cef7bdbf44ef5a0a32f15d023359eb.tar
nixpkgs-f387b85540cef7bdbf44ef5a0a32f15d023359eb.tar.gz
nixpkgs-f387b85540cef7bdbf44ef5a0a32f15d023359eb.tar.bz2
nixpkgs-f387b85540cef7bdbf44ef5a0a32f15d023359eb.tar.lz
nixpkgs-f387b85540cef7bdbf44ef5a0a32f15d023359eb.tar.xz
nixpkgs-f387b85540cef7bdbf44ef5a0a32f15d023359eb.tar.zst
nixpkgs-f387b85540cef7bdbf44ef5a0a32f15d023359eb.zip
elmPackages.elm-instrument: Init at 0.0.7
Diffstat (limited to 'pkgs/development/compilers/elm/packages/elm-instrument.nix')
-rw-r--r--pkgs/development/compilers/elm/packages/elm-instrument.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/development/compilers/elm/packages/elm-instrument.nix b/pkgs/development/compilers/elm/packages/elm-instrument.nix
new file mode 100644
index 00000000000..bd769016227
--- /dev/null
+++ b/pkgs/development/compilers/elm/packages/elm-instrument.nix
@@ -0,0 +1,34 @@
+{ mkDerivation, ansi-terminal, ansi-wl-pprint, base, binary
+, bytestring, Cabal, cmark, containers, directory, elm-format
+, fetchgit, filepath, free, HUnit, indents, json, mtl
+, optparse-applicative, parsec, process, QuickCheck, quickcheck-io
+, split, stdenv, tasty, tasty-golden, tasty-hunit, tasty-quickcheck
+, text, elm
+}:
+mkDerivation {
+  pname = "elm-instrument";
+  version = "0.0.7";
+  src = fetchgit {
+    url = "https://github.com/zwilias/elm-instrument.git";
+    sha256 = "14yfzwsyvgc6rzn19sdmwk2mc1vma9hcljnmjnmlig8mp0271v56";
+    rev = "31b527e405a6afdb25bb87ad7bd14f979e65cff7";
+    fetchSubmodules = true;
+  };
+  isLibrary = true;
+  isExecutable = true;
+  setupHaskellDepends = [ base Cabal directory filepath process ];
+  libraryHaskellDepends = [
+    ansi-terminal ansi-wl-pprint base binary bytestring containers
+    directory filepath free indents json mtl optparse-applicative
+    parsec process split text
+  ];
+  executableHaskellDepends = [ base ];
+  testHaskellDepends = [
+    base cmark containers elm-format HUnit mtl parsec QuickCheck
+    quickcheck-io split tasty tasty-golden tasty-hunit tasty-quickcheck
+    text
+  ];
+  homepage = "http://elm-lang.org";
+  description = "Instrumentation library for Elm";
+  license = stdenv.lib.licenses.bsd3;
+}