nixpkgs/pkgs/by-name/un/unpfs/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

36 lines
984 B
Nix

{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "unpfs";
version = "unstable-2021-04-23";
src = fetchFromGitHub {
owner = "pfpacket";
repo = "rust-9p";
rev = "6d9b62aa182c5764e00b96f93109feb605d9eac9";
sha256 = "sha256-zyDkUb+bFsVnxAE4UODbnRtDim7gqUNuY22vuxMsLZM=";
};
sourceRoot = "${src.name}/example/unpfs";
cargoHash = "sha256-v8hbxKuxux0oYglEIK5dM9q0oBQzjyYDP1JB1cYR/T0=";
RUSTC_BOOTSTRAP = 1;
postInstall = ''
install -D -m 0444 ../../README* -t "$out/share/doc/${pname}"
install -D -m 0444 ../../LICEN* -t "$out/share/doc/${pname}"
'';
meta = with lib; {
description = "9P2000.L server implementation in Rust";
homepage = "https://github.com/pfpacket/rust-9p";
license = licenses.bsd3;
maintainers = with maintainers; [ raskin ];
# macOS build fails: https://github.com/pfpacket/rust-9p/issues/7
platforms = with platforms; linux;
mainProgram = "unpfs";
};
}