Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
ncurses,
|
|
versionCheckHook,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "cmatrix";
|
|
version = "2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "abishekvashok";
|
|
repo = "cmatrix";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-dWlVWSRIE1fPa6R2N3ONL9QJlDQEqxfdYIgWTSr5MsE=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
buildInputs = [ ncurses ];
|
|
|
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
|
versionCheckProgramArg = "-V";
|
|
doInstallCheck = true;
|
|
|
|
meta = {
|
|
description = "Simulates the falling characters theme from The Matrix movie";
|
|
longDescription = ''
|
|
CMatrix simulates the display from "The Matrix" and is based
|
|
on the screensaver from the movie's website.
|
|
'';
|
|
homepage = "https://github.com/abishekvashok/cmatrix";
|
|
changelog = "https://github.com/abishekvashok/cmatrix/releases/tag/v${finalAttrs.version}";
|
|
platforms = ncurses.meta.platforms;
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ Tert0 ];
|
|
mainProgram = "cmatrix";
|
|
};
|
|
})
|