nixpkgs/pkgs/applications/graphics/leocad/default.nix

32 lines
767 B
Nix
Raw Normal View History

2015-01-23 05:39:39 +00:00
/*
To use aditional parts libraries
set the variable LEOCAD_LIB=/path/to/libs/ or use option -l /path/to/libs/
*/
2017-03-19 00:32:30 +00:00
{ stdenv, fetchFromGitHub, qt4, qmake4Hook, zlib }:
2015-01-23 05:39:39 +00:00
stdenv.mkDerivation rec {
name = "leocad-${version}";
version = "18.02";
2015-01-23 05:39:39 +00:00
2017-03-19 00:32:30 +00:00
src = fetchFromGitHub {
owner = "leozide";
repo = "leocad";
rev = "v${version}";
sha256 = "0rb4kjyrr9ry85cfpbk52l19vvwn7lrh2kmj2lwq531smnygn5m3";
2015-01-23 05:39:39 +00:00
};
2017-03-19 00:32:30 +00:00
nativeBuildInputs = [ qmake4Hook ];
buildInputs = [ qt4 zlib ];
postPatch = ''
2016-04-16 23:29:11 +00:00
export qmakeFlags="$qmakeFlags INSTALL_PREFIX=$out"
2017-03-19 18:17:21 +00:00
'';
2015-01-23 05:39:39 +00:00
meta = with stdenv.lib; {
description = "CAD program for creating virtual LEGO models";
homepage = https://www.leocad.org/;
2015-01-23 05:39:39 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
2015-01-23 05:39:39 +00:00
};
}