2010-08-06 20:49:16 +02:00
|
|
|
{ stdenv, fetchurl }:
|
2009-02-08 17:28:12 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-08-30 20:25:07 +02:00
|
|
|
name = "dosfstools-3.0.11";
|
2010-08-06 20:49:16 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-08-06 20:59:47 +02:00
|
|
|
url = "http://www.daniel-baumann.ch/software/dosfstools/${name}.tar.bz2";
|
2011-08-30 20:25:07 +02:00
|
|
|
sha256 = "1a6rzjy82f6579ywaln33g1wc7k8gbgjdss9q2q8daplac7pmcll";
|
2010-08-06 20:49:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
makeFlags = "PREFIX=$(out)";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Utilities for creating and checking FAT and VFAT file systems";
|
|
|
|
homepage = http://www.daniel-baumann.ch/software/dosfstools/;
|
2010-08-06 20:59:47 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2010-08-06 20:49:16 +02:00
|
|
|
};
|
2009-02-08 17:28:12 +01:00
|
|
|
}
|