tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
f2fs-tools: add pkgconfig
Domen Kožar
10 years ago
9af50919
720d0cdc
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
tools
filesystems
f2fs-tools
default.nix
+2
-2
pkgs/tools/filesystems/f2fs-tools/default.nix
···
1
1
-
{ stdenv, fetchurl, autoreconfHook, libuuid }:
1
1
+
{ stdenv, fetchurl, autoreconfHook, libuuid, pkgconfig }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
name = "f2fs-tools-${version}";
···
10
10
};
11
11
12
12
nativeBuildInputs = [ autoreconfHook ];
13
13
-
buildInputs = [ libuuid ];
13
13
+
buildInputs = [ libuuid pkgconfig ];
14
14
15
15
meta = with stdenv.lib; {
16
16
homepage = "http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/";