a5adf1ddd8
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
25 lines
804 B
Nix
25 lines
804 B
Nix
{ lib, stdenv, fetchurl, autoreconfHook, pkgconfig, gtk3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "screen-message";
|
|
version = "0.25";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://debian/pool/main/s/screen-message/screen-message_${version}.orig.tar.gz";
|
|
sha256 = "1lw955qq5pq010lzmaf32ylj2iprgsri9ih4hx672c3f794ilab0";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
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 ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|