Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
558 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchurl,
}:
stdenv.mkDerivation rec {
pname = "makebootfat";
version = "1.4";
src = fetchurl {
url = "mirror://sourceforge/advancemame/makebootfat-${version}.tar.gz";
sha256 = "0v0g1xax0y6hmw2x10nfhchp9n7vqyvgc33gcxqax8jdq2pxm1q2";
};
meta = with lib; {
description = "Create bootable USB disks using the FAT filesystem and syslinux";
homepage = "http://advancemame.sourceforge.net/boot-readme.html";
license = licenses.gpl2Plus;
platforms = platforms.linux;
mainProgram = "makebootfat";
};
}