31 lines
778 B
Nix
31 lines
778 B
Nix
/*
|
|
To use aditional parts libraries
|
|
set the variable LEOCAD_LIB=/path/to/libs/ or use option -l /path/to/libs/
|
|
*/
|
|
|
|
{ stdenv, fetchsvn, qt4, qmake4Hook, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "leocad-${version}";
|
|
version = "0.81";
|
|
|
|
src = fetchsvn {
|
|
url = "http://svn.leocad.org/tags/${name}";
|
|
sha256 = "1190gb437ls51hhfiwa79fq131026kywpy3j3k4fkdgfr8a9v3q8";
|
|
};
|
|
|
|
buildInputs = [ qt4 qmake4Hook zlib ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace common/camera.cpp --replace "isnan(" "std::isnan("
|
|
export qmakeFlags="$qmakeFlags INSTALL_PREFIX=$out"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "CAD program for creating virtual LEGO models";
|
|
homepage = http://www.leocad.org/;
|
|
license = licenses.gpl2;
|
|
inherit (qt4.meta) platforms;
|
|
};
|
|
}
|