2010-08-06 19:49:16 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2009-02-08 16:28:12 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-03-08 16:19:19 +00:00
|
|
|
name = "dosfstools-3.0.26";
|
2010-08-06 19:49:16 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-07-18 20:37:59 +01:00
|
|
|
url = "http://daniel-baumann.ch/files/software/dosfstools/${name}.tar.xz";
|
2014-03-08 16:19:19 +00:00
|
|
|
sha256 = "0x9yi6s1419k678pr9h3a5bjccbrcxxpzmjwgl262ffrikz45126";
|
2010-08-06 19:49:16 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
makeFlags = "PREFIX=$(out)";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Utilities for creating and checking FAT and VFAT file systems";
|
2013-12-09 22:51:04 +00:00
|
|
|
repositories.git = git://daniel-baumann.ch/git/software/dosfstools.git;
|
2010-08-06 19:49:16 +01:00
|
|
|
homepage = http://www.daniel-baumann.ch/software/dosfstools/;
|
2010-08-06 19:59:47 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2010-08-06 19:49:16 +01:00
|
|
|
};
|
2009-02-08 16:28:12 +00:00
|
|
|
}
|