nixpkgs/pkgs/tools/filesystems/9pfs/default.nix

36 lines
982 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, fuse }:
2019-08-14 00:52:01 +03:00
stdenv.mkDerivation {
2018-05-24 06:05:53 +03:00
name = "9pfs-20150918";
src = fetchFromGitHub {
owner = "mischief";
repo = "9pfs";
rev = "7f4ca4cd750d650c1215b92ac3cc2a28041960e4";
sha256 = "007s2idsn6bspmfxv1qabj39ggkgvn6gwdbhczwn04lb4c6gh3xc";
};
2021-03-30 16:39:53 +03:00
# Upstream development has stopped and is no longer accepting patches
# https://github.com/mischief/9pfs/pull/3
patches = [ ./fix-darwin-build.patch ];
preConfigure =
''
substituteInPlace Makefile --replace '-g bin' ""
installFlagsArray+=(BIN=$out/bin MAN=$out/share/man/man1)
mkdir -p $out/bin $out/share/man/man1
'';
buildInputs = [ fuse ];
enableParallelBuilding = true;
meta = {
homepage = "https://github.com/mischief/9pfs";
description = "FUSE-based client of the 9P network filesystem protocol";
maintainers = [ lib.maintainers.eelco ];
2021-03-30 16:39:53 +03:00
platforms = lib.platforms.unix;
2018-08-19 11:25:22 +03:00
license = with lib.licenses; [ lpl-102 bsd2 ];
};
}