diff options
Diffstat (limited to 'pkgs/tools/filesystems/erofs-utils/default.nix')
-rw-r--r-- | pkgs/tools/filesystems/erofs-utils/default.nix | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/pkgs/tools/filesystems/erofs-utils/default.nix b/pkgs/tools/filesystems/erofs-utils/default.nix deleted file mode 100644 index 3946523ccb10..000000000000 --- a/pkgs/tools/filesystems/erofs-utils/default.nix +++ /dev/null @@ -1,63 +0,0 @@ -{ - lib, - stdenv, - fetchurl, - autoreconfHook, - pkg-config, - fuse, - util-linux, - lz4, - xz, - zlib, - libselinux, - fuseSupport ? stdenv.isLinux, - selinuxSupport ? false, - lzmaSupport ? false, -}: - -stdenv.mkDerivation (finalAttrs: { - pname = "erofs-utils"; - version = "1.8.1"; - outputs = [ - "out" - "man" - ]; - - src = fetchurl { - url = "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/snapshot/erofs-utils-${finalAttrs.version}.tar.gz"; - hash = "sha256-Xb97SS92gkYrl6dxIdQ8p2Cc2Q5l+MlpMa78ggpvDaM="; - }; - - nativeBuildInputs = [ - autoreconfHook - pkg-config - ]; - buildInputs = - [ - util-linux - lz4 - zlib - ] - ++ lib.optionals fuseSupport [ fuse ] - ++ lib.optionals selinuxSupport [ libselinux ] - ++ lib.optionals lzmaSupport [ xz ]; - - configureFlags = - [ "MAX_BLOCK_SIZE=4096" ] - ++ lib.optional fuseSupport "--enable-fuse" - ++ lib.optional selinuxSupport "--with-selinux" - ++ lib.optional lzmaSupport "--enable-lzma"; - - meta = with lib; { - homepage = "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/about/"; - description = "Userspace utilities for linux-erofs file system"; - changelog = "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/tree/ChangeLog?h=v${version}"; - license = with licenses; [ gpl2Plus ]; - maintainers = with maintainers; [ - ehmry - nikstur - jmbaur - ]; - platforms = platforms.unix; - }; -}) |