summary refs log tree commit diff
path: root/pkgs/top-level/perl-packages.nix
diff options
context:
space:
mode:
authorAaron Andersen <aaron@fosslib.net>2020-08-18 14:35:26 -0400
committerGitHub <noreply@github.com>2020-08-18 14:35:26 -0400
commit945e4a6697c2e52c6e02e8bfcf9cf3ff21c07232 (patch)
treea413abd203906ebb85e139f87c6075cc1118c8a5 /pkgs/top-level/perl-packages.nix
parentc8e727c78339db22941ae53c306dbefd2fc5335b (diff)
parent2698b4b5e3dd38206abc9b046f56e6755982222f (diff)
downloadnixpkgs-945e4a6697c2e52c6e02e8bfcf9cf3ff21c07232.tar
nixpkgs-945e4a6697c2e52c6e02e8bfcf9cf3ff21c07232.tar.gz
nixpkgs-945e4a6697c2e52c6e02e8bfcf9cf3ff21c07232.tar.bz2
nixpkgs-945e4a6697c2e52c6e02e8bfcf9cf3ff21c07232.tar.lz
nixpkgs-945e4a6697c2e52c6e02e8bfcf9cf3ff21c07232.tar.xz
nixpkgs-945e4a6697c2e52c6e02e8bfcf9cf3ff21c07232.tar.zst
nixpkgs-945e4a6697c2e52c6e02e8bfcf9cf3ff21c07232.zip
Merge pull request #92605 from aanderse/perl-packages/dotenv
perlPackages.Dotenv: init at 0.002
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 c9ff92d0d5e..d623610ad71 100644
--- a/pkgs/top-level/perl-packages.nix
+++ b/pkgs/top-level/perl-packages.nix
@@ -6463,6 +6463,21 @@ let
      };
   };
 
+  Dotenv = buildPerlPackage {
+    pname = "Dotenv";
+    version = "0.002";
+    src = fetchurl {
+      url = "mirror://cpan/authors/id/B/BO/BOOK/Dotenv-0.002.tar.gz";
+      sha256 = "04c7a7cc4511617d7a70c4ca410d10707dc496248cdad20240ae242223212454";
+    };
+    buildInputs = [ TestCPANMeta TestPod TestPodCoverage ];
+    propagatedBuildInputs = [ PathTiny PodParser ];
+    meta = {
+      description = "Support for C<dotenv> in Perl";
+      license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+    };
+  };
+
   Dumbbench = buildPerlPackage {
     pname = "Dumbbench";
     version = "0.111";