From 939999e9871a1b4588dfaf4c6918fb7ecd184de5 Mon Sep 17 00:00:00 2001 From: "Zak B. Elep" Date: Sat, 13 Aug 2022 15:34:54 +0800 Subject: [PATCH] perlPackages.ObjectPad: init at 0.68 --- pkgs/top-level/perl-packages.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 5bc1299ee5c4..272cbeb38e66 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -17313,6 +17313,23 @@ let }; }; + ObjectPad = buildPerlModule { + pname = "Object-Pad"; + version = "0.68"; + src = fetchurl { + url = "mirror://cpan/authors/id/P/PE/PEVANS/Object-Pad-0.68.tar.gz"; + sha256 = "sha256-xN5jBIQxMJZNrskozF99HphTnu/X7azHvn4Yg0XhnXE="; + }; + buildInputs = [ TestFatal TestRefcount ]; + perlPreHook = lib.optionalString stdenv.isDarwin "export LD=$CC"; + propagatedBuildInputs = [ XSParseKeyword XSParseSublike ]; + meta = { + description = "simple syntax for lexical field-based objects"; + license = with lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.zakame ]; + }; + }; + ObjectSignature = buildPerlPackage { pname = "Object-Signature"; version = "1.08";