depot/third_party/nixpkgs/pkgs/tools/misc/makebootfat/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

18 lines
526 B
Nix

{ 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;
};
}