Merge pull request #10482 from rycee/package/perl-TextCSVEncoded

perl-TextCSVEncoded: init at 0.24
This commit is contained in:
Arseniy Seroka 2015-10-20 10:24:55 +03:00
commit 7d5b96a6de

View file

@ -11427,6 +11427,20 @@ let self = _self // overrides; _self = with self; {
};
};
TextCSVEncoded = buildPerlPackage rec {
name = "Text-CSV-Encoded-0.24";
src = fetchurl {
url = "mirror://cpan/authors/id/Z/ZA/ZARQUON/${name}.tar.gz";
sha256 = "ce8f307dabdcb623cfc385c175152b0f465096d449b9c828efbe6611efcab0d5";
};
propagatedBuildInputs = [ TextCSV ];
meta = {
description = "Encoding aware Text::CSV";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
maintainers = [ maintainers.rycee ];
};
};
TextCSV_XS = buildPerlPackage {
name = "Text-CSV_XS-1.19.tgz";
src = fetchurl {