2016-05-09 02:56:10 +02:00
|
|
|
{ stdenv, fetchurl }:
|
2009-02-08 17:28:12 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-06-19 07:06:59 +02:00
|
|
|
name = "dosfstools-${version}";
|
2016-05-09 02:56:10 +02:00
|
|
|
version = "4.0";
|
2010-08-06 20:49:16 +02:00
|
|
|
|
2016-05-09 02:56:10 +02:00
|
|
|
src = fetchurl {
|
|
|
|
sha256 = "1bvxbv1w6vhbx0nx7ygp700wq5k2hjv0hm7w0kz1x7amaf4p6dwh";
|
|
|
|
url = "https://github.com/dosfstools/dosfstools/releases/download/v${version}/${name}.tar.xz";
|
2010-08-06 20:49:16 +02:00
|
|
|
};
|
|
|
|
|
2016-05-10 06:34:28 +02:00
|
|
|
configureFlags = [ "--enable-compat-symlinks" ];
|
2010-08-06 20:49:16 +02:00
|
|
|
|
2016-05-09 02:56:10 +02:00
|
|
|
meta = with stdenv.lib; {
|
2010-08-06 20:49:16 +02:00
|
|
|
description = "Utilities for creating and checking FAT and VFAT file systems";
|
|
|
|
homepage = http://www.daniel-baumann.ch/software/dosfstools/;
|
2016-05-09 02:56:10 +02:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ nckx ];
|
2010-08-06 20:49:16 +02:00
|
|
|
};
|
2009-02-08 17:28:12 +01:00
|
|
|
}
|