lol
at release-16.03-start 19 lines 560 B view raw
1{ stdenv, fetchurl, pkgconfig, fuse, zlib, glib }: 2 3stdenv.mkDerivation rec { 4 name = "fuseiso-20070708"; 5 6 src = fetchurl { 7 url = "http://sourceforge.net/projects/fuseiso/files/fuseiso/20070708/fuseiso-20070708.tar.bz2"; 8 sha1 = "fe142556ad35dd7e5dc31a16183232a6e2da7692"; 9 }; 10 11 buildInputs = [ pkgconfig fuse zlib glib ]; 12 13 meta = { 14 homepage = http://sourceforge.net/projects/fuseiso; 15 description = "FUSE module to mount ISO filesystem images"; 16 platforms = stdenv.lib.platforms.linux; 17 license = stdenv.lib.licenses.gpl2; 18 }; 19}