summary refs log tree commit diff
path: root/pkgs/tools/misc/makebootfat/default.nix
blob: e23e12bcb307b50fa39ab48fb82aa34abd5257d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "makebootfat-1.4";

  src = fetchurl {
    url = "mirror://sourceforge/advancemame/${name}.tar.gz";
    sha256 = "0v0g1xax0y6hmw2x10nfhchp9n7vqyvgc33gcxqax8jdq2pxm1q2";
  };

  meta = with stdenv.lib; {
    description = "Create bootable USB disks using the FAT filesystem and syslinux";
    homepage = http://advancemame.sourceforge.net/boot-readme.html;
    license = licenses.gpl2;
    maintainers = [ maintainers.ehmry ];
    platforms = platforms.linux;
  };
}