unionfs-fuse: 1.0 -> 2.0

authored by Orivej Desh and committed by Franz Pletz d2ff74f9 456c7616

+8 -7
+7 -6
pkgs/tools/filesystems/unionfs-fuse/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 name = "unionfs-fuse-${version}"; 5 - version = "1.0"; 6 7 src = fetchFromGitHub { 8 owner = "rpodgorny"; 9 repo = "unionfs-fuse"; 10 rev = "v${version}"; 11 - sha256 = "0g2hd6yi6v8iqzmgncg1zi9a7ixy9hsh51rzf6jnmzi79543dihf"; 12 }; 13 14 patches = ··· 34 substituteInPlace $out/sbin/mount.unionfs-fuse --replace unionfs $out/bin/unionfs 35 ''; 36 37 - meta = { 38 description = "FUSE UnionFS implementation"; 39 - homepage = http://podgorny.cz/moin/UnionFsFuse; 40 - license = stdenv.lib.licenses.bsd3; 41 - platforms = stdenv.lib.platforms.linux; 42 }; 43 }
··· 2 3 stdenv.mkDerivation rec { 4 name = "unionfs-fuse-${version}"; 5 + version = "2.0"; 6 7 src = fetchFromGitHub { 8 owner = "rpodgorny"; 9 repo = "unionfs-fuse"; 10 rev = "v${version}"; 11 + sha256 = "0lb8zgdxnjy2fjr2284hvdfn7inc1in44ynzgcr66x54bxzvynj6"; 12 }; 13 14 patches = ··· 34 substituteInPlace $out/sbin/mount.unionfs-fuse --replace unionfs $out/bin/unionfs 35 ''; 36 37 + meta = with stdenv.lib; { 38 description = "FUSE UnionFS implementation"; 39 + homepage = https://github.com/rpodgorny/unionfs-fuse; 40 + license = licenses.bsd3; 41 + platforms = platforms.linux; 42 + maintainers = with maintainers; [ orivej ]; 43 }; 44 }
+1 -1
pkgs/top-level/all-packages.nix
··· 1346 1347 unifdef = callPackage ../development/tools/misc/unifdef { }; 1348 1349 - "unionfs-fuse" = callPackage ../tools/filesystems/unionfs-fuse { }; 1350 1351 usb-modeswitch = callPackage ../development/tools/misc/usb-modeswitch { }; 1352 usb-modeswitch-data = callPackage ../development/tools/misc/usb-modeswitch/data.nix { };
··· 1346 1347 unifdef = callPackage ../development/tools/misc/unifdef { }; 1348 1349 + unionfs-fuse = callPackage ../tools/filesystems/unionfs-fuse { }; 1350 1351 usb-modeswitch = callPackage ../development/tools/misc/usb-modeswitch { }; 1352 usb-modeswitch-data = callPackage ../development/tools/misc/usb-modeswitch/data.nix { };