1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

perl-Config-Grammar: 1.11 -> 1.12

Also expand meta section.
This commit is contained in:
Robert Helgesson 2017-11-11 18:14:11 +01:00
parent 5e98876100
commit f1caf10ec9
No known key found for this signature in database
GPG key ID: C3DB11069E65DC86

View file

@ -2308,15 +2308,16 @@ let self = _self // overrides; _self = with self; {
};
};
ConfigGrammar = buildPerlPackage {
name = "Config-Grammar-1.11";
ConfigGrammar = buildPerlPackage rec {
name = "Config-Grammar-1.12";
src = fetchurl {
url = mirror://cpan/authors/id/D/DS/DSCHWEI/Config-Grammar-1.11.tar.gz;
sha256 = "dd819f89b19c51e9fac6965360cd9db54436e1328968c802416ac34188ca65ee";
url = "mirror://cpan/authors/id/D/DS/DSCHWEI/${name}.tar.gz";
sha256 = "7a52a3657d96e6f1f529caaa09ec3bf7dd6a245b47875382c323902f6d9590b0";
};
meta = {
homepage = https://github.com/schweikert/Config-Grammar;
description = "A grammar-based, user-friendly config parser";
license = "unknown";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};