LASzip: fix dylib name for darwin

This commit is contained in:
natsukium 2023-08-03 22:35:36 +09:00
parent fcf476cb78
commit 8f67c489ba
No known key found for this signature in database
GPG key ID: 9EA45A31DB994C53

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, cmake }:
{ lib, stdenv, fetchFromGitHub, cmake, fixDarwinDylibNames }:
stdenv.mkDerivation rec {
version = "3.4.3";
@ -13,6 +13,8 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
cmake
] ++ lib.optionals stdenv.isDarwin [
fixDarwinDylibNames
];
meta = {