summary refs log tree commit diff
path: root/pkgs/tools/X11/screen-message/default.nix
blob: 87487442ada97b611c742376fe84f027d6da3ab4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchgit, autoreconfHook, pkgconfig, gtk3 }:

stdenv.mkDerivation {
  name = "screen-message-0.23";

  srcs = fetchgit {
    url = "git://git.nomeata.de/darcs-mirror-screen-message.debian.git";
    rev = "refs/tags/0_23-1";
    sha256 = "fddddd28703676b2908af71cca7225e6c7bdb15b2fdfd67679cac129028a431c";
  };

  buildInputs = [ autoreconfHook pkgconfig gtk3 ];

  # screen-message installs its binary in $(prefix)/games per default
  makeFlags = [ "execgamesdir=$(out)/bin" ];

  meta = {
    homepage = "http://darcs.nomeata.de/cgi-bin/darcsweb.cgi?r=screen-message.debian";
    description = "Displays a short text fullscreen in an X11 window";
    license = stdenv.lib.licenses.gpl2Plus;
    maintainers = [ stdenv.lib.maintainers.fpletz ];
  };
}