fileshare: fix build

This commit is contained in:
Raghav Sood 2020-11-29 09:33:58 +00:00
parent b59b7f2c8c
commit 78378e1f31
No known key found for this signature in database
GPG key ID: 947862F324C79D21

View file

@ -1,4 +1,4 @@
{ stdenv, lib, fetchgit, pkgconfig, git, libmicrohttpd }:
{ stdenv, lib, fetchgit, pkgconfig, git, libmicrohttpd_0_9_70 }:
stdenv.mkDerivation rec {
pname = "fileshare";
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
'';
nativeBuildInputs = [ pkgconfig git ];
buildInputs = [ libmicrohttpd ];
buildInputs = [ libmicrohttpd_0_9_70 ];
makeFlags = [ "BUILD=release" ];