mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
i3lock: it's cleaner to use $out/share/man in the first place.
it is true that $out/man is automatically moved to $out/share/man, but using "share" folder is cleaner solutions suggested by @edolstra here #6014
This commit is contained in:
parent
a15edc22e3
commit
21db3eaa60
@ -15,8 +15,8 @@ stdenv.mkDerivation rec {
|
||||
makeFlags = "all";
|
||||
installFlags = "PREFIX=\${out} SYSCONFDIR=\${out}/etc";
|
||||
postInstall = ''
|
||||
mkdir -p $out/man/man1
|
||||
cp *.1 $out/man/man1
|
||||
mkdir -p $out/share/man/man1
|
||||
cp *.1 $out/share/man/man1
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
Loading…
Reference in New Issue
Block a user