summary refs log tree commit diff
path: root/pkgs/development/tools/misc/texinfo/default.nix
blob: b48f4695c2aa30303dcafc700bafdfed96599b24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{stdenv, fetchurl, ncurses}:

assert ncurses != null;

stdenv.mkDerivation {
  name = "texinfo-4.6";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://catamaran.labs.cs.uu.nl/dist/tarballs/texinfo-4.6.tar.gz;
    md5 = "5730c8c0c7484494cca7a7e2d7459c64";
  };
  inherit ncurses;
}