biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / filesystems / fuse-archive / default.nix
blob58f48a2644983588a1f805de553adb74f6dc675b
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , fuse
5 , libarchive
6 , pkg-config
7 }:
9 stdenv.mkDerivation rec {
10   pname = "fuse-archive";
11   version = "0.1.14";
13   src = fetchFromGitHub {
14     owner = "google";
15     repo = "fuse-archive";
16     rev = "refs/tags/v${version}";
17     hash = "sha256-l4tIK157Qo4m611etwMSk564+eC28x4RbmjX3J57/7Q=";
18   };
20   nativeBuildInputs = [
21     pkg-config
22   ];
24   buildInputs = [
25     fuse
26     libarchive
27   ];
29   env.NIX_CFLAGS_COMPILE = "-D_FILE_OFFSET_BITS=64";
31   makeFlags = [
32     "prefix=${placeholder "out"}"
33   ];
35   meta = with lib; {
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";
42   };
44   inherit (fuse.meta) platforms;