nixpkgs/pkgs/tools/X11/screen-message/default.nix
2024-01-17 20:22:12 +01:00

29 lines
818 B
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, gtk3 }:
stdenv.mkDerivation rec {
pname = "screen-message";
version = "0.28";
src = fetchFromGitHub {
owner = "nomeata";
repo = "screen-message";
rev = version;
hash = "sha256-KHJL1N72Hc1B1m0olxoZxBHIpq/d/T3m2VdS5XC9+tk=";
};
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;
};
}