break-time: init at 0.1.1

gstqt5
(cdep)illabout 2020-07-19 22:31:40 +09:00
parent 27f514ac0d
commit f1d3856fa3
No known key found for this signature in database
GPG Key ID: 462E0C03D11422F4
2 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,45 @@
{ fetchFromGitHub
, glib
, gtk3
, openssl
, pkg-config
, python3
, rustPlatform
, stdenv
, wrapGAppsHook
}:
rustPlatform.buildRustPackage rec {
pname = "break-time";
version = "0.1.1";
src = fetchFromGitHub {
owner = "cdepillabout";
repo = "break-time";
rev = "v${version}";
sha256 = "18p9gfp0inbnjsc7af38fghyklr7qnl2kkr25isfy9d5m8cpxqc6";
};
cargoSha256 = "0brmgrxhspcpcarm4lvnl95dw2n96r20w736giv18xcg7d5jmgca";
nativeBuildInputs = [
pkg-config
python3 # needed for Rust xcb package
wrapGAppsHook
];
buildInputs = [
glib
gtk3
openssl
];
meta = with stdenv.lib; {
description = "Break timer that forces you to take a break";
homepage = "https://github.com/cdepillabout/break-time";
license = with licenses; [ mit ];
maintainers = with maintainers; [ cdepillabout ];
platforms = platforms.linux;
};
}

View File

@ -19166,6 +19166,8 @@ in
brave = callPackage ../applications/networking/browsers/brave { };
break-time = callPackage ../applications/misc/break-time { };
breezy = with python3Packages; toPythonApplication breezy;
notmuch-bower = callPackage ../applications/networking/mailreaders/notmuch-bower { };