Merge pull request #66661 from ealasu/feature/apfs-fuse
apfs-fuse: init at 20190723
This commit is contained in:
commit
63ce6bf9f3
@ -1484,6 +1484,11 @@
|
|||||||
github = "eadwu";
|
github = "eadwu";
|
||||||
name = "Edmund Wu";
|
name = "Edmund Wu";
|
||||||
};
|
};
|
||||||
|
ealasu = {
|
||||||
|
email = "emanuel.alasu@gmail.com";
|
||||||
|
github = "ealasu";
|
||||||
|
name = "Emanuel Alasu";
|
||||||
|
};
|
||||||
eamsden = {
|
eamsden = {
|
||||||
email = "edward@blackriversoft.com";
|
email = "edward@blackriversoft.com";
|
||||||
github = "eamsden";
|
github = "eamsden";
|
||||||
|
26
pkgs/tools/filesystems/apfs-fuse/default.nix
Normal file
26
pkgs/tools/filesystems/apfs-fuse/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, fuse3, bzip2, zlib, attr, cmake }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "apfs-fuse-unstable";
|
||||||
|
version = "2019-07-23";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "sgan81";
|
||||||
|
repo = "apfs-fuse";
|
||||||
|
rev = "309ecb030f38edac4c10fa741a004c5eb7a23e15";
|
||||||
|
sha256 = "0wq6rlqi00m5dp5gbzy65i1plm40j6nsm7938zvfgx5laal4wzr2";
|
||||||
|
fetchSubmodules = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ fuse3 bzip2 zlib attr ];
|
||||||
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/sgan81/apfs-fuse";
|
||||||
|
description = "FUSE driver for APFS (Apple File System)";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = with maintainers; [ ealasu ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -564,6 +564,8 @@ in
|
|||||||
|
|
||||||
antora = callPackage ../development/tools/documentation/antora {};
|
antora = callPackage ../development/tools/documentation/antora {};
|
||||||
|
|
||||||
|
apfs-fuse = callPackage ../tools/filesystems/apfs-fuse { };
|
||||||
|
|
||||||
apktool = callPackage ../development/tools/apktool {
|
apktool = callPackage ../development/tools/apktool {
|
||||||
inherit (androidenv.androidPkgs_9_0) build-tools;
|
inherit (androidenv.androidPkgs_9_0) build-tools;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user