summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/archivers/unrar
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/archivers/unrar
parent04bf042e2f57f6e9d452cc3ed05c5c341b00b2ea (diff)
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/archivers/unrar')
-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 0fe8f2f58665..62fd02ac56d7 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;