about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/science/biology/oobicpl/default.nix
blob: 7f1112311d6b5a998c971afd02b4e916714ef93f (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ lib
, stdenv
, fetchFromGitHub
, cmake
, libminc
, bicpl
, arguments
, pcre-cpp }:

stdenv.mkDerivation rec {
  pname = "oobicpl";
  version = "unstable-2020-08-12";

  src = fetchFromGitHub {
    owner  = "BIC-MNI";
    repo   = pname;
    rev    = "a9409da8a5bb4925438f32aff577b6333faec28b";
    sha256 = "0b4chjhr32wbb1sash8cq1jfnr7rzdq84hif8anlrjqd3l0gw357";
  };

  nativeBuildInputs = [ cmake ];

  buildInputs = [ libminc bicpl arguments pcre-cpp ];

  cmakeFlags = [
    "-DLIBMINC_DIR=${libminc}/lib/cmake"
    "-DBICPL_DIR=${bicpl}/lib"
    "-DARGUMENTS_DIR=${arguments}/lib"
    "-DOOBICPL_BUILD_SHARED_LIBS=TRUE"
  ];

  meta = with lib; {
    homepage = "https://github.com/BIC-MNI/oobicpl";
    description = "Brain Imaging Centre object-oriented programming library (and tools)";
    maintainers = with maintainers; [ bcdarwin ];
    platforms = platforms.unix;
    license   = licenses.free;
  };
}