summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/happstack/happstack-data.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/haskell/happstack/happstack-data.nix')
-rw-r--r--pkgs/development/libraries/haskell/happstack/happstack-data.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/development/libraries/haskell/happstack/happstack-data.nix b/pkgs/development/libraries/haskell/happstack/happstack-data.nix
deleted file mode 100644
index aa540e98bd5..00000000000
--- a/pkgs/development/libraries/haskell/happstack/happstack-data.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ cabal, binary, mtl, syb, sybWithClass, sybWithClassInstancesText
-, text, time
-}:
-
-cabal.mkDerivation (self: {
-  pname = "happstack-data";
-  version = "6.0.1";
-  sha256 = "0v2ln4mdnild72p02mzjn8mn5srvjixsjqjgkdqzshvxjnnm95l8";
-  isLibrary = true;
-  isExecutable = true;
-  buildDepends = [
-    binary mtl syb sybWithClass sybWithClassInstancesText text time
-  ];
-  patchPhase = ''
-    sed -i -e 's|mtl >= 1.1 && < 2.1|mtl|' happstack-data.cabal
-  '';
-  meta = {
-    homepage = "http://happstack.com";
-    description = "Happstack data manipulation libraries";
-    license = self.stdenv.lib.licenses.bsd3;
-    platforms = self.ghc.meta.platforms;
-    maintainers = [ self.stdenv.lib.maintainers.andres ];
-  };
-})