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

35 lines
976 B
Nix
Raw Normal View History

2017-03-25 14:23:52 +00:00
{ stdenv, fetchFromGitHub, fetchurl, cgal, boost, gmp, mpfr, flex, bison, dxflib, readline
, qtbase, qmake, libGLU
2015-12-20 02:22:17 +00:00
}:
stdenv.mkDerivation rec {
2017-03-19 03:39:18 +00:00
version = "0.9.8";
pname = "rapcad";
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-25 14:23:52 +00:00
patches = [
(fetchurl {
url = "https://github.com/GilesBathgate/RapCAD/commit/278a8d6c7b8fe08f867002528bbab4a6319a7bb6.patch";
sha256 = "1vvkyf0wg79zdzs5zlggfrr1lrp1x75dglzl0mspnycwldsdwznj";
name = "disable-QVector-qHash.patch";
})
];
2017-06-02 16:40:19 +01:00
nativeBuildInputs = [ qmake ];
buildInputs = [ qtbase cgal boost gmp mpfr flex bison dxflib readline libGLU ];
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'';
2018-04-11 10:42:18 +01:00
broken = true; # 2018-04-11
};
}