From a3d60923a5427ad6a772270b040638ca44b8152e Mon Sep 17 00:00:00 2001 From: nikstur Date: Sat, 24 Jun 2023 00:01:21 +0200 Subject: erofs-utils: enable running on darwin --- pkgs/os-specific/linux/erofs-utils/default.nix | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 pkgs/os-specific/linux/erofs-utils/default.nix (limited to 'pkgs/os-specific/linux/erofs-utils/default.nix') diff --git a/pkgs/os-specific/linux/erofs-utils/default.nix b/pkgs/os-specific/linux/erofs-utils/default.nix deleted file mode 100644 index d84edfc56d9..00000000000 --- a/pkgs/os-specific/linux/erofs-utils/default.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ lib, stdenv, fetchurl, autoreconfHook, pkg-config, fuse, libuuid, lz4 }: - -stdenv.mkDerivation rec { - pname = "erofs-utils"; - version = "1.6"; - outputs = [ "out" "man" ]; - - src = fetchurl { - url = - "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/snapshot/erofs-utils-${version}.tar.gz"; - sha256 = "sha256-2/Gtrv8buFMrKacsip4ZGTjJOJlGdw3HY9PFnm8yBXE="; - }; - - nativeBuildInputs = [ autoreconfHook pkg-config ]; - buildInputs = [ fuse libuuid lz4 ]; - - configureFlags = [ "--enable-fuse" ]; - - meta = with lib; { - description = "Userspace utilities for linux-erofs file system"; - license = with licenses; [ gpl2Plus ]; - maintainers = with maintainers; [ ehmry ]; - platforms = platforms.linux; - }; -} -- cgit 1.4.1