summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-03-16 06:59:05 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-03-16 21:10:20 +0100
commitbe7253d8465bb4dcefe648a93f09c8ff1f3450a7 (patch)
tree0e61a69bd0eff767220b270d6f71cccb5f658f83 /pkgs/applications/misc
parent1c9d5306fb4686ccaf8db36d18a39641e29071cf (diff)
downloadnixpkgs-be7253d8465bb4dcefe648a93f09c8ff1f3450a7.tar
nixpkgs-be7253d8465bb4dcefe648a93f09c8ff1f3450a7.tar.gz
nixpkgs-be7253d8465bb4dcefe648a93f09c8ff1f3450a7.tar.bz2
nixpkgs-be7253d8465bb4dcefe648a93f09c8ff1f3450a7.tar.lz
nixpkgs-be7253d8465bb4dcefe648a93f09c8ff1f3450a7.tar.xz
nixpkgs-be7253d8465bb4dcefe648a93f09c8ff1f3450a7.tar.zst
nixpkgs-be7253d8465bb4dcefe648a93f09c8ff1f3450a7.zip
cdrtools: stop installing useless man pages
The installed man{3,4} pages are for silly NIH build tools (!), and
conflict with useful packages like `man-pages`. Drop 'em.
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/cdrtools/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/applications/misc/cdrtools/default.nix b/pkgs/applications/misc/cdrtools/default.nix
index b83857b6045..2168a21f7da 100644
--- a/pkgs/applications/misc/cdrtools/default.nix
+++ b/pkgs/applications/misc/cdrtools/default.nix
@@ -12,6 +12,11 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ acl libcap ];
 
+  postPatch = ''
+    sed "/\.mk3/d" -i libschily/Targets.man
+    substituteInPlace man/Makefile --replace "man4" ""
+  '';
+
   configurePhase = "true";
 
   GMAKE_NOWARN = true;