f2fs-tools: move to pkgs/by-name

This commit is contained in:
Emery Hemingway 2024-06-12 14:12:48 +03:00
parent 1b060b2818
commit 970fa0b613
3 changed files with 24 additions and 10 deletions

View File

@ -1,5 +1,12 @@
{ lib, stdenv, fetchzip, fetchpatch
, autoreconfHook, libselinux, libuuid, pkg-config
{
lib,
stdenv,
fetchzip,
fetchpatch,
autoreconfHook,
libselinux,
libuuid,
pkg-config,
}:
stdenv.mkDerivation rec {
@ -11,8 +18,14 @@ stdenv.mkDerivation rec {
sha256 = "sha256-zNG1F//+BTBzlEc6qNVixyuCB6PMZD5Kf8pVK0ePYiA=";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ libselinux libuuid ];
nativeBuildInputs = [
autoreconfHook
pkg-config
];
buildInputs = [
libselinux
libuuid
];
patches = [
./f2fs-tools-cross-fix.patch
@ -24,11 +37,14 @@ stdenv.mkDerivation rec {
})
];
meta = with lib; {
meta = {
homepage = "https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/";
description = "Userland tools for the f2fs filesystem";
license = licenses.gpl2Only;
platforms = platforms.linux;
maintainers = with maintainers; [ ehmry jagajaga ];
license = lib.licenses.gpl2Only;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [
ehmry
jagajaga
];
};
}

View File

@ -7807,8 +7807,6 @@ with pkgs;
expliot = callPackage ../tools/security/expliot { };
f2fs-tools = callPackage ../tools/filesystems/f2fs-tools { };
Fabric = with python3Packages; toPythonApplication fabric;
fail2ban = callPackage ../tools/security/fail2ban { };