peaclock: init at 0.4.3
Co-authored-by: r-burns <52847440+r-burns@users.noreply.github.com>
This commit is contained in:
parent
74504e8527
commit
c84ddc7bf4
24
pkgs/applications/misc/peaclock/default.nix
Normal file
24
pkgs/applications/misc/peaclock/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, libpthreadstubs, icu }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "peaclock";
|
||||
version = "0.4.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "octobanana";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1582vgslhpgbvcd7ipgf1d1razrvgpq1f93q069yr2bbk6xn8i16";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ libpthreadstubs icu ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A clock, timer, and stopwatch for the terminal";
|
||||
homepage = "https://octobanana.com/software/peaclock";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ djanatyn ];
|
||||
};
|
||||
}
|
@ -22755,6 +22755,10 @@ in
|
||||
inherit (gst_all_1) gstreamer gst-plugins-base gst-plugins-good gst-libav;
|
||||
};
|
||||
|
||||
peaclock = callPackage ../applications/misc/peaclock {
|
||||
stdenv = gccStdenv;
|
||||
};
|
||||
|
||||
peek = callPackage ../applications/video/peek { };
|
||||
|
||||
pflask = callPackage ../os-specific/linux/pflask {};
|
||||
|
Loading…
Reference in New Issue
Block a user