new package: leocad

This commit is contained in:
David Virgilio 2015-01-22 23:39:39 -06:00
parent 51902ba32d
commit cd96404ff9
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
/*
To use aditional parts libraries
set the variable LEOCAD_LIB=/path/to/libs/ or use option -l /path/to/libs/
*/
{ stdenv, fetchsvn, qt4, zlib }:
stdenv.mkDerivation rec {
name = "leocad-${version}";
version = "0.81";
src = fetchsvn {
url = "http://svn.leocad.org/tags/${name}";
sha256 = "1190gb437ls51hhfiwa79fq131026kywpy3j3k4fkdgfr8a9v3q8";
};
buildInputs = [ qt4 zlib ];
prefixKey="INSTALL_PREFIX=";
configureScript = "qmake leocad.pro";
meta = with stdenv.lib; {
description = "CAD program for creating virtual LEGO models";
homepage = http://www.leocad.org/;
license = licenses.gpl2;
inherit (qt4.meta) platforms;
};
}

View file

@ -1621,6 +1621,8 @@ let
kst = callPackage ../tools/graphics/kst { };
leocad = callPackage ../applications/graphics/leocad { };
less = callPackage ../tools/misc/less { };
liquidsoap = callPackage ../tools/audio/liquidsoap/full.nix { };