1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "makebootfat-1.4";
5
6 src = fetchurl {
7 url = "mirror://sourceforge/advancemame/${name}.tar.gz";
8 sha256 = "0v0g1xax0y6hmw2x10nfhchp9n7vqyvgc33gcxqax8jdq2pxm1q2";
9 };
10
11 meta = with stdenv.lib; {
12 description = "Create bootable USB disks using the FAT filesystem and syslinux";
13 homepage = http://advancemame.sourceforge.net/boot-readme.html;
14 license = licenses.gpl2;
15 maintainers = [ maintainers.ehmry ];
16 platforms = platforms.linux;
17 };
18}