libnftnl: 1.2.0 -> 1.2.1

This commit is contained in:
ajs124 2021-11-18 14:57:57 +01:00
parent 3db9ebca5e
commit fc598f2681

View file

@ -1,12 +1,12 @@
{ lib, stdenv, fetchurl, pkg-config, libmnl }:
stdenv.mkDerivation rec {
version = "1.2.0";
version = "1.2.1";
pname = "libnftnl";
src = fetchurl {
url = "https://netfilter.org/projects/${pname}/files/${pname}-${version}.tar.bz2";
sha256 = "1xblq1cbcxhr6qmjpy98i1qdza148idgz99vbhjc7s4vzvfizc4h";
sha256 = "0z4khm2mnys9mcl8ckwf19cw20jgrv8650nfncy3xcgs2k2aa23m";
};
nativeBuildInputs = [ pkg-config ];
@ -17,6 +17,6 @@ stdenv.mkDerivation rec {
homepage = "http://netfilter.org/projects/libnftnl";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ fpletz ];
maintainers = with maintainers; [ fpletz ajs124 ];
};
}