From 346482c8d586de299ff8f457d69653917a4d62e2 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Tue, 10 May 2016 07:34:28 +0300 Subject: [PATCH] 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). --- pkgs/tools/filesystems/dosfstools/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/filesystems/dosfstools/default.nix b/pkgs/tools/filesystems/dosfstools/default.nix index 5544157ecf37..c2691491ba3e 100644 --- a/pkgs/tools/filesystems/dosfstools/default.nix +++ b/pkgs/tools/filesystems/dosfstools/default.nix @@ -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";