dosfstools: Enable compat symlinks

Create these symlinks, since NixOS (and other users) can still be using
the old names:
    dosfsck -> fsck.fat
    dosfslabel -> fatlabel
    fsck.msdos -> fsck.fat
    fsck.vfat -> fsck.fat
    mkdosfs -> mkfs.fat
    mkfs.msdos -> mkfs.fat
    mkfs.vfat -> mkfs.fat

While at it, kill the makeFlags which seems unnecessary as it seems
to use a standard Autotools build (maybe this is a new thing).
This commit is contained in:
Tuomas Tynkkynen 2016-05-10 07:34:28 +03:00
parent 49de0c32bd
commit 346482c8d5

View File

@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
url = "https://github.com/dosfstools/dosfstools/releases/download/v${version}/${name}.tar.xz";
};
makeFlags = "PREFIX=$(out)";
configureFlags = [ "--enable-compat-symlinks" ];
meta = with stdenv.lib; {
description = "Utilities for creating and checking FAT and VFAT file systems";