Add exfat-utils 1.1.1: free exFAT file system utilities

This commit is contained in:
Tobias Geerinckx-Rice 2015-01-26 04:24:15 +01:00
parent 61816b06e7
commit 65c21a71bb
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ stdenv, fetchurl, scons }:
let version = "1.1.1"; in
stdenv.mkDerivation rec {
name = "exfat-utils-${version}";
src = fetchurl {
sha256 = "0ck2snhlhp965bb9a4y1g2lpl979sw1yznm79wbavyv174458i66";
url = "https://docs.google.com/uc?export=download&id=0B7CLI-REKbE3UzNtSkRvdHBpdjQ";
name = "${name}.tar.gz";
};
meta = with stdenv.lib; {
description = "Free exFAT file system utilities";
longDescription = ''
Full-featured exFAT file system implementation for GNU/Linux and other
Unix-like systems.
'';
homepage = https://code.google.com/p/exfat;
license = with licenses; gpl2Plus;
platforms = with platforms; linux;
maintainers = with maintainers; [ nckx ];
};
buildInputs = [ scons ];
buildPhase = ''
export CCFLAGS="-std=c99"
mkdir -pv $out/sbin
scons DESTDIR=$out/sbin install
'';
installPhase = ":";
}

View File

@ -1153,6 +1153,8 @@ let
exercism = callPackage ../development/tools/exercism { };
exfat-utils = callPackage ../tools/filesystems/exfat-utils { };
exif = callPackage ../tools/graphics/exif { };
exiftags = callPackage ../tools/graphics/exiftags { };