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

27 lines
754 B
Nix
Raw Normal View History

2017-03-19 03:39:18 +00:00
{ stdenv, fetchFromGitHub, cgal, boost, gmp, mpfr, flex, bison, dxflib, readline
, qtbase, qmakeHook, mesa_glu
2015-12-20 02:22:17 +00:00
}:
stdenv.mkDerivation rec {
2017-03-19 03:39:18 +00:00
version = "0.9.8";
name = "rapcad-${version}";
2017-03-19 03:39:18 +00:00
src = fetchFromGitHub {
owner = "gilesbathgate";
repo = "rapcad";
rev = "v${version}";
sha256 = "0a0sqf6h227zalh0jrz6jpm8iwji7q3i31plqk76i4qm9vsgrhir";
};
2015-12-20 02:22:17 +00:00
2017-03-19 03:39:18 +00:00
nativeBuildInputs = [ qmakeHook ];
buildInputs = [ qtbase cgal boost gmp mpfr flex bison dxflib readline mesa_glu ];
2017-03-19 03:39:18 +00:00
meta = with stdenv.lib; {
license = licenses.gpl3;
maintainers = [ maintainers.raskin ];
platforms = platforms.linux;
description = ''Constructive solid geometry package'';
2017-03-24 18:37:00 +00:00
broken = true; # redefines template instance added in Qt 5.6
};
}