Merge pull request #164241 from larsr/patch-1
This commit is contained in:
commit
209598e67e
1 changed files with 3 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl, fixDarwinDylibNames }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libnatpmp";
|
||||
|
@ -15,6 +15,8 @@ stdenv.mkDerivation rec {
|
|||
"CC:=$(CC)"
|
||||
];
|
||||
|
||||
nativeBuildInputs = lib.optional stdenv.isDarwin fixDarwinDylibNames;
|
||||
|
||||
postFixup = ''
|
||||
chmod +x $out/lib/*
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue