diff options
author | Eric Bavier <bavier@member.fsf.org> | 2015-03-05 17:02:31 -0600 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2015-03-06 08:13:29 -0600 |
commit | 7bda142b559ec8a276b5b7124011bff09a5c3c6c (patch) | |
tree | c0b30d0b3d8bee3ac1ddcf563f088dda3fdac828 /gnu | |
parent | c8d68ff9c3763abd24473dd2d414e581ef5ca059 (diff) | |
download | guix-7bda142b559ec8a276b5b7124011bff09a5c3c6c.tar.gz |
gnu: Add Devel-CheckBin.
* gnu/packages/perl.scm (perl-devel-checkbin): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/perl.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 8a99ab7713..a4aa11c0d4 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -417,6 +417,25 @@ variants") (description "Devel::Caller provides meatier version of caller.") (license (package-license perl)))) +(define-public perl-devel-checkbin + (package + (name "perl-devel-checkbin") + (version "0.02") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/" + "Devel-CheckBin-" version ".tar.gz")) + (sha256 + (base32 + "0g71sma9jy0fjm619hcrcsb9spg2y03vjxx36y8k1xpa2553sr7m")))) + (build-system perl-build-system) + (home-page "http://search.cpan.org/dist/Devel-CheckBin") + (synopsis "Check that a command is available") + (description "Devel::CheckBin is a perl module that checks whether a +particular command is available.") + (license (package-license perl)))) + (define-public perl-devel-globaldestruction (package (name "perl-devel-globaldestruction") |