oobicpl: unstable-2016-03-02 -> unstable-2020-08-12
This commit is contained in:
parent
bc7f4759ec
commit
03518371af
|
@ -1,28 +1,36 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, cmake, libminc, bicpl, arguments, pcre-cpp }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, cmake
|
||||||
|
, libminc
|
||||||
|
, bicpl
|
||||||
|
, arguments
|
||||||
|
, pcre-cpp }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "oobicpl";
|
pname = "oobicpl";
|
||||||
version = "unstable-2016-03-02";
|
version = "unstable-2020-08-12";
|
||||||
|
|
||||||
owner = "BIC-MNI";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
inherit owner;
|
owner = "BIC-MNI";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "bc062a65dead2e58461f5afb37abedfa6173f10c";
|
rev = "a9409da8a5bb4925438f32aff577b6333faec28b";
|
||||||
sha256 = "05l4ml9djw17bgdnrldhcxydrzkr2f2scqlyak52ph5azj5n4zsx";
|
sha256 = "0b4chjhr32wbb1sash8cq1jfnr7rzdq84hif8anlrjqd3l0gw357";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
buildInputs = [ libminc bicpl arguments pcre-cpp ];
|
buildInputs = [ libminc bicpl arguments pcre-cpp ];
|
||||||
|
|
||||||
cmakeFlags = [ "-DLIBMINC_DIR=${libminc}/lib/cmake"
|
cmakeFlags = [
|
||||||
"-DBICPL_DIR=${bicpl}/lib"
|
"-DLIBMINC_DIR=${libminc}/lib/cmake"
|
||||||
"-DARGUMENTS_DIR=${arguments}/lib"
|
"-DBICPL_DIR=${bicpl}/lib"
|
||||||
"-DOOBICPL_BUILD_SHARED_LIBS=TRUE" ];
|
"-DARGUMENTS_DIR=${arguments}/lib"
|
||||||
|
"-DOOBICPL_BUILD_SHARED_LIBS=TRUE"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/${owner}/${pname}";
|
homepage = "https://github.com/BIC-MNI/oobicpl";
|
||||||
description = "Brain Imaging Centre object-oriented programming library (and tools)";
|
description = "Brain Imaging Centre object-oriented programming library (and tools)";
|
||||||
maintainers = with maintainers; [ bcdarwin ];
|
maintainers = with maintainers; [ bcdarwin ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
|
Loading…
Reference in New Issue