xplr/default.nix
Arijit Basu 080e1686f3 Improve version compatibility
From this version, xplr won't annoy the users to visit the upgrade guide
when there is no need.

Also, users will only get upgrade related notification when it is
there is one.
2021-04-11 21:15:01 +05:30

14 lines
396 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.4.0";
src = fetchTarball
("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.4.0.tar.gz");
buildInputs = [ cargo ];
checkPhase = "";
cargoSha256 = "0000000000000000000000000000000000000000000000000000";
}