summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-05-17 12:33:13 +0200
committerPeter Simons <simons@cryp.to>2014-05-17 12:56:52 +0200
commite2d1b8c60b50c23c8fbddc460481fedd6ae109c5 (patch)
tree43316815b1f558ca50f803127180e16d5227b095 /pkgs/applications
parentedeffd7c4938a354d1c9c57347e23b2e190826c4 (diff)
downloadnixlib-e2d1b8c60b50c23c8fbddc460481fedd6ae109c5.tar
nixlib-e2d1b8c60b50c23c8fbddc460481fedd6ae109c5.tar.gz
nixlib-e2d1b8c60b50c23c8fbddc460481fedd6ae109c5.tar.bz2
nixlib-e2d1b8c60b50c23c8fbddc460481fedd6ae109c5.tar.lz
nixlib-e2d1b8c60b50c23c8fbddc460481fedd6ae109c5.tar.xz
nixlib-e2d1b8c60b50c23c8fbddc460481fedd6ae109c5.tar.zst
nixlib-e2d1b8c60b50c23c8fbddc460481fedd6ae109c5.zip
leksah: remove broken package
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/editors/leksah/default.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/applications/editors/leksah/default.nix b/pkgs/applications/editors/leksah/default.nix
deleted file mode 100644
index 86f0106ed050..000000000000
--- a/pkgs/applications/editors/leksah/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ cabal, binary, binaryShared, Cabal, deepseq, enumerator, filepath
-, gio, glib, gtk, gtksourceview2, hslogger, leksahServer, ltk, mtl
-, network, parsec, QuickCheck, regexBase, regexTdfa, strict, text
-, time, transformers, utf8String
-}:
-
-cabal.mkDerivation (self: {
-  pname = "leksah";
-  version = "0.12.1.3";
-  sha256 = "1w61wnd0nq9iqh0pwn9dz3m4qn3m0zasv0m3ki4k7plcdrmkqb3y";
-  isLibrary = true;
-  isExecutable = true;
-  buildDepends = [
-    binary binaryShared Cabal deepseq enumerator filepath gio glib gtk
-    gtksourceview2 hslogger leksahServer ltk mtl network parsec
-    QuickCheck regexBase regexTdfa strict text time transformers
-    utf8String
-  ];
-  testDepends = [ Cabal QuickCheck ];
-  noHaddock = true;
-  meta = {
-    homepage = "http://www.leksah.org";
-    description = "Haskell IDE written in Haskell";
-    license = "GPL";
-    platforms = self.stdenv.lib.platforms.linux;
-    maintainers = [ self.stdenv.lib.maintainers.andres ];
-  };
-})