bicgl: update LIBMINC_DIR due to libminc CMake changes
This commit is contained in:
parent
e673c285e1
commit
44d854af30
|
@ -2,21 +2,24 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "bicgl";
|
pname = "bicgl";
|
||||||
name = "${pname}-2017-09-10";
|
version = "unstable-2018-04-06";
|
||||||
|
|
||||||
owner = "BIC-MNI";
|
owner = "BIC-MNI";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
inherit owner;
|
inherit owner;
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "b7f7e52d1039d6202a93d9055f516186033656cc";
|
rev = "61a035751c9244fcca1edf94d6566fa2a709ce90";
|
||||||
sha256 = "0lzirdi1mf4yl8srq7vjn746sbydz7h0wjh7wy8gycy6hq04qrg4";
|
sha256 = "0lzirdi1mf4yl8srq7vjn746sbydz7h0wjh7wy8gycy6hq04qrg4";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
buildInputs = [ libminc bicpl freeglut mesa_glu ];
|
buildInputs = [ libminc bicpl freeglut mesa_glu ];
|
||||||
|
|
||||||
cmakeFlags = [ "-DLIBMINC_DIR=${libminc}/lib" "-DBICPL_DIR=${bicpl}/lib" ];
|
cmakeFlags = [
|
||||||
|
"-DLIBMINC_DIR=${libminc}/lib/cmake"
|
||||||
|
"-DBICPL_DIR=${bicpl}/lib"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://github.com/${owner}/${pname}";
|
homepage = "https://github.com/${owner}/${pname}";
|
||||||
|
|
Loading…
Reference in New Issue