1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/graphics/leocad/default.nix
Ryan Mulligan 4034ca791b leocad: 17.07 -> 18.02
Semi-automatic update. These checks were performed:

- built on NixOS
- found 18.02 with grep in /nix/store/hcqlkwyiindjgmq9qs7cswbam78iakmy-leocad-18.02
- found 18.02 in filename of file in /nix/store/hcqlkwyiindjgmq9qs7cswbam78iakmy-leocad-18.02
2018-02-26 20:06:31 -08:00

32 lines
766 B
Nix

/*
To use aditional parts libraries
set the variable LEOCAD_LIB=/path/to/libs/ or use option -l /path/to/libs/
*/
{ stdenv, fetchFromGitHub, qt4, qmake4Hook, zlib }:
stdenv.mkDerivation rec {
name = "leocad-${version}";
version = "18.02";
src = fetchFromGitHub {
owner = "leozide";
repo = "leocad";
rev = "v${version}";
sha256 = "0rb4kjyrr9ry85cfpbk52l19vvwn7lrh2kmj2lwq531smnygn5m3";
};
nativeBuildInputs = [ qmake4Hook ];
buildInputs = [ qt4 zlib ];
postPatch = ''
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;
platforms = platforms.linux;
};
}