about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/science/biology/niftyreg/default.nix
blob: 6379f2c32826a93c6ac8a5f590b63a3413555ec0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, cmake, zlib }:

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";
  };

  nativeBuildInputs = [ cmake ];
  buildInputs = [ zlib ];
  enableParallelBuilding = true;

  meta = with stdenv.lib; {
    homepage = http://cmictig.cs.ucl.ac.uk/wiki/index.php/NiftyReg;
    description = "Medical image registration software";
    maintainers = with maintainers; [ bcdarwin ];
    platforms = [ "x86_64-linux" ];
    license   = licenses.bsd3;
  };
}