nixpkgs/pkgs/tools/misc/tty-clock/default.nix

27 lines
630 B
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchFromGitHub, ncurses, pkg-config }:
2014-09-28 10:31:50 +00:00
stdenv.mkDerivation rec {
pname = "tty-clock";
2017-03-03 22:16:45 +00:00
version = "2.3";
2014-09-28 10:31:50 +00:00
src = fetchFromGitHub {
owner = "xorg62";
repo = "tty-clock";
2017-03-03 22:16:45 +00:00
rev = "v${version}";
sha256 = "16v3pmva13skpfjja96zacjpxrwzs1nb1iqmrp2qzvdbcm9061pp";
2014-09-28 10:31:50 +00:00
};
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ pkg-config ];
2014-09-28 10:31:50 +00:00
buildInputs = [ ncurses ];
makeFlags = [ "PREFIX=$(out)" ];
2014-09-28 10:31:50 +00:00
meta = with lib; {
homepage = "https://github.com/xorg62/tty-clock";
2014-09-28 10:31:50 +00:00
license = licenses.free;
description = "Digital clock in ncurses";
platforms = platforms.all;
maintainers = [ maintainers.koral ];
};
}