mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #93476 from cdepillabout/add-break-time
break-time: init at 0.1.1
This commit is contained in:
commit
c32264ef79
2 changed files with 47 additions and 0 deletions
45
pkgs/applications/misc/break-time/default.nix
Normal file
45
pkgs/applications/misc/break-time/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
|
@ -19170,6 +19170,8 @@ in
|
||||||
|
|
||||||
brave = callPackage ../applications/networking/browsers/brave { };
|
brave = callPackage ../applications/networking/browsers/brave { };
|
||||||
|
|
||||||
|
break-time = callPackage ../applications/misc/break-time { };
|
||||||
|
|
||||||
breezy = with python3Packages; toPythonApplication breezy;
|
breezy = with python3Packages; toPythonApplication breezy;
|
||||||
|
|
||||||
notmuch-bower = callPackage ../applications/networking/mailreaders/notmuch-bower { };
|
notmuch-bower = callPackage ../applications/networking/mailreaders/notmuch-bower { };
|
||||||
|
|
Loading…
Reference in a new issue