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

35 lines
986 B
Nix
Raw Normal View History

2017-03-25 07:23:52 -07:00
{ stdenv, fetchFromGitHub, fetchurl, cgal, boost, gmp, mpfr, flex, bison, dxflib, readline
, qtbase, qmake, libGLU
2015-12-19 18:22:17 -08:00
}:
stdenv.mkDerivation rec {
2017-03-18 20:39:18 -07:00
version = "0.9.8";
name = "rapcad-${version}";
2017-03-18 20:39:18 -07:00
src = fetchFromGitHub {
owner = "gilesbathgate";
repo = "rapcad";
rev = "v${version}";
sha256 = "0a0sqf6h227zalh0jrz6jpm8iwji7q3i31plqk76i4qm9vsgrhir";
};
2015-12-19 18:22:17 -08:00
2017-03-25 07:23:52 -07:00
patches = [
(fetchurl {
url = "https://github.com/GilesBathgate/RapCAD/commit/278a8d6c7b8fe08f867002528bbab4a6319a7bb6.patch";
sha256 = "1vvkyf0wg79zdzs5zlggfrr1lrp1x75dglzl0mspnycwldsdwznj";
name = "disable-QVector-qHash.patch";
})
];
2017-06-02 08:40:19 -07:00
nativeBuildInputs = [ qmake ];
buildInputs = [ qtbase cgal boost gmp mpfr flex bison dxflib readline libGLU ];
2017-03-18 20:39:18 -07:00
meta = with stdenv.lib; {
license = licenses.gpl3;
maintainers = [ maintainers.raskin ];
platforms = platforms.linux;
description = ''Constructive solid geometry package'';
2018-04-11 02:42:18 -07:00
broken = true; # 2018-04-11
};
}