python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / perl-modules / MNI / default.nix
blob067a08f5e5a10e7a9cf848317ddd1a5f2a9d81fb
1 { fetchFromGitHub, buildPerlPackage, lib }:
3 buildPerlPackage {
4   pname = "MNI-Perllib";
5   version = "2012-04-13";
7   src = fetchFromGitHub {
8     owner  = "BIC-MNI";
9     repo   = "mni-perllib";
10     rev    = "b908472b4390180ea5d19a121ac5edad6ed88d83";
11     sha256 = "0vk99pwgbard62k63386r7dpnm3h435jdqywr4xqfq7p04dz6kyb";
12   };
14   patches = [ ./no-stdin.patch ];
16   doCheck = false;  # TODO: almost all tests fail ... is this a real problem?
18   meta = {
19     description = "MNI MINC perllib (not used much anymore)";
20     homepage = "https://github.com/BIC-MNI/mni-perllib";
21     license = with lib.licenses; [ artistic1 gpl1Plus ];
22     maintainers = with lib.maintainers; [ bcdarwin ];
23   };