tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
qhull: add fixDarwinDylibNames
Dmitry Kalinkin
4 years ago
e34b5591
5658fade
+3
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
qhull
default.nix
+3
-2
pkgs/development/libraries/qhull/default.nix
reviewed
···
1
1
-
{ lib, stdenv, fetchFromGitHub, cmake }:
1
1
+
{ lib, stdenv, fetchFromGitHub, cmake, fixDarwinDylibNames }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
pname = "qhull";
···
11
11
sha256 = "sha256-djUO3qzY8ch29AuhY3Bn1ajxWZ4/W70icWVrxWRAxRc=";
12
12
};
13
13
14
14
-
nativeBuildInputs = [ cmake ];
14
14
+
nativeBuildInputs = [ cmake ]
15
15
+
++ lib.optional stdenv.isDarwin fixDarwinDylibNames;
15
16
16
17
meta = with lib; {
17
18
homepage = "http://www.qhull.org/";