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

15 lines
379 B
Nix

3 years ago
with import <nixpkgs> { };
# Update the src url, version and sha256 when new version
3 years ago
rustPlatform.buildRustPackage rec {
name = "xplr";
3 years ago
version = "0.3.2";
src = fetchTarball
3 years ago
("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.3.2.tar.gz");
3 years ago
buildInputs = [ cargo ];
checkPhase = "";
cargoSha256 = "sha256-IyaYkHXmqXziXNK6uYU+XNNWA8a8S8cuMxkopps/9kk=";
}