about summary refs log tree commit diff
path: root/pkgs/tools/filesystems/ntfs-3g
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-08-16 18:47:20 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-08-16 18:47:20 +0200
commit44a0db4f0f49197e761bbe4eb09ebcc9910eef54 (patch)
tree4ebe49aa1c5b918ae86aa9735b68c111db2b5916 /pkgs/tools/filesystems/ntfs-3g
parente54db9a99a9526ab09624da02549463d7a4235c3 (diff)
downloadnixlib-44a0db4f0f49197e761bbe4eb09ebcc9910eef54.tar
nixlib-44a0db4f0f49197e761bbe4eb09ebcc9910eef54.tar.gz
nixlib-44a0db4f0f49197e761bbe4eb09ebcc9910eef54.tar.bz2
nixlib-44a0db4f0f49197e761bbe4eb09ebcc9910eef54.tar.lz
nixlib-44a0db4f0f49197e761bbe4eb09ebcc9910eef54.tar.xz
nixlib-44a0db4f0f49197e761bbe4eb09ebcc9910eef54.tar.zst
nixlib-44a0db4f0f49197e761bbe4eb09ebcc9910eef54.zip
ntfs3g: update to latest stable (2-year bump)
Diffstat (limited to 'pkgs/tools/filesystems/ntfs-3g')
-rw-r--r--pkgs/tools/filesystems/ntfs-3g/default.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/tools/filesystems/ntfs-3g/default.nix b/pkgs/tools/filesystems/ntfs-3g/default.nix
index f6177fd89764..718e941ec648 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 = "2012.1.15";
+  version = "2014.2.15";
   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 = "09gvfgvqm4dswzxmwvg3r23bv39cp8y8b6qs2jcwmrqd032i25kg";
+    sha256 = "0mjv98m2j0kdzkjiqd2ra1akhb8milx8nwcx7hd26jxi1i09jc2c";
   };
 
   patchPhase = ''
@@ -34,10 +34,12 @@ stdenv.mkDerivation rec {
       ln -sv mount.ntfs-3g $out/sbin/mount.ntfs
     '';
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = http://www.tuxera.com/community/;
     description = "FUSE-base NTFS driver with full write support";
-    maintainers = [ stdenv.lib.maintainers.urkud ];
-    platforms = stdenv.lib.platforms.linux;
+    maintainers = [ maintainers.urkud ];
+    platforms = platforms.linux;
+    license = licenses.gpl2Plus; # and (lib)fuse-lite under LGPL2+
   };
 }
+