mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
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";
|
||||
};
|
||||
|
||||
makeFlags = "PREFIX=$(out)";
|
||||
configureFlags = [ "--enable-compat-symlinks" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Utilities for creating and checking FAT and VFAT file systems";
|
||||
|
Loading…
Reference in New Issue
Block a user