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