rsClock: init at 0.1.0

This commit is contained in:
Valerio Besozzi 2019-08-27 11:12:35 +02:00
parent c1d74a1272
commit 595b7d808d
No known key found for this signature in database
GPG Key ID: 4136B4783B117471
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "rsClock";
version = "0.1.0";
src = fetchFromGitHub {
owner = "valebes";
repo = pname;
rev = "v${version}";
sha256 = "1fpidswkgpf9yr4vxqn38livz6r3z5i0lhg7ngj9f1ki4yqxn9zh";
};
cargoSha256 = "1m0lm8xh1qp0cbx870xy2m0bv047mb00vcwzq7r5gxqx8n61qm4n";
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;
};
}

View File

@ -20450,6 +20450,8 @@ in
rpcs3 = libsForQt5.callPackage ../misc/emulators/rpcs3 { };
rsclock = callPackage ../applications/misc/rsclock { };
rstudio = libsForQt5.callPackage ../applications/editors/rstudio {
boost = boost166;
llvmPackages = llvmPackages_7;