mirror of
https://github.com/sayanarijit/xplr
synced 2024-11-10 07:10:45 +00:00
14 lines
396 B
Nix
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.3";
|
|
src = fetchTarball
|
|
("https://github.com/sayanarijit/xplr/archive/refs/tags/v0.4.3.tar.gz");
|
|
buildInputs = [ cargo ];
|
|
checkPhase = "";
|
|
cargoSha256 = "0000000000000000000000000000000000000000000000000000";
|
|
}
|