mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Merge pull request #35276 from rdanitz/feat/perl/ical-parser
perl-iCal-Parser: init at 1.21
This commit is contained in:
commit
6d3df0ee23
1 changed files with 12 additions and 0 deletions
|
@ -7572,6 +7572,18 @@ let self = _self // overrides; _self = with self; {
|
|||
};
|
||||
};
|
||||
|
||||
iCalParser = buildPerlPackage rec {
|
||||
name = "iCal-Parser-1.21";
|
||||
src = fetchurl {
|
||||
url = "mirror://cpan/authors/id/R/RI/RIXED/${name}.tar.gz";
|
||||
sha256 = "0d7939a644a8e67017ec7239d3d9604f3986bb9a4ff80be68fe7299ebfd2270c";
|
||||
};
|
||||
propagatedBuildInputs = [ DateTimeFormatICal FreezeThaw IOString TextvFileasData ];
|
||||
meta = {
|
||||
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
|
||||
};
|
||||
};
|
||||
|
||||
"if" = null;
|
||||
|
||||
# For backwards compatibility.
|
||||
|
|
Loading…
Reference in a new issue