core/pkgs/by-name/te/texinfo/4.13a.nix

28 lines
484 B
Nix
Raw Normal View History

2024-06-30 08:16:52 +00:00
{
stdenv,
fetchurl,
texinfo,
ncurses,
xz,
}:
2024-05-02 00:46:19 +00:00
stdenv.mkDerivation rec {
pname = "texinfo";
version = "4.13a";
src = fetchurl {
url = "mirror://gnu/texinfo/${pname}-${version}.tar.lzma";
sha256 = "1rf9ckpqwixj65bw469i634897xwlgkm5i9g2hv3avl6mv7b0a3d";
};
buildInputs = [ ncurses ];
nativeBuildInputs = [ xz ];
# Disabled because we don't have zdiff in the stdenv bootstrap.
#doCheck = true;
2024-06-30 08:16:52 +00:00
meta = texinfo.meta // {
branch = version;
};
2024-05-02 00:46:19 +00:00
}