You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xplr/default.nix

14 lines
398 B
Nix

with import <nixpkgs> {};
# Run nix-build and update the src url, version and sha256 when new version
rustPlatform.buildRustPackage rec {
name = "xplr";
version = "0.3.12";
src = fetchTarball
("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.12.tar.gz");
buildInputs = [ cargo ];
checkPhase = "";
cargoSha256 = "0000000000000000000000000000000000000000000000000000";
}