2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch }:
|
2016-01-08 19:12:18 +00:00
|
|
|
|
2021-11-09 21:14:04 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "openslp";
|
|
|
|
version = "2.0.0";
|
2016-01-08 19:12:18 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-11-09 21:14:04 +00:00
|
|
|
url = "mirror://sourceforge/openslp/${version}/${version}/openslp-${version}.tar.gz";
|
2016-01-08 19:12:18 +00:00
|
|
|
sha256 = "16splwmqp0400w56297fkipaq9vlbhv7hapap8z09gp5m2i3fhwj";
|
|
|
|
};
|
|
|
|
|
2016-10-27 00:51:06 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "openslp-2.0.0-null-pointer-deref.patch";
|
2017-06-25 03:37:27 +00:00
|
|
|
url = "https://src.fedoraproject.org/cgit/rpms/openslp.git/plain/openslp-2.0.0-null-pointer-deref.patch";
|
2016-10-27 00:51:06 +00:00
|
|
|
sha256 = "186f3rj3z2lf5h1lpbhqk0szj2a9far1p3mjqg6422f29yjfnz6a";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
name = "openslp-2.0.0-CVE-2016-7567.patch";
|
2017-06-25 03:37:27 +00:00
|
|
|
url = "https://src.fedoraproject.org/cgit/rpms/openslp.git/plain/openslp-2.0.0-cve-2016-7567.patch";
|
|
|
|
sha256 = "0zp61axx93b7nrbsyhn2x4dnw7n9y6g4rys21hyqxk4khrnc2yr9";
|
2016-10-27 00:51:06 +00:00
|
|
|
})
|
2018-01-06 20:25:00 +00:00
|
|
|
./CVE-2016-4912.patch
|
2021-02-02 17:37:09 +00:00
|
|
|
./CVE-2019-5544.patch
|
2016-10-27 00:51:06 +00:00
|
|
|
];
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.openslp.org/";
|
2016-01-08 19:12:18 +00:00
|
|
|
description = "An open-source implementation of the IETF Service Location Protocol";
|
|
|
|
maintainers = with maintainers; [ ttuegel ];
|
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.all;
|
2022-12-06 20:47:40 +00:00
|
|
|
# never built on aarch64-darwin since first introduction in nixpkgs
|
|
|
|
broken = stdenv.isDarwin && stdenv.isAarch64;
|
2016-01-08 19:12:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|