37 lines
856 B
Nix
37 lines
856 B
Nix
|
{ stdenv, fetchFromGitHub, qt4, vcg, glew }:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "openbrf-2016-01-09";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "cfcohen";
|
||
|
repo = "openbrf";
|
||
|
rev = "c18d7431e1d499cee11586f4a035fb5fdc0d3330";
|
||
|
sha256 = "0laikpz0ljz7l5fgapwj09ygizmvj1iywnpfgfd0i14j46s134xb";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ qt4 vcg glew ];
|
||
|
|
||
|
enableParallelBuilding = true;
|
||
|
|
||
|
postPatch = ''
|
||
|
sed -i 's,^VCGLIB .*,VCGLIB = ${vcg}/include,' openBrf.pro
|
||
|
'';
|
||
|
|
||
|
configurePhase = ''
|
||
|
qmake PREFIX=$out openBrf.pro
|
||
|
'';
|
||
|
|
||
|
installPhase = ''
|
||
|
install -Dm755 openBrf $out/bin/openBrf
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "A tool to edit resource files (BRF)";
|
||
|
homepage = https://github.com/cfcohen/openbrf;
|
||
|
maintainers = with stdenv.lib.maintainers; [ abbradar ];
|
||
|
license = licenses.free;
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|