mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
dosfstools: 3.0.28 -> 4.1
This commit is contained in:
parent
183279002d
commit
199be99c6f
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue