Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 fetchFromGitHub, 3 buildPerlPackage, 4 lib, 5}: 6 7buildPerlPackage { 8 pname = "MNI-Perllib"; 9 version = "2012-04-13"; 10 11 src = fetchFromGitHub { 12 owner = "BIC-MNI"; 13 repo = "mni-perllib"; 14 rev = "b908472b4390180ea5d19a121ac5edad6ed88d83"; 15 sha256 = "0vk99pwgbard62k63386r7dpnm3h435jdqywr4xqfq7p04dz6kyb"; 16 }; 17 18 patches = [ ./no-stdin.patch ]; 19 20 doCheck = false; # TODO: almost all tests fail ... is this a real problem? 21 22 meta = { 23 description = "MNI MINC perllib (not used much anymore)"; 24 homepage = "https://github.com/BIC-MNI/mni-perllib"; 25 license = with lib.licenses; [ 26 artistic1 27 gpl1Plus 28 ]; 29 maintainers = with lib.maintainers; [ bcdarwin ]; 30 }; 31}