python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / filesystems / apfs-fuse / default.nix
blobb5d08770ed78616b8b47a02b4ea3a1b4dfddac1b
1 { lib, stdenv, fetchFromGitHub, fuse3, bzip2, zlib, attr, cmake }:
3 stdenv.mkDerivation {
4   pname = "apfs-fuse-unstable";
5   version = "2020-09-28";
7   src = fetchFromGitHub {
8     owner  = "sgan81";
9     repo   = "apfs-fuse";
10     rev    = "ee71aa5c87c0831c1ae17048951fe9cd7579c3db";
11     sha256 = "0wvsx708km1lnhghny5y69k694x0zy8vlbndswkb7sq81j1r6kwx";
12     fetchSubmodules = true;
13   };
15   buildInputs = [ fuse3 bzip2 zlib attr ];
16   nativeBuildInputs = [ cmake ];
18   postFixup = ''
19     ln -s $out/bin/apfs-fuse $out/bin/mount.fuse.apfs-fuse
20   '';
22   meta = with lib; {
23     homepage    = "https://github.com/sgan81/apfs-fuse";
24     description = "FUSE driver for APFS (Apple File System)";
25     license     = licenses.gpl2Plus;
26     maintainers = with maintainers; [ ealasu ];
27     platforms   = platforms.linux;
28   };