4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
34 lines
974 B
Nix
34 lines
974 B
Nix
{ lib, stdenv, fetchFromGitHub, fetchurl, cgal, boost, gmp, mpfr, flex, bison, dxflib, readline
|
|
, qtbase, qmake, libGLU
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.9.8";
|
|
pname = "rapcad";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gilesbathgate";
|
|
repo = "rapcad";
|
|
rev = "v${version}";
|
|
sha256 = "0a0sqf6h227zalh0jrz6jpm8iwji7q3i31plqk76i4qm9vsgrhir";
|
|
};
|
|
|
|
patches = [
|
|
(fetchurl {
|
|
url = "https://github.com/GilesBathgate/RapCAD/commit/278a8d6c7b8fe08f867002528bbab4a6319a7bb6.patch";
|
|
sha256 = "1vvkyf0wg79zdzs5zlggfrr1lrp1x75dglzl0mspnycwldsdwznj";
|
|
name = "disable-QVector-qHash.patch";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ qmake ];
|
|
buildInputs = [ qtbase cgal boost gmp mpfr flex bison dxflib readline libGLU ];
|
|
|
|
meta = with lib; {
|
|
license = licenses.gpl3;
|
|
maintainers = [ maintainers.raskin ];
|
|
platforms = platforms.linux;
|
|
description = ''Constructive solid geometry package'';
|
|
broken = true; # 2018-04-11
|
|
};
|
|
}
|