about summary refs log tree commit diff
path: root/pkgs/tools/X11
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2017-03-18 12:41:00 +0100
committerMichael Raskin <7c6f434c@mail.ru>2017-03-18 12:41:09 +0100
commiteeef599ced87b63c82191e2b51515c58a5e540b7 (patch)
tree8e1be2f69723d3fdb2cbee609f54cb85f8e7d494 /pkgs/tools/X11
parent5833da6ad5aaecf5c8214768775e7f7ff07bfefa (diff)
downloadnixlib-eeef599ced87b63c82191e2b51515c58a5e540b7.tar
nixlib-eeef599ced87b63c82191e2b51515c58a5e540b7.tar.gz
nixlib-eeef599ced87b63c82191e2b51515c58a5e540b7.tar.bz2
nixlib-eeef599ced87b63c82191e2b51515c58a5e540b7.tar.lz
nixlib-eeef599ced87b63c82191e2b51515c58a5e540b7.tar.xz
nixlib-eeef599ced87b63c82191e2b51515c58a5e540b7.tar.zst
nixlib-eeef599ced87b63c82191e2b51515c58a5e540b7.zip
wayv: install docs
Diffstat (limited to 'pkgs/tools/X11')
-rw-r--r--pkgs/tools/X11/wayv/default.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/tools/X11/wayv/default.nix b/pkgs/tools/X11/wayv/default.nix
index 2b5b2975a955..bb4435d56e7e 100644
--- a/pkgs/tools/X11/wayv/default.nix
+++ b/pkgs/tools/X11/wayv/default.nix
@@ -13,6 +13,15 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ libX11 ];
 
+  postInstall = ''
+    make -C doc install
+    mkdir -p "$out"/share/doc/wayv
+    cp [A-Z][A-Z]* "$out"/share/doc/wayv
+    cp doc/[A-Z][A-Z]* "$out"/share/doc/wayv
+    cp doc/*.txt "$out"/share/doc/wayv
+    cp doc/*.jpg "$out"/share/doc/wayv
+  '';
+
   meta = {
     inherit version;
     description = "A gesture control for X11";