peaclock: init at 0.4.3

Co-authored-by: r-burns <52847440+r-burns@users.noreply.github.com>
This commit is contained in:
Jonathan Strickland 2020-10-20 21:56:08 -04:00
parent 74504e8527
commit c84ddc7bf4
2 changed files with 28 additions and 0 deletions

View 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 ];
};
}

View File

@ -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 {};