nixpkgs/pkgs/development/libraries/simpleitk/default.nix

28 lines
717 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, swig, lua, itk }:
stdenv.mkDerivation rec {
pname = "simpleitk";
2020-12-05 00:12:32 +00:00
version = "2.0.2";
src = fetchFromGitHub {
owner = "SimpleITK";
repo = "SimpleITK";
rev = "v${version}";
2020-12-05 00:12:32 +00:00
sha256 = "1q51jmd6skrr31avxlrxx433lawc838ilzrj5vvv38a9f4gl45v8";
};
2020-09-23 19:51:15 +01:00
nativeBuildInputs = [ cmake swig ];
buildInputs = [ lua itk ];
2020-09-23 19:51:15 +01:00
# 2.0.0: linker error building examples
cmakeFlags = [ "-DBUILD_EXAMPLES=OFF" "-DBUILD_SHARED_LIBS=ON" ];
meta = with lib; {
2020-09-23 19:51:15 +01:00
homepage = "https://www.simpleitk.org";
description = "Simplified interface to ITK";
maintainers = with maintainers; [ bcdarwin ];
platforms = platforms.linux;
license = licenses.asl20;
};
}