ArrayFIFO: init at 0.10.

This commit is contained in:
Drew Hess 2017-10-16 14:58:56 -07:00
parent 2a036ca1a5
commit 356892f0e2
No known key found for this signature in database
GPG Key ID: DEDAB57E001BD839

View File

@ -391,6 +391,21 @@ let self = _self // overrides; _self = with self; {
buildInputs = [ TestNoWarnings Moo TypeTiny ];
};
ArrayFIFO = buildPerlPackage rec {
name = "Array-FIFO-0.10";
src = fetchurl {
url = "mirror://cpan/authors/id/D/DB/DBURKE/${name}.tar.gz";
sha256 = "8082b7ca456d02c7c862ba409cbd62a9cafdb8c5832f5d7fb1d37ba8698ee5b1";
};
buildInputs = [ TestSpec ];
propagatedBuildInputs = [ Moose namespaceautoclean ];
meta = {
homepage = https://github.com/dwburke/perl-Array-FIFO;
description = "A Simple limitable FIFO array, with sum and average methods";
license = stdenv.lib.licenses.artistic2;
};
};
ListCompare = buildPerlPackage rec {
name = "List-Compare-0.53";
src = fetchurl {