rapcad: 0.9.5 -> 0.9.8
This commit is contained in:
parent
dd49357a19
commit
ec85bdb6c6
@ -1,23 +1,25 @@
|
|||||||
{ stdenv, fetchgit, cgal, boost, gmp, mpfr, flex, bison, dxflib, readline
|
{ stdenv, fetchFromGitHub, cgal, boost, gmp, mpfr, flex, bison, dxflib, readline
|
||||||
, qtbase, qmakeHook, mesa_glu
|
, qtbase, qmakeHook, mesa_glu
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "0.9.5";
|
version = "0.9.8";
|
||||||
name = "rapcad-${version}";
|
name = "rapcad-${version}";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/GilesBathgate/RapCAD.git";
|
owner = "gilesbathgate";
|
||||||
rev = "refs/tags/v${version}";
|
repo = "rapcad";
|
||||||
sha256 = "1i5h4sw7mdbpdbssmbjccwgidndrsc606zz4wy9pjsg2wzrabw7x";
|
rev = "v${version}";
|
||||||
|
sha256 = "0a0sqf6h227zalh0jrz6jpm8iwji7q3i31plqk76i4qm9vsgrhir";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ qtbase qmakeHook cgal boost gmp mpfr flex bison dxflib readline mesa_glu ];
|
nativeBuildInputs = [ qmakeHook ];
|
||||||
|
buildInputs = [ qtbase cgal boost gmp mpfr flex bison dxflib readline mesa_glu ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
license = stdenv.lib.licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
maintainers = with stdenv.lib.maintainers; [raskin];
|
maintainers = [ maintainers.raskin ];
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
description = ''Constructive solid geometry package'';
|
description = ''Constructive solid geometry package'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user