summary refs log tree commit diff
path: root/pkgs/tools/typesetting/lhs2tex/default.nix
blob: 2b96ae526c40bf87796d277f1642cf84002c7ab6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{cabal, texLive, regexCompat}:

cabal.mkDerivation (self: {
  pname = "lhs2tex";
  version = "1.18.1";
  name = self.fname;
  sha256 = "0j4n7vkabsggn94gbwixy1vmckdck2nggdiqvk6n9nx164if5jnw";
  extraBuildInputs = [regexCompat 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 = "GPL";
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})