1 { mkDerivation, lib, stdenv, fetchFromGitHub, fetchpatch, qtbase, vcg, glew, qmake, libGLU, eigen, libGL }:
6 version = "unstable-2016-01-09";
8 src = fetchFromGitHub {
11 rev = "4bdc66e38def5e5184f5379c84a7558b7484c70a";
12 sha256 = "16254cnr60ihcn7bki7wl1qm6gkvzb99cn66md1pnb7za8nvzf4j";
16 # https://github.com/cfcohen/openbrf/pull/7
18 name = "fix-build-against-newer-vcglib.patch";
19 url = "https://github.com/cfcohen/openbrf/commit/6d82a25314a393e72bfbe2ffc3965bcac407df4c.patch";
20 hash = "sha256-rNxAw6Le6QXMSirIAMhMmqVgNJLq6osnEOhWrY3mTpM=";
24 buildInputs = [ qtbase vcg glew eigen ];
26 nativeBuildInputs = [ qmake ];
28 qmakeFlags = [ "openBrf.pro" ];
30 env.NIX_CFLAGS_COMPILE = "-isystem ${lib.getDev eigen}/include/eigen3";
33 sed -i 's,^VCGLIB .*,VCGLIB = ${vcg}/include,' openBrf.pro
37 install -Dm755 openBrf $out/share/openBrf/openBrf
38 install -Dm644 carry_positions.txt $out/share/openBrf/carry_positions.txt
39 install -Dm644 reference.brf $out/share/openBrf/reference.brf
42 --set-rpath "${lib.makeLibraryPath [ qtbase glew stdenv.cc.cc libGLU libGL ]}" \
43 $out/share/openBrf/openBrf
46 ln -s "$out/share/openBrf/openBrf" "$out/bin/openBrf"
52 description = "Tool to edit resource files (BRF)";
53 mainProgram = "openBrf";
54 homepage = "https://github.com/cfcohen/openbrf";
55 maintainers = with lib.maintainers; [ abbradar ];
56 license = licenses.free;
57 platforms = platforms.linux;