f2fs-tools: move to pkgs/by-name

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