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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
750 B
Nix
Raw Normal View History

2021-12-23 19:15:09 +00:00
{ lib, stdenv, fetchFromGitHub, cmake, swig4, lua, itk }:
stdenv.mkDerivation rec {
pname = "simpleitk";
2022-08-02 03:40:32 +00:00
version = "2.1.1.2";
outputs = [ "out" "dev" ];
src = fetchFromGitHub {
owner = "SimpleITK";
repo = "SimpleITK";
rev = "v${version}";
2022-08-02 03:40:32 +00:00
sha256 = "sha256-sokJXOz6p+0eTeps5Tt24pjB3u+L1s6mDlaWN7K9m3g=";
};
2021-12-23 19:15:09 +00:00
nativeBuildInputs = [ cmake swig4 ];
2020-09-23 18:51:15 +00:00
buildInputs = [ lua itk ];
2020-09-23 18:51:15 +00:00
# 2.0.0: linker error building examples
cmakeFlags = [ "-DBUILD_EXAMPLES=OFF" "-DBUILD_SHARED_LIBS=ON" ];
meta = with lib; {
2020-09-23 18:51:15 +00:00
homepage = "https://www.simpleitk.org";
description = "Simplified interface to ITK";
maintainers = with maintainers; [ bcdarwin ];
platforms = platforms.linux;
license = licenses.asl20;
};
}