nixpkgs/pkgs/development/perl-modules/MNI/default.nix
c0bw3b 69b393ace5 Treewide: update some problematic homepages
These URLs are reported as problematic by Repology.
It could be a permanent redirection
or the page does not exist anymore
2019-12-08 10:21:29 -08:00

24 lines
638 B
Nix

{ fetchFromGitHub, buildPerlPackage, stdenv }:
buildPerlPackage {
pname = "MNI-Perllib";
version = "2012-04-13";
src = fetchFromGitHub {
owner = "BIC-MNI";
repo = "mni-perllib";
rev = "b908472b4390180ea5d19a121ac5edad6ed88d83";
sha256 = "0vk99pwgbard62k63386r7dpnm3h435jdqywr4xqfq7p04dz6kyb";
};
patches = [ ./no-stdin.patch ];
doCheck = false; # TODO: almost all tests fail ... is this a real problem?
meta = with stdenv.lib; {
homepage = "https://github.com/BIC-MNI/mni-perllib";
license = with licenses; [ artistic1 gpl1Plus ];
maintainers = with maintainers; [ bcdarwin ];
};
}