mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
d531a1e967
Also add me as a maintainer.
20 lines
469 B
Nix
20 lines
469 B
Nix
{ stdenv, fetchurl, texinfo, ncurses, lzma }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "texinfo-${version}";
|
|
version = "4.13a";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/texinfo/${name}.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; };
|
|
}
|