mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
slirp4netns: 0.4.3 -> 0.4.4
https://github.com/rootless-containers/slirp4netns/releases/tag/v0.4.4
This commit is contained in:
parent
eb3e75e788
commit
b4cf1c96fa
1 changed files with 5 additions and 5 deletions
|
@ -1,24 +1,24 @@
|
|||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, glib, libcap, libseccomp }:
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkg-config, glib, libcap, libseccomp }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "slirp4netns";
|
||||
version = "0.4.3";
|
||||
version = "0.4.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rootless-containers";
|
||||
repo = "slirp4netns";
|
||||
rev = "v${version}";
|
||||
sha256 = "0g7apfw33wkxxj7qwvlnnhv7qy13s1gkbmvns8612c0yfv9jrsvq";
|
||||
sha256 = "1932q80s6187k4fsvgia5iwc9lqsdkxzqqwpw1ksy0mx8wzmwbih";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||
|
||||
buildInputs = [ libcap libseccomp glib ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/rootless-containers/slirp4netns;
|
||||
homepage = "https://github.com/rootless-containers/slirp4netns";
|
||||
description = "User-mode networking for unprivileged network namespaces";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ orivej saschagrunert ];
|
||||
|
|
Loading…
Reference in a new issue