diff options
author | Wilko Meyer <[email protected]> | 2023-12-18 18:03:05 +0100 |
---|---|---|
committer | Nicolas Goaziou <[email protected]> | 2025-03-09 17:37:00 +0100 |
commit | 26f2d413ee7e39506d88749b8d419d4f9139526c (patch) | |
tree | fa5e8a33c4dbadcee493d867abf34de65244770c /gnu | |
parent | df289cd9ee380672141cf7292838ecc668036aba (diff) |
gnu: Add perl-clipboard.
* gnu/packages/perl.scm (perl-clipboard): New variable.
Change-Id: I659333efbe5faf3ad61a4e747cd4d0621d4bb179
Signed-off-by: Nicolas Goaziou <[email protected]>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/perl.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 15c6b6d302..87166f72b5 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -2012,6 +2012,26 @@ copy nested hash, array, scalar and reference types, including tied variables and objects.") (license (package-license perl)))) +(define-public perl-clipboard + (package + (name "perl-clipboard") + (version "0.28") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/Clipboard-" + version ".tar.gz")) + (sha256 + (base32 "09kdjsq5xvdhqcg61y7rvcxz9zq0904ms3ssq9bk69lla40pk3cy")))) + (build-system perl-build-system) + (native-inputs (list perl-module-build)) + (propagated-inputs (list perl-cgi perl-uri)) + (home-page "https://metacpan.org/release/Clipboard") + (synopsis "Copy and paste with any OS") + (description "@{Clipboard} provides functionality to copy and +paste with any OS.") + (license license:perl-license))) + (define-public perl-common-sense (package (name "perl-common-sense") |