summary refs log tree commit diff
path: root/nixos/modules/config/system-path.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2015-10-30 13:51:07 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2015-10-30 15:20:15 +0100
commit3e732f65cbb10746d8fd84f54c750045a7ef8bbe (patch)
tree297ade4111d47f4eb53f686e9a2a74fc16213d7a /nixos/modules/config/system-path.nix
parentdd3d3110a7ff89ad839db31fbb6a8c0459acee6b (diff)
downloadnixlib-3e732f65cbb10746d8fd84f54c750045a7ef8bbe.tar
nixlib-3e732f65cbb10746d8fd84f54c750045a7ef8bbe.tar.gz
nixlib-3e732f65cbb10746d8fd84f54c750045a7ef8bbe.tar.bz2
nixlib-3e732f65cbb10746d8fd84f54c750045a7ef8bbe.tar.lz
nixlib-3e732f65cbb10746d8fd84f54c750045a7ef8bbe.tar.xz
nixlib-3e732f65cbb10746d8fd84f54c750045a7ef8bbe.tar.zst
nixlib-3e732f65cbb10746d8fd84f54c750045a7ef8bbe.zip
Remove gnutar man page hack
It's no longer needed since the gnutar package contains a (much more
extensive) man page.
Diffstat (limited to 'nixos/modules/config/system-path.nix')
-rw-r--r--nixos/modules/config/system-path.nix7
1 files changed, 0 insertions, 7 deletions
diff --git a/nixos/modules/config/system-path.nix b/nixos/modules/config/system-path.nix
index 748ada99be69..c6c20903a2cf 100644
--- a/nixos/modules/config/system-path.nix
+++ b/nixos/modules/config/system-path.nix
@@ -7,12 +7,6 @@ with lib;
 
 let
 
-  extraManpages = pkgs.runCommand "extra-manpages" { buildInputs = [ pkgs.help2man ]; }
-    ''
-      mkdir -p $out/share/man/man1
-      help2man ${pkgs.gnutar}/bin/tar > $out/share/man/man1/tar.1
-    '';
-
   requiredPackages =
     [ config.nix.package
       pkgs.acl
@@ -47,7 +41,6 @@ let
       pkgs.time
       pkgs.texinfoInteractive
       pkgs.utillinux
-      extraManpages
     ];
 
 in