mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
* Added fuse-zip, a FUSE filesystem for accessing zip files.
svn path=/nixpkgs/trunk/; revision=32143
This commit is contained in:
parent
f680a3c175
commit
ff1bfcaefb
2 changed files with 23 additions and 0 deletions
21
pkgs/tools/filesystems/fuse-zip/default.nix
Normal file
21
pkgs/tools/filesystems/fuse-zip/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ stdenv, fetchurl, pkgconfig, fuse, libzip, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "fuse-zip-0.2.13";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://fuse-zip.googlecode.com/files/${name}.tar.gz";
|
||||
sha1 = "9cfa00e38a59d4e06fd47bfaca75ad5e299ecc6b";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig fuse libzip zlib ];
|
||||
|
||||
makeFlags = "INSTALLPREFIX=$(out)";
|
||||
|
||||
meta = {
|
||||
homepage = http://code.google.com/p/fuse-zip/;
|
||||
description = "A FUSE-based filesystem that allows read and write access to ZIP files";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
license = stdenv.lib.licenses.gpl3Plus;
|
||||
};
|
||||
}
|
|
@ -706,6 +706,8 @@ let
|
|||
|
||||
fsfs = callPackage ../tools/filesystems/fsfs { };
|
||||
|
||||
fuse_zip = callPackage ../tools/filesystems/fuse-zip { };
|
||||
|
||||
dos2unix = callPackage ../tools/text/dos2unix { };
|
||||
|
||||
uni2ascii = callPackage ../tools/text/uni2ascii { };
|
||||
|
|
Loading…
Reference in a new issue