Skip to content

Commit d2ff74f

Browse files
orivejfpletz
authored andcommittedJul 10, 2017
unionfs-fuse: 1.0 -> 2.0
1 parent 456c761 commit d2ff74f

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed
 

‎pkgs/tools/filesystems/unionfs-fuse/default.nix

+7-6
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
stdenv.mkDerivation rec {
44
name = "unionfs-fuse-${version}";
5-
version = "1.0";
5+
version = "2.0";
66

77
src = fetchFromGitHub {
88
owner = "rpodgorny";
99
repo = "unionfs-fuse";
1010
rev = "v${version}";
11-
sha256 = "0g2hd6yi6v8iqzmgncg1zi9a7ixy9hsh51rzf6jnmzi79543dihf";
11+
sha256 = "0lb8zgdxnjy2fjr2284hvdfn7inc1in44ynzgcr66x54bxzvynj6";
1212
};
1313

1414
patches =
@@ -34,10 +34,11 @@ stdenv.mkDerivation rec {
3434
substituteInPlace $out/sbin/mount.unionfs-fuse --replace unionfs $out/bin/unionfs
3535
'';
3636

37-
meta = {
37+
meta = with stdenv.lib; {
3838
description = "FUSE UnionFS implementation";
39-
homepage = http://podgorny.cz/moin/UnionFsFuse;
40-
license = stdenv.lib.licenses.bsd3;
41-
platforms = stdenv.lib.platforms.linux;
39+
homepage = https://github.com/rpodgorny/unionfs-fuse;
40+
license = licenses.bsd3;
41+
platforms = platforms.linux;
42+
maintainers = with maintainers; [ orivej ];
4243
};
4344
}

‎pkgs/top-level/all-packages.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -1346,7 +1346,7 @@ with pkgs;
13461346

13471347
unifdef = callPackage ../development/tools/misc/unifdef { };
13481348

1349-
"unionfs-fuse" = callPackage ../tools/filesystems/unionfs-fuse { };
1349+
unionfs-fuse = callPackage ../tools/filesystems/unionfs-fuse { };
13501350

13511351
usb-modeswitch = callPackage ../development/tools/misc/usb-modeswitch { };
13521352
usb-modeswitch-data = callPackage ../development/tools/misc/usb-modeswitch/data.nix { };

0 commit comments

Comments
 (0)
Please sign in to comment.