dosfstools: 3.0.28 -> 4.1

This commit is contained in:
Tuomas Tynkkynen 2017-04-10 14:46:40 +03:00
parent 183279002d
commit 199be99c6f

View file

@ -1,17 +1,17 @@
{ stdenv, fetchFromGitHub }:
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig }:
stdenv.mkDerivation rec {
name = "dosfstools-${version}";
version = "3.0.28";
version = "4.1";
src = fetchFromGitHub {
owner = "dosfstools";
repo = "dosfstools";
rev = "v${version}";
sha256 = "0lqirpxcn8ml0anq8aqmaljfsji9h6mdzz0jrs0yqqfhgg90bkg2";
sha256 = "1a2zn1655d5f1m6jp9vpn3bp8yfxhcmxx3mx23ai9hmxiydiykr1";
};
makeFlags = "PREFIX=$(out)";
nativeBuildInputs = [ autoreconfHook pkgconfig ];
meta = {
description = "Utilities for creating and checking FAT and VFAT file systems";