keepass: pbpaste and pbcopy do not need to be replaced. Those are command builtin to MacOS

-18
-18
pkgs/applications/misc/keepass/fix-paths.patch
··· 56 56 index ab49ee2..7f6c50f 100644 57 57 --- a/KeePass/Util/ClipboardUtil.Unix.cs 58 58 +++ b/KeePass/Util/ClipboardUtil.Unix.cs 59 - @@ -42,7 +42,7 @@ namespace KeePass.Util 60 - // string strGtk = GtkGetString(); 61 - // if(strGtk != null) return strGtk; 62 - 63 - - return (NativeLib.RunConsoleApp("pbpaste", "-pboard general") ?? 64 - + return (NativeLib.RunConsoleApp("@pbpaste@", "-pboard general") ?? 65 - string.Empty); 66 - } 67 - 68 - @@ -50,7 +50,7 @@ namespace KeePass.Util 69 - { 70 - // if(GtkSetString(str)) return; 71 - 72 - - NativeLib.RunConsoleApp("pbcopy", "-pboard general", str); 73 - + NativeLib.RunConsoleApp("@pbcopy@", "-pboard general", str); 74 - } 75 - 76 - private static string GetStringU() 77 59 @@ -62,7 +62,7 @@ namespace KeePass.Util 78 60 // "-out -selection clipboard"); 79 61 // if(str != null) return str;