571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
40 lines
1.2 KiB
Nix
40 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, fetchpatch, ncurses, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tty-clock";
|
|
version = "2.3+unstable=2021-04-07";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xorg62";
|
|
repo = "tty-clock";
|
|
# Use unreleased version to pull in fix for ncurses-6.3
|
|
rev = "9e00c32098524c30dac4dab701f7e33f8bc7c880";
|
|
sha256 = "14jrzz06jr29887bxgad1x6kd26c2fnqrc26864wqm3838fpcqw0";
|
|
};
|
|
|
|
patches = [
|
|
# Pull upstream patch pending inclusion fir more ncurses-6.3 fixes:
|
|
# https://github.com/xorg62/tty-clock/pull/100
|
|
(fetchpatch {
|
|
name = "ncurses-6.2.patch";
|
|
url = "https://github.com/xorg62/tty-clock/commit/4cfd73080da1964557484da620c401745d73881c.patch";
|
|
sha256 = "13pj1v6yrfc4vynsa746974kixfxxsy2jzzpl73c8bp7msr9d3md";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ ncurses ];
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
homepage = "https://github.com/xorg62/tty-clock";
|
|
license = licenses.bsd3;
|
|
description = "Digital clock in ncurses";
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.koral ];
|
|
mainProgram = "tty-clock";
|
|
};
|
|
}
|