f2fs-tools: add pkgconfig

This commit is contained in:
Domen Kožar 2016-01-05 19:57:36 +01:00
parent 720d0cdc9a
commit 9af5091992

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, autoreconfHook, libuuid }:
{ stdenv, fetchurl, autoreconfHook, libuuid, pkgconfig }:
stdenv.mkDerivation rec {
name = "f2fs-tools-${version}";
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libuuid ];
buildInputs = [ libuuid pkgconfig ];
meta = with stdenv.lib; {
homepage = "http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/";