nixpkgs/pkgs/tools/misc/makebootfat/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

19 lines
524 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;
};
}