mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Merge pull request #9565 from nbarbey/fuseiso
fuseiso: init at 20070708
This commit is contained in:
commit
167f1891c3
19
pkgs/tools/filesystems/fuseiso/default.nix
Normal file
19
pkgs/tools/filesystems/fuseiso/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ stdenv, fetchurl, pkgconfig, fuse, zlib, glib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "fuseiso-20070708";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://sourceforge.net/projects/fuseiso/files/fuseiso/20070708/fuseiso-20070708.tar.bz2";
|
||||
sha1 = "fe142556ad35dd7e5dc31a16183232a6e2da7692";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig fuse zlib glib ];
|
||||
|
||||
meta = {
|
||||
homepage = http://sourceforge.net/projects/fuseiso;
|
||||
description = "FUSE module to mount ISO filesystem images";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
};
|
||||
}
|
@ -1574,6 +1574,8 @@ let
|
||||
|
||||
fsfs = callPackage ../tools/filesystems/fsfs { };
|
||||
|
||||
fuseiso = callPackage ../tools/filesystems/fuseiso { };
|
||||
|
||||
fuse_zip = callPackage ../tools/filesystems/fuse-zip { };
|
||||
|
||||
fuse_exfat = callPackage ../tools/filesystems/fuse-exfat { };
|
||||
|
Loading…
Reference in New Issue
Block a user