summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/Shellac/Shellac-haskeline.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/haskell/Shellac/Shellac-haskeline.nix')
-rw-r--r--pkgs/development/libraries/haskell/Shellac/Shellac-haskeline.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/pkgs/development/libraries/haskell/Shellac/Shellac-haskeline.nix b/pkgs/development/libraries/haskell/Shellac/Shellac-haskeline.nix
deleted file mode 100644
index 9f75a09ee690..000000000000
--- a/pkgs/development/libraries/haskell/Shellac/Shellac-haskeline.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ cabal, haskeline, mtl, Shellac }:
-
-cabal.mkDerivation (self: {
-  pname = "Shellac-haskeline";
-  version = "0.2.0.1";
-  sha256 = "1xvs2ni83yyf7rx3ikmn2bkx20fyj03d03crqyyfw28mikhgv5br";
-  buildDepends = [ haskeline mtl Shellac ];
-  patchPhase = ''
-    sed -i -e 's|mtl>=1.1 && < 2.1|mtl|' Shellac-haskeline.cabal
-  '';
-  meta = {
-    description = "Haskeline backend module for Shellac";
-    license = self.stdenv.lib.licenses.bsd3;
-    platforms = self.ghc.meta.platforms;
-    maintainers = [ self.stdenv.lib.maintainers.andres ];
-  };
-})