mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 15:41:40 +00:00
Merge pull request #6014 from malyn/fix-i3lock-man
i3lock: Make sure that man pages get installed
This commit is contained in:
commit
136eea2c16
|
@ -14,13 +14,17 @@ stdenv.mkDerivation rec {
|
|||
|
||||
makeFlags = "all";
|
||||
installFlags = "PREFIX=\${out} SYSCONFDIR=\${out}/etc";
|
||||
postInstall = ''
|
||||
mkdir -p $out/man/man1
|
||||
cp *.1 $out/man/man1
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "i3 is a tiling window manager";
|
||||
homepage = http://i3wm.org;
|
||||
maintainers = [ stdenv.lib.maintainers.garbas ];
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
meta = with stdenv.lib; {
|
||||
description = "i3lock is a simple screen locker like slock";
|
||||
homepage = http://i3wm.org/i3lock/;
|
||||
maintainers = with maintainers; [ garbas malyn ];
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue