forked from mirrors/nixpkgs
Merge pull request #5973 from nckx/add-exfat-utils
Add exfat-utils 1.1.1: free exFAT file system utilities
This commit is contained in:
commit
79d5d95a53
34
pkgs/tools/filesystems/exfat-utils/default.nix
Normal file
34
pkgs/tools/filesystems/exfat-utils/default.nix
Normal 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 = ":";
|
||||
}
|
|
@ -1157,6 +1157,8 @@ let
|
|||
|
||||
exercism = callPackage ../development/tools/exercism { };
|
||||
|
||||
exfat-utils = callPackage ../tools/filesystems/exfat-utils { };
|
||||
|
||||
exif = callPackage ../tools/graphics/exif { };
|
||||
|
||||
exiftags = callPackage ../tools/graphics/exiftags { };
|
||||
|
|
Loading…
Reference in a new issue