From 9450e16ad12586885b2ac3836c83d384aebac426 Mon Sep 17 00:00:00 2001 From: Emily Trau <13267947+emilytrau@users.noreply.github.com> Date: Sat, 2 Dec 2023 13:59:49 +1100 Subject: [PATCH] Revert "patchutils: add man pages" --- pkgs/tools/text/patchutils/generic.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkgs/tools/text/patchutils/generic.nix b/pkgs/tools/text/patchutils/generic.nix index aaf656abe408..d1cd4334e119 100644 --- a/pkgs/tools/text/patchutils/generic.nix +++ b/pkgs/tools/text/patchutils/generic.nix @@ -11,8 +11,6 @@ stdenv.mkDerivation rec { inherit sha256; }; - outputs = [ "man" "out" ]; - nativeBuildInputs = [ makeWrapper ]; buildInputs = [ perl ] ++ extraBuildInputs; hardeningDisable = [ "format" ]; @@ -25,9 +23,6 @@ stdenv.mkDerivation rec { wrapProgram "$bin" \ --prefix PATH : "$out/bin" done - - mkdir -p $man/share/man/man1 - cp doc/*.1 $man/share/man/man1 ''; doCheck = lib.versionAtLeast version "0.3.4";