Merge pull request #101231 from djanatyn/pkg/peaclock

peaclock: init at 0.4.3
This commit is contained in:
Anderson Torres 2020-10-28 16:06:00 -03:00 committed by GitHub
commit c13da09a6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 43 additions and 9 deletions

View File

@ -1303,10 +1303,12 @@
name = "Vladimir Serov"; name = "Vladimir Serov";
keys = [ keys = [
# compare with https://keybase.io/cab404 # compare with https://keybase.io/cab404
{ longkeyid = "1BB96810926F4E715DEF567E6BA7C26C3FDF7BB3"; {
longkeyid = "1BB96810926F4E715DEF567E6BA7C26C3FDF7BB3";
fingerprint = "rsa3072/0xCBDECF658C38079E"; fingerprint = "rsa3072/0xCBDECF658C38079E";
} }
{ longkeyid = "1EBC648C64D6045463013B3EB7EFFC271D55DB8A"; {
longkeyid = "1EBC648C64D6045463013B3EB7EFFC271D55DB8A";
fingerprint = "ed25519/0xB7EFFC271D55DB8A"; fingerprint = "ed25519/0xB7EFFC271D55DB8A";
} }
]; ];
@ -1431,10 +1433,12 @@
githubId = 2054509; githubId = 2054509;
name = "Constantine Evans"; name = "Constantine Evans";
keys = [ keys = [
{ longkeyid = "rsa4096/0xB67DB1D20A93A9F9"; {
longkeyid = "rsa4096/0xB67DB1D20A93A9F9";
fingerprint = "32B1 6EE7 DBA5 16DE 526E 4C5A B67D B1D2 0A93 A9F9"; fingerprint = "32B1 6EE7 DBA5 16DE 526E 4C5A B67D B1D2 0A93 A9F9";
} }
{ longkeyid = "rsa4096/0x1A1D58B86AE2AABD"; {
longkeyid = "rsa4096/0x1A1D58B86AE2AABD";
fingerprint = "669C 1D24 5A87 DB34 6BE4 3216 1A1D 58B8 6AE2 AABD"; fingerprint = "669C 1D24 5A87 DB34 6BE4 3216 1A1D 58B8 6AE2 AABD";
} }
]; ];
@ -7275,10 +7279,12 @@
github = "rissson"; github = "rissson";
githubId = 18313093; githubId = 18313093;
keys = [ keys = [
{ longkeyid = "rsa4096/0xF6FD87B15C263EC9"; {
longkeyid = "rsa4096/0xF6FD87B15C263EC9";
fingerprint = "8A0E 6A7C 08AB B9DE 67DE 2A13 F6FD 87B1 5C26 3EC9"; fingerprint = "8A0E 6A7C 08AB B9DE 67DE 2A13 F6FD 87B1 5C26 3EC9";
} }
{ longkeyid = "ed25519/0xBBB7A6801DF1E03F"; {
longkeyid = "ed25519/0xBBB7A6801DF1E03F";
fingerprint = "C0A7 A9BB 115B C857 4D75 EA99 BBB7 A680 1DF1 E03F"; fingerprint = "C0A7 A9BB 115B C857 4D75 EA99 BBB7 A680 1DF1 E03F";
} }
]; ];

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

@ -22759,6 +22759,10 @@ in
inherit (gst_all_1) gstreamer gst-plugins-base gst-plugins-good gst-libav; 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 { }; peek = callPackage ../applications/video/peek { };
pflask = callPackage ../os-specific/linux/pflask {}; pflask = callPackage ../os-specific/linux/pflask {};