9fb8020e4e
This will probably be mandatory soon, and is a step in the right direction. Removes the deprecated meta.version, and move some meta sections to the end of the file where I should have put them in the first place.
21 lines
573 B
Nix
21 lines
573 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "man-pages-${version}";
|
|
version = "4.04";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/docs/man-pages/${name}.tar.xz";
|
|
sha256 = "0v8zxq4scfixy3pjpw9ankvv5v8frv62khv4xm1jpkswyq6rbqcg";
|
|
};
|
|
|
|
makeFlags = [ "MANDIR=$(out)/share/man" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Linux development manual pages";
|
|
homepage = http://www.kernel.org/doc/man-pages/;
|
|
repositories.git = http://git.kernel.org/pub/scm/docs/man-pages/man-pages;
|
|
maintainers = with maintainers; [ nckx ];
|
|
};
|
|
}
|