depot/third_party/nixpkgs/pkgs/development/tools/misc/texinfo/4.13a.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

19 lines
471 B
Nix

{ stdenv, fetchurl, texinfo, ncurses, lzma }:
stdenv.mkDerivation rec {
pname = "texinfo";
version = "4.13a";
src = fetchurl {
url = "mirror://gnu/texinfo/${pname}-${version}.tar.lzma";
sha256 = "1rf9ckpqwixj65bw469i634897xwlgkm5i9g2hv3avl6mv7b0a3d";
};
buildInputs = [ ncurses ];
nativeBuildInputs = [ lzma ];
# Disabled because we don't have zdiff in the stdenv bootstrap.
#doCheck = true;
meta = texinfo.meta // { branch = version; };
}