about summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-03-30 20:55:40 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2016-03-30 20:57:00 +0300
commit71d7eaf55d3d28eb778dcfd3975c4743662c10e9 (patch)
tree7b56ed86d58a72f266e5acb2a3368c9eb0fe8001 /pkgs/tools/filesystems
parenta1cfdb9c88d26f61ea78b2a3801f8b3a94402cab (diff)
downloadnixlib-71d7eaf55d3d28eb778dcfd3975c4743662c10e9.tar
nixlib-71d7eaf55d3d28eb778dcfd3975c4743662c10e9.tar.gz
nixlib-71d7eaf55d3d28eb778dcfd3975c4743662c10e9.tar.bz2
nixlib-71d7eaf55d3d28eb778dcfd3975c4743662c10e9.tar.lz
nixlib-71d7eaf55d3d28eb778dcfd3975c4743662c10e9.tar.xz
nixlib-71d7eaf55d3d28eb778dcfd3975c4743662c10e9.tar.zst
nixlib-71d7eaf55d3d28eb778dcfd3975c4743662c10e9.zip
ntfs-3g: 2015.3.14 -> 2016.2.22; maintain
Also old homepage seems to be in a redirect loop.
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/ntfs-3g/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/filesystems/ntfs-3g/default.nix b/pkgs/tools/filesystems/ntfs-3g/default.nix
index fd714b890546..d5c5456515cb 100644
--- a/pkgs/tools/filesystems/ntfs-3g/default.nix
+++ b/pkgs/tools/filesystems/ntfs-3g/default.nix
@@ -3,7 +3,7 @@
 
 stdenv.mkDerivation rec {
   pname = "ntfs-3g";
-  version = "2015.3.14";
+  version = "2016.2.22";
   name = "${pname}-${version}";
 
   buildInputs = [ libuuid ] ++ stdenv.lib.optionals crypto [ gnutls libgcrypt ];
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
 
   src = fetchurl {
     url = "http://tuxera.com/opensource/ntfs-3g_ntfsprogs-${version}.tgz";
-    sha256 = "1wiqcmy07y02k3iqq56cscnhg5syisbjj9mxfaid85l3bl0rdycp";
+    sha256 = "180y5y09h30ryf2vim8j30a2npwz1iv9ly5yjmh3wjdkwh2jrdyp";
   };
 
   patchPhase = ''
@@ -38,9 +38,9 @@ stdenv.mkDerivation rec {
     '';
 
   meta = with stdenv.lib; {
-    homepage = http://www.tuxera.com/community/;
+    homepage = http://www.tuxera.com/community/open-source-ntfs-3g/;
     description = "FUSE-based NTFS driver with full write support";
-    maintainers = [ maintainers.urkud ];
+    maintainers = with maintainers; [ urkud dezgeg ];
     platforms = platforms.linux;
     license = licenses.gpl2Plus; # and (lib)fuse-lite under LGPL2+
   };