about summary refs log tree commit diff
path: root/pkgs/development/tools/haskell/ghcid/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/haskell/ghcid/default.nix')
-rw-r--r--pkgs/development/tools/haskell/ghcid/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/tools/haskell/ghcid/default.nix b/pkgs/development/tools/haskell/ghcid/default.nix
new file mode 100644
index 000000000000..a14eb1b48f58
--- /dev/null
+++ b/pkgs/development/tools/haskell/ghcid/default.nix
@@ -0,0 +1,20 @@
+# This file was auto-generated by cabal2nix. Please do NOT edit manually!
+
+{ cabal, cmdargs, filepath, tasty, tastyHunit, time }:
+
+cabal.mkDerivation (self: {
+  pname = "ghcid";
+  version = "0.2";
+  sha256 = "1g0jwj8s0rgwrdgyn6dwrqhf9v4kck5kfr4ggmp9c0mjjyfxq6pf";
+  isLibrary = true;
+  isExecutable = true;
+  buildDepends = [ cmdargs filepath time ];
+  testDepends = [ cmdargs filepath tasty tastyHunit time ];
+  doCheck = false;
+  meta = {
+    homepage = "https://github.com/ndmitchell/ghcid#readme";
+    description = "GHCi based bare bones IDE";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+  };
+})