From afd76a8027e9495c9218173c229f815f992b4884 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 20 Apr 2015 04:08:59 +0200 Subject: [PATCH] perl-packages: add Parse::DebControl Easy OO parsing of debian control-like files --- pkgs/top-level/perl-packages.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 62fb56b4b1ec..0c86204cfd23 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -7347,6 +7347,21 @@ let self = _self // overrides; _self = with self; { }; }; + ParseDebControl = buildPerlPackage rec { + name = "Parse-DebControl-2.005"; + src = fetchurl { + url = "mirror://cpan/authors/id/J/JA/JAYBONCI/${name}.tar.gz"; + sha256 = "0ad78qri4sg9agghqdm83xsjgks94yvffs23kppy7mqjy8gwwjxn"; + }; + buildInputs = [ TestPod LWPUserAgent ]; + propagatedBuildInputs = [ IOStringy ]; + meta = with stdenv.lib; { + homepage = http://search.cpan.org/~jaybonci/Parse-DebControl; + license = with licenses; [ artistic1 gpl1Plus ]; + maintainers = with maintainers; [ nckx ]; + }; + }; + ParseRecDescent = buildPerlPackage rec { name = "Parse-RecDescent-1.967009"; src = fetchurl {