My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/applications/misc/peaclock/default.nix

24 lines
638 B

{ lib, 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 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 ];
};
}