This commit is contained in:
nora 2023-11-16 19:58:01 +01:00
parent 90f4ec0df1
commit cddcbb6f9f
9 changed files with 213 additions and 1 deletions

15
custom-pkgs/x/default.nix Normal file
View file

@ -0,0 +1,15 @@
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";
};
}