nixpkgs/pkgs/applications/science/biology/niftyreg/default.nix

25 lines
683 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, cmake, zlib }:
2018-11-15 22:20:24 +00:00
stdenv.mkDerivation rec {
pname = "niftyreg";
version = "1.3.9";
src = fetchurl {
url = "mirror://sourceforge/${pname}/nifty_reg-${version}/nifty_reg-${version}.tar.gz";
sha256 = "07v9v9s41lvw72wpb1jgh2nzanyc994779bd35p76vg8mzifmprl";
};
2019-11-03 12:36:25 +00:00
NIX_CFLAGS_COMPILE = [ "-Wno-error=narrowing" ];
2018-11-15 22:20:24 +00:00
nativeBuildInputs = [ cmake ];
buildInputs = [ zlib ];
meta = with lib; {
homepage = "http://cmictig.cs.ucl.ac.uk/wiki/index.php/NiftyReg";
2018-11-15 22:20:24 +00:00
description = "Medical image registration software";
maintainers = with maintainers; [ bcdarwin ];
platforms = [ "x86_64-linux" ];
license = licenses.bsd3;
};
}