lensfun: switch to default make, move cmake to native build inputs

This commit is contained in:
Piotr Bogdan 2018-03-22 15:55:27 +00:00
parent 99a8c45bdd
commit 0244d8b094

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, glib, zlib, libpng, gnumake3, cmake }:
{ stdenv, fetchurl, pkgconfig, glib, zlib, libpng, cmake }:
stdenv.mkDerivation rec {
version = "0.3.95";
@ -9,8 +9,8 @@ stdenv.mkDerivation rec {
sha256 = "0218f3xrlln0jmh4gcf1zbpvi2bidgl3b2mblf6c810n7j1rrhl2";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ glib zlib libpng cmake gnumake3 ];
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ glib zlib libpng ];
configureFlags = [ "-v" ];