3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/miniupnpc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, which, cctools }:
let
generic = { version, sha256 }:
stdenv.mkDerivation rec {
2019-08-13 22:52:01 +01:00
pname = "miniupnpc";
inherit version;
src = fetchurl {
2022-10-29 09:06:54 +01:00
url = "https://miniupnp.tuxfamily.org/files/${pname}-${version}.tar.gz";
inherit sha256;
};
2021-01-15 09:19:50 +00:00
nativeBuildInputs = lib.optionals stdenv.isDarwin [ which cctools ];
2021-01-15 09:19:50 +00:00
patches = lib.optional stdenv.isFreeBSD ./freebsd.patch;
doCheck = !stdenv.isFreeBSD;
2019-10-26 14:35:48 +01:00
makeFlags = [ "PREFIX=$(out)" "INSTALLPREFIX=$(out)" ];
postInstall = ''
chmod +x "$out"/lib/libminiupnpc${stdenv.hostPlatform.extensions.sharedLibrary}
'';
meta = with lib; {
2022-10-29 09:06:54 +01:00
homepage = "https://miniupnp.tuxfamily.org/";
description = "A client that implements the UPnP Internet Gateway Device (IGD) specification";
2018-09-10 20:31:33 +01:00
platforms = with platforms; linux ++ freebsd ++ darwin;
license = licenses.bsd3;
};
};
in {
miniupnpc_2 = generic {
2022-10-29 09:06:54 +01:00
version = "2.2.4";
sha256 = "0jrc84lkc7xb53rb8dbswxrxj21ndj1iiclmk3r9wkp6xm55w6j8";
};
miniupnpc_1 = generic {
version = "1.9.20160209";
sha256 = "0vsbv6a8by67alx4rxfsrxxsnmq74rqlavvvwiy56whxrkm728ap";
};
}