46 lines
856 B
Nix
46 lines
856 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, fontconfig
|
|
, libX11
|
|
, libXi
|
|
, freetype
|
|
, mesa
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "brlcad";
|
|
version = "7.34.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "BRL-CAD";
|
|
repo = pname;
|
|
rev = "refs/tags/rel-${lib.replaceStrings [ "." ] [ "-" ] version}";
|
|
hash = "sha256-oafu255xElEIk8p4yvNyR2maykUfxQui/L5MkicA+JA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
buildInputs = [
|
|
fontconfig
|
|
libX11
|
|
libXi
|
|
freetype
|
|
mesa
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DBRLCAD_ENABLE_STRICT=OFF"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://brlcad.org";
|
|
description = "BRL-CAD is a powerful cross-platform open source combinatorial solid modeling system";
|
|
license = with licenses; [ lgpl21 bsd2 ];
|
|
maintainers = with maintainers; [ GaetanLepage ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|