nixpkgs/pkgs/applications/misc/rsclock/default.nix

25 lines
622 B
Nix
Raw Normal View History

2019-08-27 09:12:35 +00:00
{ stdenv, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "rsClock";
2019-08-29 19:21:27 +00:00
version = "0.1.4";
2019-08-27 09:12:35 +00:00
src = fetchFromGitHub {
owner = "valebes";
repo = pname;
rev = "v${version}";
2019-08-29 19:21:27 +00:00
sha256 = "1i93qkz6d8sbk78i4rvx099hnn4lklp4cjvanpm9ssv8na4rqvh2";
2019-08-27 09:12:35 +00:00
};
2019-08-29 19:21:27 +00:00
cargoSha256 = "0zg5q2p9snpfyxl0gx87ix1f46afrfm5jq0m6c7s8qw2x9hpvxzr";
2019-08-27 09:12:35 +00:00
meta = with stdenv.lib; {
description = "A simple terminal clock written in Rust";
homepage = "https://github.com/valebes/rsClock";
license = licenses.mit;
maintainers = with maintainers; [valebes];
platforms = platforms.all;
};
}