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
commit 7312d64cac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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" ];