summary refs log tree commit diff
path: root/pkgs/top-level/perl-packages.nix
diff options
context:
space:
mode:
authorRobert Helgesson <robert@rycee.net>2017-11-01 14:51:23 +0100
committerRobert Helgesson <robert@rycee.net>2017-11-01 15:35:51 +0100
commit2d145b03ee54e584e1ce78df45ae5387058b773f (patch)
tree5b488aaaf76f35ff898d74404fcc42eb74dcc316 /pkgs/top-level/perl-packages.nix
parent406653f8e77041b4e65f3011c778cf452b49d6fb (diff)
downloadnixpkgs-2d145b03ee54e584e1ce78df45ae5387058b773f.tar
nixpkgs-2d145b03ee54e584e1ce78df45ae5387058b773f.tar.gz
nixpkgs-2d145b03ee54e584e1ce78df45ae5387058b773f.tar.bz2
nixpkgs-2d145b03ee54e584e1ce78df45ae5387058b773f.tar.lz
nixpkgs-2d145b03ee54e584e1ce78df45ae5387058b773f.tar.xz
nixpkgs-2d145b03ee54e584e1ce78df45ae5387058b773f.tar.zst
nixpkgs-2d145b03ee54e584e1ce78df45ae5387058b773f.zip
perl-Inline: 0.64 -> 0.80
Diffstat (limited to 'pkgs/top-level/perl-packages.nix')
-rw-r--r--pkgs/top-level/perl-packages.nix18
1 files changed, 6 insertions, 12 deletions
diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix
index 514a86428e6..b705860be92 100644
--- a/pkgs/top-level/perl-packages.nix
+++ b/pkgs/top-level/perl-packages.nix
@@ -7402,29 +7402,23 @@ let self = _self // overrides; _self = with self; {
   };
 
   Inline = buildPerlPackage rec {
-    name = "Inline-0.64";
-
+    name = "Inline-0.80";
     src = fetchurl {
-      url = "mirror://cpan/authors/id/E/ET/ETJ/${name}.tar.gz";
-      sha256 = "17n3gbc9jigpfwqfhgmxpvbgr9rkdrij8jayxqpzw611ixcxrplw";
+      url = "mirror://cpan/authors/id/I/IN/INGY/${name}.tar.gz";
+      sha256 = "7e2bd984b1ebd43e336b937896463f2c6cb682c956cbd2c311a464363d2ccef6";
     };
-
     buildInputs = [ TestWarn ];
     propagatedBuildInputs = [ ParseRecDescent ];
-
     meta = {
-      description = "Inline -- Write Perl subroutines in other programming languages";
-
+      homepage = https://github.com/ingydotnet/inline-pm;
+      description = "Write Perl Subroutines in Other Programming Languages";
       longDescription = ''
         The Inline module allows you to put source code from other
         programming languages directly "inline" in a Perl script or
         module. The code is automatically compiled as needed, and then loaded
         for immediate access from Perl.
       '';
-
-      license = stdenv.lib.licenses.artistic2;
-
-      maintainers = [ ];
+      license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
     };
   };