summary refs log tree commit diff
path: root/pkgs/tools/filesystems/fuseiso/default.nix
blob: 161425ad137bc825b6dc7d6b0e4590a2e6b7a6f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
  };
}