u9fs: unstable-2020-11-21 -> unstable-2021-25

* Use new (?) upstream over disappeared 9front hg repo, see also
https://www.mail-archive.com/9fans@9fans.net/msg39324.html

* Link to Plan 9 Foundation's man page viewer as the Bell Labs has gone
offine.

+8 -7
+8 -7
pkgs/servers/u9fs/default.nix
··· 1 - { lib, stdenv, fetchhg }: 2 3 stdenv.mkDerivation { 4 pname = "u9fs"; 5 - version = "unstable-2020-11-21"; 6 7 - src = fetchhg { 8 - url = "https://code.9front.org/hg/plan9front"; 9 - rev = "6eef4d6a9bce"; 10 - sha256 = "0irwyk8vnvx0fmz8lmbdb2jrlvas8imr61jr76a1pkwi9wpf2wv6"; 11 }; 12 13 installPhase = '' ··· 17 18 meta = with lib; { 19 description = "Serve 9P from Unix"; 20 - homepage = "http://plan9.bell-labs.com/magic/man2html/4/u9fs"; 21 license = licenses.free; 22 maintainers = [ maintainers.ehmry ]; 23 platforms = platforms.unix;
··· 1 + { lib, stdenv, fetchFromBitbucket }: 2 3 stdenv.mkDerivation { 4 pname = "u9fs"; 5 + version = "unstable-2021-01-25"; 6 7 + src = fetchFromBitbucket { 8 + owner = "plan9-from-bell-labs"; 9 + repo = "u9fs"; 10 + rev = "d65923fd17e8b158350d3ccd6a4e32b89b15014a"; 11 + sha256 = "0h06l7ciikp3gzrr550z0fyrfp3y2067dfd3rxxw0q95z4l6vhy1"; 12 }; 13 14 installPhase = '' ··· 18 19 meta = with lib; { 20 description = "Serve 9P from Unix"; 21 + homepage = "http://p9f.org/magic/man2html?man=u9fs&sect=4"; 22 license = licenses.free; 23 maintainers = [ maintainers.ehmry ]; 24 platforms = platforms.unix;