Merge pull request #12886 from pstn/master

Allow kpcli to work with xclip
This commit is contained in:
Frederik Rietdijk 2016-02-19 17:14:50 +01:00
commit d3482be0e5
2 changed files with 14 additions and 1 deletions

View File

@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
wrapProgram $out/bin/kpcli --set PERL5LIB \
"${with perlPackages; stdenv.lib.makePerlPath [
Clone CryptRijndael SortNaturally TermReadKey TermShellUI FileKeePass TermReadLineGnu XMLParser
CaptureTiny Clipboard Clone CryptRijndael SortNaturally TermReadKey TermShellUI FileKeePass TermReadLineGnu XMLParser
]}"
'';

View File

@ -1898,6 +1898,19 @@ let self = _self // overrides; _self = with self; {
};
};
Clipboard = buildPerlPackage {
name = "Clipboard-0.13";
src = fetchurl {
url = mirror://cpan/authors/id/K/KI/KING/Clipboard-0.13.tar.gz;
sha256 = "eebf1c9cb2484be850abdae017147967cf47f8ccd99293771517674b0046ec8a";
};
meta = {
description = "Clipboard - Copy and Paste with any OS";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
Clone = buildPerlPackage rec {
name = "Clone-0.38";
src = fetchurl {