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:
parent
49de0c32bd
commit
346482c8d5
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
|||||||
url = "https://github.com/dosfstools/dosfstools/releases/download/v${version}/${name}.tar.xz";
|
url = "https://github.com/dosfstools/dosfstools/releases/download/v${version}/${name}.tar.xz";
|
||||||
};
|
};
|
||||||
|
|
||||||
makeFlags = "PREFIX=$(out)";
|
configureFlags = [ "--enable-compat-symlinks" ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Utilities for creating and checking FAT and VFAT file systems";
|
description = "Utilities for creating and checking FAT and VFAT file systems";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user