mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
0b8eaf081f
Should cause no rebuilds, as this is just updating attributes.
20 lines
521 B
Nix
20 lines
521 B
Nix
{ lib, fetchCrate, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "toipe";
|
|
version = "0.5.0";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-L4JemOxpynGYsA8FgHnMv/hrogLSRaaiIzDjxzZDqjM=";
|
|
};
|
|
|
|
cargoHash = "sha256-ShJ7dbd3oNo3qZJ5+ut+NfLF9j8kPPZy9yC2zl/s56k=";
|
|
|
|
meta = with lib; {
|
|
description = "Trusty terminal typing tester";
|
|
homepage = "https://github.com/Samyak2/toipe";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ loicreynier samyak ];
|
|
};
|
|
}
|