Merge pull request #126526 from LeSuisse/fileshare-stop-using-libmicrohttpd-0.9.70

fileshare: stop using vulnerable libmicrohttpd 0.9.70
This commit is contained in:
Sandro
2021-06-12 19:00:47 +02:00
committed by GitHub
+2 -2
View File
@@ -1,4 +1,4 @@
{ stdenv, lib, fetchgit, pkg-config, git, libmicrohttpd_0_9_70 }:
{ stdenv, lib, fetchgit, pkg-config, git, libmicrohttpd }:
stdenv.mkDerivation rec {
pname = "fileshare";
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
'';
nativeBuildInputs = [ pkg-config git ];
buildInputs = [ libmicrohttpd_0_9_70 ];
buildInputs = [ libmicrohttpd ];
makeFlags = [ "BUILD=release" ];