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

23 lines
654 B
Nix
Raw Normal View History

2017-04-10 11:46:40 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig }:
stdenv.mkDerivation rec {
2015-06-19 05:06:59 +00:00
name = "dosfstools-${version}";
2017-04-10 11:46:40 +00:00
version = "4.1";
src = fetchFromGitHub {
owner = "dosfstools";
repo = "dosfstools";
rev = "v${version}";
2017-04-10 11:46:40 +00:00
sha256 = "1a2zn1655d5f1m6jp9vpn3bp8yfxhcmxx3mx23ai9hmxiydiykr1";
};
2017-04-10 11:46:40 +00:00
nativeBuildInputs = [ autoreconfHook pkgconfig ];
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;
};
}