nixpkgs/pkgs/development/tools/misc/texinfo/4.13a.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

20 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; };
}