summary refs log tree commit diff
path: root/pkgs/tools/filesystems/unionfs-fuse/default.nix
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-07-10 00:05:27 +0000
committerFranz Pletz <fpletz@fnordicwalking.de>2017-07-10 02:56:25 +0200
commitd2ff74f9dde46dd63b475986de935d0986d82988 (patch)
treeb62ed6d058aa660f77b08c17bbe0e86503a9fbf8 /pkgs/tools/filesystems/unionfs-fuse/default.nix
parent456c76169d57919cae92f0bb5314dfd3c12417e1 (diff)
downloadnixpkgs-d2ff74f9dde46dd63b475986de935d0986d82988.tar
nixpkgs-d2ff74f9dde46dd63b475986de935d0986d82988.tar.gz
nixpkgs-d2ff74f9dde46dd63b475986de935d0986d82988.tar.bz2
nixpkgs-d2ff74f9dde46dd63b475986de935d0986d82988.tar.lz
nixpkgs-d2ff74f9dde46dd63b475986de935d0986d82988.tar.xz
nixpkgs-d2ff74f9dde46dd63b475986de935d0986d82988.tar.zst
nixpkgs-d2ff74f9dde46dd63b475986de935d0986d82988.zip
unionfs-fuse: 1.0 -> 2.0
Diffstat (limited to 'pkgs/tools/filesystems/unionfs-fuse/default.nix')
-rw-r--r--pkgs/tools/filesystems/unionfs-fuse/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/tools/filesystems/unionfs-fuse/default.nix b/pkgs/tools/filesystems/unionfs-fuse/default.nix
index b7d7a07a084..cfe3ff421fe 100644
--- a/pkgs/tools/filesystems/unionfs-fuse/default.nix
+++ b/pkgs/tools/filesystems/unionfs-fuse/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   name = "unionfs-fuse-${version}";
-  version = "1.0";
+  version = "2.0";
 
   src = fetchFromGitHub {
     owner = "rpodgorny";
     repo = "unionfs-fuse";
     rev = "v${version}";
-    sha256 = "0g2hd6yi6v8iqzmgncg1zi9a7ixy9hsh51rzf6jnmzi79543dihf";
+    sha256 = "0lb8zgdxnjy2fjr2284hvdfn7inc1in44ynzgcr66x54bxzvynj6";
   };
 
   patches =
@@ -34,10 +34,11 @@ stdenv.mkDerivation rec {
     substituteInPlace $out/sbin/mount.unionfs-fuse --replace unionfs $out/bin/unionfs
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "FUSE UnionFS implementation";
-    homepage = http://podgorny.cz/moin/UnionFsFuse;
-    license = stdenv.lib.licenses.bsd3;
-    platforms = stdenv.lib.platforms.linux;
+    homepage = https://github.com/rpodgorny/unionfs-fuse;
+    license = licenses.bsd3;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ orivej ];
   };
 }