nixpkgs/pkgs/tools/filesystems/dosfstools/default.nix

22 lines
644 B
Nix
Raw Normal View History

2016-05-09 02:56:10 +02:00
{ stdenv, fetchurl }:
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";
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";
};
configureFlags = [ "--enable-compat-symlinks" ];
2016-05-09 02:56:10 +02:00
meta = with stdenv.lib; {
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 ];
};
}