Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at python-updates 24 lines 599 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5}: 6 7stdenv.mkDerivation rec { 8 pname = "makebootfat"; 9 version = "1.4"; 10 11 src = fetchurl { 12 url = "mirror://sourceforge/advancemame/makebootfat-${version}.tar.gz"; 13 sha256 = "0v0g1xax0y6hmw2x10nfhchp9n7vqyvgc33gcxqax8jdq2pxm1q2"; 14 }; 15 16 meta = with lib; { 17 description = "Create bootable USB disks using the FAT filesystem and syslinux"; 18 homepage = "http://advancemame.sourceforge.net/boot-readme.html"; 19 license = licenses.gpl2Plus; 20 maintainers = [ maintainers.ehmry ]; 21 platforms = platforms.linux; 22 mainProgram = "makebootfat"; 23 }; 24}