* 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
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 { };
|
fsfs = callPackage ../tools/filesystems/fsfs { };
|
||||||
|
|
||||||
|
fuse_zip = callPackage ../tools/filesystems/fuse-zip { };
|
||||||
|
|
||||||
dos2unix = callPackage ../tools/text/dos2unix { };
|
dos2unix = callPackage ../tools/text/dos2unix { };
|
||||||
|
|
||||||
uni2ascii = callPackage ../tools/text/uni2ascii { };
|
uni2ascii = callPackage ../tools/text/uni2ascii { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user