Files
quantenzitrone 6b61249106 various: switch to finalAttrs pattern
this shouldn't create any rebuilds
2026-01-30 02:36:22 +01:00

24 lines
577 B
Nix

{
lib,
stdenv,
fetchurl,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "makebootfat";
version = "1.4";
src = fetchurl {
url = "mirror://sourceforge/advancemame/makebootfat-${finalAttrs.version}.tar.gz";
sha256 = "0v0g1xax0y6hmw2x10nfhchp9n7vqyvgc33gcxqax8jdq2pxm1q2";
};
meta = {
description = "Create bootable USB disks using the FAT filesystem and syslinux";
homepage = "http://advancemame.sourceforge.net/boot-readme.html";
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux;
mainProgram = "makebootfat";
};
})