diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-12-22 15:51:11 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-12-22 15:51:11 +0200 |
commit | 696d949dccf66cbe953eebf329553e4d26ea7f0a (patch) | |
tree | 2548cef7fdb4947b43cdbd6892110b104cd5250e | |
parent | 84df0c4f396bcde7b0d0f5a6bb7455efa4a2f643 (diff) | |
download | guix-696d949dccf66cbe953eebf329553e4d26ea7f0a.tar.gz guix-696d949dccf66cbe953eebf329553e4d26ea7f0a.zip |
Revert "gnu: Add perl-gd."
This reverts commit 7bc9a96c38de5ed14af45fe53bc9acbd25fda190.
This package is a duplicate
-rw-r--r-- | gnu/packages/perl.scm | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index f6b6b11d4e..417a811b88 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -5655,28 +5655,6 @@ defining functions and methods with parameter lists. At minimum this saves you from having to unpack @code{@@_} manually, but this module can do much more.") (license license:perl-license))) -(define-public perl-gd - (package - (name "perl-gd") - (version "2.77") - (source (origin - (method url-fetch) - (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/GD-" - version ".tar.gz")) - (sha256 - (base32 - "1dbg040nkbv8jjgabzjpmay5ysvg3cgxsqmv5771dq1vxyw8hv5m")))) - (build-system perl-build-system) - (native-inputs (list perl-extutils-pkgconfig perl-test-fork)) - (inputs (list gd)) - (home-page "https://metacpan.org/release/GD") - (synopsis "Perl interface to the libgd graphics library") - (description - "@file{GD.pm} is a Perl interface to the gd graphics library. GD allows -you to create color drawings using a large number of graphics primitives, and -emit the drawings as PNG files.") - (license license:perl-license))) - (define-public perl-getopt-argvfile (package (name "perl-getopt-argvfile") |