nixpkgs/pkgs/servers/u9fs/default.nix
sternenseemann 086c5106d1 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.
2022-03-22 15:20:05 +01:00

27 lines
689 B
Nix

{ lib, stdenv, fetchFromBitbucket }:
stdenv.mkDerivation {
pname = "u9fs";
version = "unstable-2021-01-25";
src = fetchFromBitbucket {
owner = "plan9-from-bell-labs";
repo = "u9fs";
rev = "d65923fd17e8b158350d3ccd6a4e32b89b15014a";
sha256 = "0h06l7ciikp3gzrr550z0fyrfp3y2067dfd3rxxw0q95z4l6vhy1";
};
installPhase = ''
install -Dm644 u9fs.man "$out/share/man/man4/u9fs.4"
install -Dm755 u9fs -t "$out/bin"
'';
meta = with lib; {
description = "Serve 9P from Unix";
homepage = "http://p9f.org/magic/man2html?man=u9fs&sect=4";
license = licenses.free;
maintainers = [ maintainers.ehmry ];
platforms = platforms.unix;
};
}