From 3ea2b48fe62abfde5453bd47ae4309abf6e96bdb Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 26 Jan 2015 04:43:55 +0100 Subject: [PATCH] Update fuse-exfat 1.0.1 -> 1.1.0 --- pkgs/tools/filesystems/fuse-exfat/default.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/filesystems/fuse-exfat/default.nix b/pkgs/tools/filesystems/fuse-exfat/default.nix index 093b01bb1417..983228e9de51 100644 --- a/pkgs/tools/filesystems/fuse-exfat/default.nix +++ b/pkgs/tools/filesystems/fuse-exfat/default.nix @@ -1,11 +1,12 @@ { stdenv, fetchurl, pkgconfig, fuse, scons }: stdenv.mkDerivation rec { - name = "fuse-exfat-1.0.1"; + name = "fuse-exfat-1.1.0"; src = fetchurl { - url = "http://exfat.googlecode.com/files/${name}.tar.gz"; - sha256 = "0n27hpi45lj9hpi7k8d7npiwyhasf1v832g7ckpknd6lnyhipb0j"; + sha256 = "0glmgwrf0nv09am54i6s35ksbvrywrwc51w6q32mv5by8475530r"; + url = "https://docs.google.com/uc?export=download&id=0B7CLI-REKbE3VTdaa0EzTkhYdU0"; + name = "${name}.tar.gz"; }; buildInputs = [ pkgconfig fuse scons ]; @@ -19,11 +20,12 @@ stdenv.mkDerivation rec { installPhase = ":"; - meta = { + 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 = stdenv.lib.platforms.linux; - license = stdenv.lib.licenses.gpl2; + platforms = with platforms; linux; + license = with licenses; gpl2Plus; + maintainers = with maintainers; [ nckx ]; }; }