mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #10462 from igsha/fuse-7z-ng
fuse-7z-ng: init at git-2014-06-08
This commit is contained in:
commit
9dc707bc16
2 changed files with 36 additions and 0 deletions
34
pkgs/tools/filesystems/fuse-7z-ng/default.nix
Normal file
34
pkgs/tools/filesystems/fuse-7z-ng/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{ stdenv, fetchFromGitHub, fuse, p7zip, autoconf, automake, pkgconfig, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "fuse-7z-ng";
|
||||
version = "git-2014-06-08";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kedazo";
|
||||
repo = pname;
|
||||
rev = "eb5efb1f304c2b7bc2e0389ba06c9bf2ac4b932c";
|
||||
sha256 = "17v1gcmg5q661b047zxjar735i4d3508dimw1x3z1pk4d1zjhp3x";
|
||||
};
|
||||
|
||||
buildInputs = [ fuse autoconf automake pkgconfig makeWrapper ];
|
||||
|
||||
preConfigure = "./autogen.sh";
|
||||
|
||||
libs = stdenv.lib.makeLibraryPath [ p7zip ]; # 'cause 7z.so is loaded manually
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/${pname} --suffix LD_LIBRARY_PATH : "${libs}/p7zip"
|
||||
|
||||
mkdir -p $out/share/doc/${pname}
|
||||
cp TODO README NEWS COPYING ChangeLog AUTHORS $out/share/doc/${pname}/
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
inherit version;
|
||||
inherit (src.homepage);
|
||||
description = "A FUSE-based filesystem that uses the p7zip library";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.gpl3Plus;
|
||||
};
|
||||
}
|
|
@ -1538,6 +1538,8 @@ let
|
|||
|
||||
fuseiso = callPackage ../tools/filesystems/fuseiso { };
|
||||
|
||||
fuse-7z-ng = callPackage ../tools/filesystems/fuse-7z-ng { };
|
||||
|
||||
fuse_zip = callPackage ../tools/filesystems/fuse-zip { };
|
||||
|
||||
exfat = callPackage ../tools/filesystems/exfat { };
|
||||
|
|
Loading…
Reference in a new issue