2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchhg }:
|
2015-02-22 03:56:50 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2020-11-22 10:19:25 +01:00
|
|
|
pname = "u9fs";
|
|
|
|
version = "unstable-2020-11-21";
|
|
|
|
|
2015-02-22 03:56:50 +01:00
|
|
|
src = fetchhg {
|
2020-11-22 10:19:25 +01:00
|
|
|
url = "https://code.9front.org/hg/plan9front";
|
|
|
|
rev = "6eef4d6a9bce";
|
2015-02-22 03:56:50 +01:00
|
|
|
sha256 = "0irwyk8vnvx0fmz8lmbdb2jrlvas8imr61jr76a1pkwi9wpf2wv6";
|
|
|
|
};
|
|
|
|
|
2020-11-22 10:19:25 +01:00
|
|
|
installPhase = ''
|
2015-02-22 03:56:50 +01:00
|
|
|
mkdir -p $out/bin $out/share/man4
|
2020-11-22 10:19:25 +01:00
|
|
|
cp u9fs.man $out/share/man4
|
|
|
|
cp u9fs $out/bin
|
2015-02-22 03:56:50 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-11-22 10:19:25 +01:00
|
|
|
description = "Serve 9P from Unix";
|
|
|
|
homepage = "http://plan9.bell-labs.com/magic/man2html/4/u9fs";
|
|
|
|
license = licenses.free;
|
|
|
|
maintainers = [ maintainers.ehmry ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2015-02-22 03:56:50 +01:00
|
|
|
}
|