summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-09-11 22:31:16 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-09-11 22:39:54 +0200
commitc92ac3b1d6549774617b8b4f61f69726b205dda0 (patch)
tree9fc8658ef53aa4a52efeba72a78ddccafd6d50f5 /pkgs/tools/filesystems
parent3c47829cb530bbfdcfcf1e1a71dd7cf14bdb3598 (diff)
downloadnixpkgs-c92ac3b1d6549774617b8b4f61f69726b205dda0.tar
nixpkgs-c92ac3b1d6549774617b8b4f61f69726b205dda0.tar.gz
nixpkgs-c92ac3b1d6549774617b8b4f61f69726b205dda0.tar.bz2
nixpkgs-c92ac3b1d6549774617b8b4f61f69726b205dda0.tar.lz
nixpkgs-c92ac3b1d6549774617b8b4f61f69726b205dda0.tar.xz
nixpkgs-c92ac3b1d6549774617b8b4f61f69726b205dda0.tar.zst
nixpkgs-c92ac3b1d6549774617b8b4f61f69726b205dda0.zip
exfat-{fuse,utils}: merge
Both packages have been merged as https://github.com/relan/exfat.
Follow suit.
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/exfat-utils/default.nix34
-rw-r--r--pkgs/tools/filesystems/exfat/default.nix (renamed from pkgs/tools/filesystems/exfat-fuse/default.nix)8
2 files changed, 4 insertions, 38 deletions
diff --git a/pkgs/tools/filesystems/exfat-utils/default.nix b/pkgs/tools/filesystems/exfat-utils/default.nix
deleted file mode 100644
index eb7977c71a3..00000000000
--- a/pkgs/tools/filesystems/exfat-utils/default.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ 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 = licenses.gpl2Plus;
-    platforms = with platforms; linux;
-    maintainers = with maintainers; [ nckx ];
-  };
-
-  nativeBuildInputs = [ scons ];
-
-  buildPhase = ''
-    export CCFLAGS="-std=c99"
-    mkdir -pv $out/sbin
-    scons DESTDIR=$out/sbin install
-  '';
-
-  installPhase = ":";
-}
diff --git a/pkgs/tools/filesystems/exfat-fuse/default.nix b/pkgs/tools/filesystems/exfat/default.nix
index d2a18e41b0e..a0a4223731c 100644
--- a/pkgs/tools/filesystems/exfat-fuse/default.nix
+++ b/pkgs/tools/filesystems/exfat/default.nix
@@ -1,8 +1,8 @@
 { stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, fuse }:
 
 let version = "1.2.0"; in
-stdenv.mkDerivation {
-  name = "exfat-fuse-${version}";
+stdenv.mkDerivation rec {
+  name = "exfat-${version}";
 
   src = fetchFromGitHub {
     sha256 = "1fsm082g8phqcdg5md6yll06jijnbvqrdy0638psa8kr159h4dv8";
@@ -16,8 +16,8 @@ stdenv.mkDerivation {
 
   meta = with stdenv.lib; {
     inherit version;
-    homepage = https://github.com/relan/exfat;
-    description = "A FUSE file system to read and write to exFAT devices";
+    inherit (src.meta) homepage;
+    description = "Free exFAT file system implementation";
     platforms = platforms.linux;
     license = licenses.gpl2Plus;
     maintainers = with maintainers; [ nckx ];