about summary refs log tree commit diff
path: root/pkgs/tools/filesystems/fuse-archive/default.nix
blob: 58f48a2644983588a1f805de553adb74f6dc675b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ lib
, stdenv
, fetchFromGitHub
, fuse
, libarchive
, pkg-config
}:

stdenv.mkDerivation rec {
  pname = "fuse-archive";
  version = "0.1.14";

  src = fetchFromGitHub {
    owner = "google";
    repo = "fuse-archive";
    rev = "refs/tags/v${version}";
    hash = "sha256-l4tIK157Qo4m611etwMSk564+eC28x4RbmjX3J57/7Q=";
  };

  nativeBuildInputs = [
    pkg-config
  ];

  buildInputs = [
    fuse
    libarchive
  ];

  env.NIX_CFLAGS_COMPILE = "-D_FILE_OFFSET_BITS=64";

  makeFlags = [
    "prefix=${placeholder "out"}"
  ];

  meta = with lib; {
    description = "Serve an archive or a compressed file as a read-only FUSE file system";
    homepage = "https://github.com/google/fuse-archive";
    changelog = "https://github.com/google/fuse-archive/releases/tag/v${version}";
    license = licenses.asl20;
    maintainers = with maintainers; [ icyrockcom ];
    mainProgram = "fuse-archive";
  };

  inherit (fuse.meta) platforms;
}