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