linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / science / biology / EBTKS / default.nix
blobb75ac06627fb82726fc1b3e9a82b1ee2b34bdef2
1 { lib, stdenv, fetchFromGitHub, cmake, libminc }:
3 stdenv.mkDerivation rec {
4   pname = "EBTKS";
5   name  = "${pname}-2017-09-23";
7   src = fetchFromGitHub {
8     owner  = "BIC-MNI";
9     repo   = pname;
10     rev    = "67e4e197d8a32d6462c9bdc7af44d64ebde4fb5c";
11     sha256 = "1a1qw6i47fs1izx60l1ysabpmyx9j5sjnbdv8b47wi2xcc9i3hpq";
12   };
14   nativeBuildInputs = [ cmake ];
15   buildInputs = [ libminc ];
17   cmakeFlags = [ "-DLIBMINC_DIR=${libminc}/lib/cmake" ];
19   meta = with lib; {
20     homepage = "https://github.com/BIC-MNI/${pname}";
21     description = "Library for working with MINC files";
22     maintainers = with maintainers; [ bcdarwin ];
23     platforms = platforms.unix;
24     license   = licenses.free;
25   };