eb11feaa0b
Changes the default fetcher in the Rust Platform to be the newer `fetchCargoTarball`, and changes every application using the current default to instead opt out. This commit does not change any hashes or cause any rebuilds. Once integrated, we will start deleting the opt-outs and recomputing hashes. See #79975 for details.
30 lines
764 B
Nix
30 lines
764 B
Nix
{ stdenv, fetchFromGitHub, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "void";
|
|
version = "1.1.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "spacejam";
|
|
repo = "void";
|
|
rev = version;
|
|
sha256 = "08vazw4rszqscjz988k89z28skyj3grm81bm5iwknxxagmrb20fz";
|
|
};
|
|
|
|
# The tests are long-running and not that useful
|
|
doCheck = false;
|
|
|
|
# Delete this on next update; see #79975 for details
|
|
legacyCargoFetcher = true;
|
|
|
|
cargoSha256 = "03g7155jpg8k1ymk95m8rlhlszkxyq0rv32966n4gk5yziijvk4k";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Terminal-based personal organizer";
|
|
homepage = https://github.com/spacejam/void;
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ spacekookie ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|