mastodon: 4.3.1 -> 4.3.2 (#361487)
[NixPkgs.git] / pkgs / by-name / f2 / f2fs-tools / package.nix
blob60ec724b8ad40b40917a2b7c95d6b1f08d4a00f1
2   lib,
3   stdenv,
4   fetchzip,
5   fetchpatch,
6   autoreconfHook,
7   libselinux,
8   libuuid,
9   pkg-config,
10   lz4,
11   lzo,
14 stdenv.mkDerivation rec {
15   pname = "f2fs-tools";
16   version = "1.16.0";
18   src = fetchzip {
19     url = "https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/snapshot/f2fs-tools-v${version}.tar.gz";
20     hash = "sha256-zNG1F//+BTBzlEc6qNVixyuCB6PMZD5Kf8pVK0ePYiA=";
21   };
23   nativeBuildInputs = [
24     autoreconfHook
25     pkg-config
26   ];
27   buildInputs = [
28     libselinux
29     libuuid
30     lz4
31     lzo
32   ];
34   patches = [
35     ./f2fs-tools-cross-fix.patch
37     (fetchpatch {
38       name = "lfs64.patch";
39       url = "https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/patch/?id=b15b6cc56ac7764be17acbdbf96448f388992adc";
40       hash = "sha256-9XrNf9MMMDGOsuP3DvUhm30Sa2xICDtXbUIvM/TP35o=";
41     })
42   ];
44   enableParallelBuilding = true;
46   meta = {
47     homepage = "https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/";
48     description = "Userland tools for the f2fs filesystem";
49     license = lib.licenses.gpl2Only;
50     platforms = lib.platforms.linux;
51     maintainers = with lib.maintainers; [
52       ehmry
53       jagajaga
54     ];
55   };