mirror of
https://github.com/Noratrieb/nixos.git
synced 2026-01-14 19:55:08 +01:00
15 lines
344 B
Nix
15 lines
344 B
Nix
pkgs: pkgs.rustPlatform.buildRustPackage {
|
|
pname = "x";
|
|
version = "1.0.1";
|
|
|
|
src = ./.;
|
|
|
|
cargoLock.lockFile = ./Cargo.lock;
|
|
|
|
meta = with pkgs.lib; {
|
|
description = "Helper for rust-lang/rust x.py";
|
|
homepage = "https://github.com/rust-lang/rust/blob/master/src/tools/x";
|
|
license = licenses.mit;
|
|
mainProgram = "x";
|
|
};
|
|
}
|