Merge pull request #6502 from ehmry/makebootfat
makebootfat: initial package at version 1.4
This commit is contained in:
commit
c71f19f8c0
18
pkgs/tools/misc/makebootfat/default.nix
Normal file
18
pkgs/tools/misc/makebootfat/default.nix
Normal file
@ -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;
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user