summary refs log tree commit diff
path: root/pkgs/tools/filesystems/dosfstools/default.nix
blob: b9f1010591861a1370687e685ba1efe19b906886 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "dosfstools-3.0.24";

  src = fetchurl {
    url = "http://daniel-baumann.ch/files/software/dosfstools/${name}.tar.xz";
    sha256 = "1hblhb98wm9gm60y32psdqm5jprs4a6dqzrapzgb6bw7r3kvf88y";
  };

  makeFlags = "PREFIX=$(out)";

  meta = {
    description = "Utilities for creating and checking FAT and VFAT file systems";
    repositories.git = git://daniel-baumann.ch/git/software/dosfstools.git;
    homepage = http://www.daniel-baumann.ch/software/dosfstools/;
    platforms = stdenv.lib.platforms.linux;
  };
}