Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

unpfs: init at 0.0.2019-05-17

authored by

Michael Raskin and committed by
Alyssa Ross
f12afbd2 9dacdec2

+36
+34
pkgs/servers/unpfs/default.nix
··· 1 + { stdenv, fetchFromGitHub, rustPlatform }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "unpfs"; 5 + version = "0.0.2019-05-17"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "pfpacket"; 9 + repo = "rust-9p"; 10 + rev = "01cf9c60bff0f35567d876db7be7fb86032b44eb"; 11 + sha256 = "0mhmr1912z5nyfpcvhnlgb3v67a5n7i2n9l5abi05sfqffqssi79"; 12 + }; 13 + 14 + sourceRoot = "source/example/unpfs"; 15 + 16 + cargoSha256 = "1d33nwj3i333a6ji3r3037mgg553lc3wsawm0pz13kbvhjf336i8"; 17 + 18 + RUSTC_BOOTSTRAP = 1; 19 + 20 + postInstall = '' 21 + install -D -m 0444 ../../README* -t "$out/share/doc/${pname}" 22 + install -D -m 0444 ../../LICEN* -t "$out/share/doc/${pname}" 23 + ''; 24 + 25 + meta = with stdenv.lib; { 26 + description = "9P2000.L server implementation in Rust"; 27 + homepage = "https://github.com/pfpacket/rust-9p"; 28 + license = licenses.bsd3; 29 + maintainers = with maintainers; [ raskin ]; 30 + 31 + # macOS build fails: https://github.com/pfpacket/rust-9p/issues/7 32 + platforms = with platforms; linux; 33 + }; 34 + }
+2
pkgs/top-level/all-packages.nix
··· 15453 15453 riemann = callPackage ../servers/monitoring/riemann { }; 15454 15454 riemann-dash = callPackage ../servers/monitoring/riemann-dash { }; 15455 15455 15456 + unpfs = callPackage ../servers/unpfs {}; 15457 + 15456 15458 oidentd = callPackage ../servers/identd/oidentd { }; 15457 15459 15458 15460 openfire = callPackage ../servers/xmpp/openfire { };