about summary refs log tree commit diff
path: root/pkgs/development/perl-modules/MNI
diff options
context:
space:
mode:
authorBen Darwin <bcdarwin@gmail.com>2017-09-26 13:22:46 -0400
committerBen Darwin <bcdarwin@gmail.com>2018-04-09 18:06:54 -0400
commitcf2aac6a045f97a20b79978693547ea83abc076a (patch)
treeae3b719252e2a8a883154900847e465d7e4c7982 /pkgs/development/perl-modules/MNI
parente90d1e8631d62053b9f16343baececda9e92406f (diff)
address license/version issues for PR #29782
Diffstat (limited to 'pkgs/development/perl-modules/MNI')
-rw-r--r--pkgs/development/perl-modules/MNI/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/perl-modules/MNI/default.nix b/pkgs/development/perl-modules/MNI/default.nix
index 806c7703c889b..50a2d71ad2249 100644
--- a/pkgs/development/perl-modules/MNI/default.nix
+++ b/pkgs/development/perl-modules/MNI/default.nix
@@ -1,7 +1,7 @@
 { fetchFromGitHub, buildPerlPackage, stdenv, perl }:
 
 buildPerlPackage rec {
-  name = "MNI-Perllib-0.08";
+  name = "MNI-Perllib-2012-04-13";
 
   src = fetchFromGitHub {
     owner  = "BIC-MNI";
@@ -14,7 +14,8 @@ buildPerlPackage rec {
 
   doCheck = false;  # TODO: almost all tests fail ... is this a real problem?
 
-  meta = {
-    license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+  meta = with stdenv.lib; {
+    license = with licenses; [ artistic1 gpl1Plus ];
+    maintainer = with maintainers; [ bcdarwin ];
   };
 }