tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
f2fs-tools: move to pkgs/by-name
Emery Hemingway
2 years ago
970fa0b6
1b060b28
+24
-10
3 changed files
expand all
collapse all
unified
split
pkgs
by-name
f2
f2fs-tools
f2fs-tools-cross-fix.patch
package.nix
top-level
all-packages.nix
+24
-8
pkgs/tools/filesystems/f2fs-tools/default.nix
pkgs/by-name/f2/f2fs-tools/package.nix
···
1
-
{ lib, stdenv, fetchzip, fetchpatch
2
-
, autoreconfHook, libselinux, libuuid, pkg-config
0
0
0
0
0
0
0
3
}:
4
5
stdenv.mkDerivation rec {
···
11
sha256 = "sha256-zNG1F//+BTBzlEc6qNVixyuCB6PMZD5Kf8pVK0ePYiA=";
12
};
13
14
-
nativeBuildInputs = [ autoreconfHook pkg-config ];
15
-
buildInputs = [ libselinux libuuid ];
0
0
0
0
0
0
16
17
patches = [
18
./f2fs-tools-cross-fix.patch
···
24
})
25
];
26
27
-
meta = with lib; {
28
homepage = "https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/";
29
description = "Userland tools for the f2fs filesystem";
30
-
license = licenses.gpl2Only;
31
-
platforms = platforms.linux;
32
-
maintainers = with maintainers; [ ehmry jagajaga ];
0
0
0
33
};
34
}
···
1
+
{
2
+
lib,
3
+
stdenv,
4
+
fetchzip,
5
+
fetchpatch,
6
+
autoreconfHook,
7
+
libselinux,
8
+
libuuid,
9
+
pkg-config,
10
}:
11
12
stdenv.mkDerivation rec {
···
18
sha256 = "sha256-zNG1F//+BTBzlEc6qNVixyuCB6PMZD5Kf8pVK0ePYiA=";
19
};
20
21
+
nativeBuildInputs = [
22
+
autoreconfHook
23
+
pkg-config
24
+
];
25
+
buildInputs = [
26
+
libselinux
27
+
libuuid
28
+
];
29
30
patches = [
31
./f2fs-tools-cross-fix.patch
···
37
})
38
];
39
40
+
meta = {
41
homepage = "https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/";
42
description = "Userland tools for the f2fs filesystem";
43
+
license = lib.licenses.gpl2Only;
44
+
platforms = lib.platforms.linux;
45
+
maintainers = with lib.maintainers; [
46
+
ehmry
47
+
jagajaga
48
+
];
49
};
50
}
pkgs/tools/filesystems/f2fs-tools/f2fs-tools-cross-fix.patch
pkgs/by-name/f2/f2fs-tools/f2fs-tools-cross-fix.patch
-2
pkgs/top-level/all-packages.nix
···
7807
7808
expliot = callPackage ../tools/security/expliot { };
7809
7810
-
f2fs-tools = callPackage ../tools/filesystems/f2fs-tools { };
7811
-
7812
Fabric = with python3Packages; toPythonApplication fabric;
7813
7814
fail2ban = callPackage ../tools/security/fail2ban { };
···
7807
7808
expliot = callPackage ../tools/security/expliot { };
7809
0
0
7810
Fabric = with python3Packages; toPythonApplication fabric;
7811
7812
fail2ban = callPackage ../tools/security/fail2ban { };