mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-18 07:10:51 +00:00
f2fs-tools: move to pkgs/by-name
This commit is contained in:
parent
1b060b2818
commit
970fa0b613
@ -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
|
||||
];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user