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
39 lines
841 B
Nix
39 lines
841 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
pkg-config,
|
|
gtk3,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "screen-message";
|
|
version = "0.29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nomeata";
|
|
repo = "screen-message";
|
|
rev = version;
|
|
hash = "sha256-fwKle+aXZuiNo5ksrigj7BGLv2fUILN2GluHHZ6co6s=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
buildInputs = [ gtk3 ];
|
|
|
|
# screen-message installs its binary in $(prefix)/games per default
|
|
makeFlags = [ "execgamesdir=$(out)/bin" ];
|
|
|
|
meta = {
|
|
homepage = "https://www.joachim-breitner.de/en/projects#screen-message";
|
|
description = "Displays a short text fullscreen in an X11 window";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = [ lib.maintainers.fpletz ];
|
|
mainProgram = "sm";
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|