mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
Merge pull request #222982 from arti5an/mount-zip
mount-zip: init at 1.0.8
This commit is contained in:
commit
7e6912f7f8
@ -1401,6 +1401,12 @@
|
||||
githubId = 37193992;
|
||||
name = "Arthur Teisseire";
|
||||
};
|
||||
arti5an = {
|
||||
email = "artis4n@outlook.com";
|
||||
github = "arti5an";
|
||||
githubId = 14922630;
|
||||
name = "Richard Smith";
|
||||
};
|
||||
artturin = {
|
||||
email = "artturin@artturin.com";
|
||||
matrix = "@artturin:matrix.org";
|
||||
|
32
pkgs/tools/filesystems/mount-zip/default.nix
Normal file
32
pkgs/tools/filesystems/mount-zip/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ lib, stdenv, fetchFromGitHub, fuse, boost, gcc, icu, libzip, pandoc
|
||||
, pkg-config }:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "mount-zip";
|
||||
version = "1.0.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "google";
|
||||
repo = "mount-zip";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-+slN5eedSddYKgiNLq4KZ5BXwvGQw9859sVfkcIBYeo=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ boost gcc icu pandoc pkg-config ];
|
||||
buildInputs = [ fuse libzip ];
|
||||
|
||||
makeFlags = [ "prefix=$(out)" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "FUSE file system for ZIP archives";
|
||||
homepage = "https://github.com/google/mount-zip";
|
||||
longDescription = ''
|
||||
mount-zip is a tool allowing to open, explore and extract ZIP archives.
|
||||
|
||||
This project is a fork of fuse-zip.
|
||||
'';
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ arti5an ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
})
|
@ -10607,6 +10607,8 @@ with pkgs;
|
||||
|
||||
motrix = callPackage ../tools/networking/motrix { };
|
||||
|
||||
mount-zip = callPackage ../tools/filesystems/mount-zip { };
|
||||
|
||||
mpage = callPackage ../tools/text/mpage { };
|
||||
|
||||
mprime = callPackage ../tools/misc/mprime { };
|
||||
|
Loading…
Reference in New Issue
Block a user