summary refs log tree commit diff
path: root/pkgs/tools/filesystems/fuse-exfat/default.nix
blob: ae9f9e32fa887eb3fbf04bf455e564867b76a777 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv, fetchurl, pkgconfig, fuse, scons }:

stdenv.mkDerivation rec {
  name = "fuse-exfat-1.1.0";

  src = fetchurl {
    sha256 = "0glmgwrf0nv09am54i6s35ksbvrywrwc51w6q32mv5by8475530r";
    url = "https://docs.google.com/uc?export=download&id=0B7CLI-REKbE3VTdaa0EzTkhYdU0";
    name = "${name}.tar.gz";
  };

  buildInputs = [ pkgconfig fuse scons ];

  buildPhase = ''
    export CCFLAGS="-O2 -Wall -std=c99 -I${fuse}/include"
    export LDFLAGS="-L${fuse}/lib"
    mkdir -pv $out/sbin
    scons DESTDIR=$out/sbin install
  '';

  installPhase = ":";

  meta = with stdenv.lib; {
    homepage = http://code.google.com/p/exfat/;
    description = "A FUSE-based filesystem that allows read and write access to exFAT devices";
    platforms = with platforms; linux;
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ nckx ];
  };
}