0a2b08884c
The previous patch to this file removed the docdev output, but did not actually provide the files that were in the docdev output in out. This patch fixes the issue.
23 lines
635 B
Nix
23 lines
635 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "man-pages-${version}";
|
|
version = "4.07";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/docs/man-pages/${name}.tar.xz";
|
|
sha256 = "1vimj3va16plxmv46rw6nzw4m9l11hb7r1d217y1bjpd5q8nw8qz";
|
|
};
|
|
|
|
makeFlags = [ "MANDIR=$(out)/share/man" ];
|
|
outputDocdev = "out";
|
|
|
|
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 ];
|
|
platforms = with platforms; unix;
|
|
};
|
|
}
|