oobicpl: init at 2016-03-02
This commit is contained in:
parent
6972e366be
commit
c1488921a0
@ -0,0 +1,31 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, cmake, libminc, bicpl, arguments, pcre-cpp }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "oobicpl";
|
||||||
|
name = "${pname}-2016-03-02";
|
||||||
|
|
||||||
|
owner = "BIC-MNI";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
inherit owner;
|
||||||
|
repo = pname;
|
||||||
|
rev = "bc062a65dead2e58461f5afb37abedfa6173f10c";
|
||||||
|
sha256 = "05l4ml9djw17bgdnrldhcxydrzkr2f2scqlyak52ph5azj5n4zsx";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake ];
|
||||||
|
buildInputs = [ libminc bicpl arguments pcre-cpp ];
|
||||||
|
|
||||||
|
cmakeFlags = [ "-DLIBMINC_DIR=${libminc}/lib"
|
||||||
|
"-DBICPL_DIR=${bicpl}/lib"
|
||||||
|
"-DARGUMENTS_DIR=${arguments}/lib"
|
||||||
|
"-DOOBICPL_BUILD_SHARED_LIBS=TRUE" ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/${owner}/${pname}";
|
||||||
|
description = "Brain Imaging Centre object-oriented programming library (and tools)";
|
||||||
|
maintainers = with maintainers; [ bcdarwin ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
license = licenses.free;
|
||||||
|
};
|
||||||
|
}
|
@ -10787,6 +10787,8 @@ with pkgs;
|
|||||||
|
|
||||||
oniguruma = callPackage ../development/libraries/oniguruma { };
|
oniguruma = callPackage ../development/libraries/oniguruma { };
|
||||||
|
|
||||||
|
oobicpl = callPackage ../development/libraries/science/biology/oobicpl { };
|
||||||
|
|
||||||
openal = self.openalSoft;
|
openal = self.openalSoft;
|
||||||
|
|
||||||
openalSoft = callPackage ../development/libraries/openal-soft {
|
openalSoft = callPackage ../development/libraries/openal-soft {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user