nixpkgs/pkgs/development/libraries/science/biology/bicgl/default.nix

32 lines
815 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, libminc, bicpl, freeglut, mesa_glu }:
2018-05-09 11:05:29 -07:00
stdenv.mkDerivation rec {
pname = "bicgl";
version = "unstable-2018-04-06";
2018-05-09 11:05:29 -07:00
owner = "BIC-MNI";
src = fetchFromGitHub {
inherit owner;
repo = pname;
rev = "61a035751c9244fcca1edf94d6566fa2a709ce90";
2018-05-09 11:05:29 -07:00
sha256 = "0lzirdi1mf4yl8srq7vjn746sbydz7h0wjh7wy8gycy6hq04qrg4";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ libminc bicpl freeglut mesa_glu ];
cmakeFlags = [
"-DLIBMINC_DIR=${libminc}/lib/cmake"
"-DBICPL_DIR=${bicpl}/lib"
];
2018-05-09 11:05:29 -07:00
meta = with lib; {
2018-05-09 11:05:29 -07:00
homepage = "https://github.com/${owner}/${pname}";
description = "Brain Imaging Centre graphics library";
maintainers = with maintainers; [ bcdarwin ];
platforms = platforms.unix;
license = licenses.free;
};
}