nixos/fileSystems: link to mount(8) from fileSystems.*.options (#377170)
[NixPkgs.git] / pkgs / by-name / mo / mount-zip / package.nix
blob76e7c9ae7041a2c407c87ad27eb78f4ccbac81fb
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   fuse,
6   boost,
7   icu,
8   libzip,
9   pandoc,
10   pkg-config,
13 stdenv.mkDerivation (finalAttrs: {
14   pname = "mount-zip";
15   version = "1.0.15";
17   src = fetchFromGitHub {
18     owner = "google";
19     repo = "mount-zip";
20     rev = "v${finalAttrs.version}";
21     hash = "sha256-7S+mZ6jejD9wCqFYfJ0mE2jCKt77S64LEAgAIV2DPqA=";
22   };
24   strictDeps = true;
26   nativeBuildInputs = [
27     pandoc
28     pkg-config
29   ];
31   buildInputs = [
32     boost
33     fuse
34     icu
35     libzip
36   ];
38   makeFlags = [ "prefix=$(out)" ];
40   meta = with lib; {
41     description = "FUSE file system for ZIP archives";
42     homepage = "https://github.com/google/mount-zip";
43     longDescription = ''
44       mount-zip is a tool allowing to open, explore and extract ZIP archives.
46       This project is a fork of fuse-zip.
47     '';
48     license = licenses.gpl3;
49     maintainers = with maintainers; [ arti5an ];
50     platforms = platforms.linux;
51     mainProgram = "mount-zip";
52   };