Merge pull request #239903 from cmm/fix/libnatpmp

libnatpmp: fix install
This commit is contained in:
Weijia Wang 2023-06-26 15:53:08 +02:00 committed by GitHub
commit 591c70cece
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,9 @@
{ lib, stdenv, fetchurl, fixDarwinDylibNames }:
{ lib
, stdenv
, fetchurl
, fetchpatch
, fixDarwinDylibNames
}:
stdenv.mkDerivation rec {
pname = "libnatpmp";
@ -9,6 +14,14 @@ stdenv.mkDerivation rec {
hash = "sha256-BoTtLIQGQ351GaG9IOqDeA24cbOjpddSMRuj6Inb/HA=";
};
patches = [
# install natpmp_declspec.h too, else nothing that uses this library will build
(fetchpatch {
url = "https://github.com/miniupnp/libnatpmp/commit/5f4a7c65837a56e62c133db33c28cd1ea71db662.patch";
hash = "sha256-tvoGFmo5AzUgb40bIs/EzikE0ex1SFzE5peLXhktnbc=";
})
];
makeFlags = [
"INSTALLPREFIX=$(out)"
"CC:=$(CC)"