forked from mirrors/nixpkgs
54eef65533
I don't think we need the license file in each of these, so I only left it with the library (it isn't big).
14 lines
208 B
Nix
14 lines
208 B
Nix
{stdenv, libcap}:
|
|
|
|
assert stdenv.isLinux;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libcap-docs-${libcap.version}";
|
|
|
|
inherit (libcap) src;
|
|
|
|
makeFlags = "MANDIR=$(out)/share/man";
|
|
|
|
preConfigure = "cd doc";
|
|
}
|