mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
2b6dcdfcd0
Communication happens on Github so names should be consistent.
25 lines
624 B
Nix
25 lines
624 B
Nix
{ stdenv, fetchhg }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "u9fs-20110513";
|
|
src = fetchhg {
|
|
url = http://bitbucket.org/plan9-from-bell-labs/u9fs;
|
|
rev = "9474edb23b11";
|
|
sha256 = "0irwyk8vnvx0fmz8lmbdb2jrlvas8imr61jr76a1pkwi9wpf2wv6";
|
|
};
|
|
|
|
installPhase =
|
|
''
|
|
mkdir -p $out/bin $out/share/man4
|
|
cp u9fs $out/bin; cp u9fs.man $out/share/man4
|
|
'';
|
|
|
|
meta = with stdenv.lib;
|
|
{ description = "Serve 9P from Unix";
|
|
homepage = http://plan9.bell-labs.com/magic/man2html/4/u9fs;
|
|
license = licenses.free;
|
|
maintainers = [ maintainers.ehmry ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|