Skip to content

Commit

Permalink
Merge pull request #6502 from ehmry/makebootfat
Browse files Browse the repository at this point in the history
makebootfat: initial package at version 1.4
  • Loading branch information
jagajaga committed Feb 21, 2015
2 parents 890b4e4 + 142a5ce commit c71f19f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
18 changes: 18 additions & 0 deletions pkgs/tools/misc/makebootfat/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{ 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.emery ];
platforms = platforms.linux;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1704,6 +1704,8 @@ let

kzipmix = callPackage_i686 ../tools/compression/kzipmix { };

makebootfat = callPackage ../tools/misc/makebootfat { };

minidlna = callPackage ../tools/networking/minidlna {
ffmpeg = ffmpeg_0_10;
};
Expand Down

0 comments on commit c71f19f

Please sign in to comment.