summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2020-01-23 18:31:23 +0100
committerMichael Weiss <dev.primeos@gmail.com>2020-01-23 21:16:38 +0100
commit983f39cdabc774f299e1ea0d75ee3475a55384cc (patch)
tree43963fa46fb4e066a4e8b6c451267aba00448bc1 /pkgs/tools
parent04bf042e2f57f6e9d452cc3ed05c5c341b00b2ea (diff)
downloadnixpkgs-983f39cdabc774f299e1ea0d75ee3475a55384cc.tar
nixpkgs-983f39cdabc774f299e1ea0d75ee3475a55384cc.tar.gz
nixpkgs-983f39cdabc774f299e1ea0d75ee3475a55384cc.tar.bz2
nixpkgs-983f39cdabc774f299e1ea0d75ee3475a55384cc.tar.lz
nixpkgs-983f39cdabc774f299e1ea0d75ee3475a55384cc.tar.xz
nixpkgs-983f39cdabc774f299e1ea0d75ee3475a55384cc.tar.zst
nixpkgs-983f39cdabc774f299e1ea0d75ee3475a55384cc.zip
unrar: Install all C++ header files into the "dev" output
This is e.g. required for the rar2fs build [0], which needs at least
version.hpp, rar.hpp, dllext.hpp, dll.hpp, and headers5.hpp.

At least Gentoo does this as well [1] but most other distributions only
install dll.hpp or no header files at all.

[0]: https://github.com/NixOS/nixpkgs/pull/78189
[1]: https://gitweb.gentoo.org/repo/gentoo.git/tree/app-arch/unrar/unrar-5.8.5.ebuild
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/archivers/unrar/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/tools/archivers/unrar/default.nix b/pkgs/tools/archivers/unrar/default.nix
index 0fe8f2f5866..62fd02ac56d 100644
--- a/pkgs/tools/archivers/unrar/default.nix
+++ b/pkgs/tools/archivers/unrar/default.nix
@@ -22,6 +22,8 @@ stdenv.mkDerivation rec {
     make lib
   '';
 
+  outputs = [ "out" "dev" ];
+
   installPhase = ''
     install -Dt "$out/bin" unrar
 
@@ -30,7 +32,8 @@ stdenv.mkDerivation rec {
         $out/share/doc/unrar
 
     install -Dm755 libunrar.so $out/lib/libunrar.so
-    install -D dll.hpp $out/include/unrar/dll.hpp
+
+    install -Dt $dev/include/unrar/ *.hpp
   '';
 
   setupHook = ./setup-hook.sh;