about summary refs log tree commit diff
path: root/pkgs/tools/typesetting/lhs2tex/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/typesetting/lhs2tex/default.nix')
-rw-r--r--pkgs/tools/typesetting/lhs2tex/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/tools/typesetting/lhs2tex/default.nix b/pkgs/tools/typesetting/lhs2tex/default.nix
deleted file mode 100644
index 35e609b440ab..000000000000
--- a/pkgs/tools/typesetting/lhs2tex/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-# This file was auto-generated by cabal2nix. Please do NOT edit manually!
-
-{ cabal, filepath, mtl, regexCompat, texLive }:
-
-cabal.mkDerivation (self: {
-  pname = "lhs2tex";
-  version = "1.18.1";
-  sha256 = "0j4n7vkabsggn94gbwixy1vmckdck2nggdiqvk6n9nx164if5jnw";
-  isLibrary = false;
-  isExecutable = true;
-  buildDepends = [ filepath mtl regexCompat ];
-  extraLibraries = [ texLive ];
-  postInstall = ''
-    mkdir -p "$out/share/doc/$name"
-    cp doc/Guide2.pdf $out/share/doc/$name
-    mkdir -p "$out/nix-support"
-  '';
-  meta = {
-    homepage = "http://www.andres-loeh.de/lhs2tex/";
-    description = "Preprocessor for typesetting Haskell sources with LaTeX";
-    license = self.stdenv.lib.licenses.gpl2;
-    platforms = self.ghc.meta.platforms;
-    hydraPlatforms = self.stdenv.lib.platforms.linux;
-    maintainers = [ self.stdenv.lib.maintainers.andres ];
-  };
-})