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
1
-
{ lib, stdenv, fetchzip, fetchpatch
2
2
-
, autoreconfHook, libselinux, libuuid, pkg-config
1
1
+
{
2
2
+
lib,
3
3
+
stdenv,
4
4
+
fetchzip,
5
5
+
fetchpatch,
6
6
+
autoreconfHook,
7
7
+
libselinux,
8
8
+
libuuid,
9
9
+
pkg-config,
3
10
}:
4
11
5
12
stdenv.mkDerivation rec {
···
11
18
sha256 = "sha256-zNG1F//+BTBzlEc6qNVixyuCB6PMZD5Kf8pVK0ePYiA=";
12
19
};
13
20
14
14
-
nativeBuildInputs = [ autoreconfHook pkg-config ];
15
15
-
buildInputs = [ libselinux libuuid ];
21
21
+
nativeBuildInputs = [
22
22
+
autoreconfHook
23
23
+
pkg-config
24
24
+
];
25
25
+
buildInputs = [
26
26
+
libselinux
27
27
+
libuuid
28
28
+
];
16
29
17
30
patches = [
18
31
./f2fs-tools-cross-fix.patch
···
24
37
})
25
38
];
26
39
27
27
-
meta = with lib; {
40
40
+
meta = {
28
41
homepage = "https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/";
29
42
description = "Userland tools for the f2fs filesystem";
30
30
-
license = licenses.gpl2Only;
31
31
-
platforms = platforms.linux;
32
32
-
maintainers = with maintainers; [ ehmry jagajaga ];
43
43
+
license = lib.licenses.gpl2Only;
44
44
+
platforms = lib.platforms.linux;
45
45
+
maintainers = with lib.maintainers; [
46
46
+
ehmry
47
47
+
jagajaga
48
48
+
];
33
49
};
34
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
7807
7808
7808
expliot = callPackage ../tools/security/expliot { };
7809
7809
7810
7810
-
f2fs-tools = callPackage ../tools/filesystems/f2fs-tools { };
7811
7811
-
7812
7810
Fabric = with python3Packages; toPythonApplication fabric;
7813
7811
7814
7812
fail2ban = callPackage ../tools/security/fail2ban { };