pass: add patch to fix xclipboard handling

This is caused by our coreutils now being built as a single binary.
This commit is contained in:
Franz Pletz
2016-09-03 06:07:15 +02:00
parent 1ed1ed210a
commit 493ab7b4fa
2 changed files with 36 additions and 2 deletions
+3 -2
View File
@@ -20,8 +20,9 @@ stdenv.mkDerivation rec {
};
patches =
[ ./program-name.patch ] ++
stdenv.lib.optional stdenv.isDarwin ./no-darwin-getopt.patch;
[ ./program-name.patch
./set-correct-program-name-for-sleep.patch
] ++ stdenv.lib.optional stdenv.isDarwin ./no-darwin-getopt.patch;
buildInputs = [ makeWrapper ];