2022-03-17 22:22:35 +03:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libiconv, gettext, xxd }:
|
2009-02-08 19:28:12 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "dosfstools";
|
2022-03-17 22:22:35 +03:00
|
|
|
version = "4.2";
|
2010-08-06 22:49:16 +04:00
|
|
|
|
2016-05-12 11:23:13 +03:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dosfstools";
|
|
|
|
repo = "dosfstools";
|
|
|
|
rev = "v${version}";
|
2022-03-17 22:22:35 +03:00
|
|
|
sha256 = "sha256-2gxB0lQixiHOHw8uTetHekaM57fvUd9zOzSxWnvUz/c=";
|
2010-08-06 22:49:16 +04:00
|
|
|
};
|
|
|
|
|
2021-01-17 12:17:16 +03:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ]
|
2021-01-15 12:19:50 +03:00
|
|
|
++ lib.optional stdenv.isDarwin libiconv;
|
2010-08-06 22:49:16 +04:00
|
|
|
|
2022-03-17 22:22:35 +03:00
|
|
|
# configure.ac:75: error: required file './config.rpath' not found
|
|
|
|
# https://github.com/dosfstools/dosfstools/blob/master/autogen.sh
|
|
|
|
postPatch = ''
|
|
|
|
cp ${gettext}/share/gettext/config.rpath config.rpath
|
|
|
|
'';
|
|
|
|
|
2017-04-11 04:45:33 +03:00
|
|
|
configureFlags = [ "--enable-compat-symlinks" ];
|
|
|
|
|
2022-03-17 22:22:35 +03:00
|
|
|
checkInputs = [ xxd ];
|
|
|
|
doCheck = true;
|
|
|
|
|
2016-05-12 11:23:13 +03:00
|
|
|
meta = {
|
2010-08-06 22:49:16 +04:00
|
|
|
description = "Utilities for creating and checking FAT and VFAT file systems";
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "https://github.com/dosfstools/dosfstools";
|
2021-01-15 16:21:58 +03:00
|
|
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
2021-01-15 12:19:50 +03:00
|
|
|
license = lib.licenses.gpl3;
|
2010-08-06 22:49:16 +04:00
|
|
|
};
|
2009-02-08 19:28:12 +03:00
|
|
|
}
|