summary refs log tree commit diff
path: root/pkgs/top-level/perl-packages.nix
diff options
context:
space:
mode:
authorDrew Hess <src@drewhess.com>2017-10-16 14:58:56 -0700
committerDrew Hess <src@drewhess.com>2017-10-16 14:58:56 -0700
commit356892f0e2c615848817ffa0151ad748e3e0b195 (patch)
tree27b3b38847311128b5ed6023a032a8d047afc43c /pkgs/top-level/perl-packages.nix
parent2a036ca1a5eafdaed11be14d14a91c3b24508379 (diff)
downloadnixpkgs-356892f0e2c615848817ffa0151ad748e3e0b195.tar
nixpkgs-356892f0e2c615848817ffa0151ad748e3e0b195.tar.gz
nixpkgs-356892f0e2c615848817ffa0151ad748e3e0b195.tar.bz2
nixpkgs-356892f0e2c615848817ffa0151ad748e3e0b195.tar.lz
nixpkgs-356892f0e2c615848817ffa0151ad748e3e0b195.tar.xz
nixpkgs-356892f0e2c615848817ffa0151ad748e3e0b195.tar.zst
nixpkgs-356892f0e2c615848817ffa0151ad748e3e0b195.zip
ArrayFIFO: init at 0.10.
Diffstat (limited to 'pkgs/top-level/perl-packages.nix')
-rw-r--r--pkgs/top-level/perl-packages.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix
index 2ad39ccd280..9dfd5a06883 100644
--- a/pkgs/top-level/perl-packages.nix
+++ b/pkgs/top-level/perl-packages.nix
@@ -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 {