9 stdenv.mkDerivation rec {
10 pname = "fuse-archive";
13 src = fetchFromGitHub {
15 repo = "fuse-archive";
16 rev = "refs/tags/v${version}";
17 hash = "sha256-l4tIK157Qo4m611etwMSk564+eC28x4RbmjX3J57/7Q=";
29 env.NIX_CFLAGS_COMPILE = "-D_FILE_OFFSET_BITS=64";
32 "prefix=${placeholder "out"}"
36 description = "Serve an archive or a compressed file as a read-only FUSE file system";
37 homepage = "https://github.com/google/fuse-archive";
38 changelog = "https://github.com/google/fuse-archive/releases/tag/v${version}";
39 license = licenses.asl20;
40 maintainers = with maintainers; [ icyrockcom ];
41 mainProgram = "fuse-archive";
44 inherit (fuse.meta) platforms;