mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
23 lines
660 B
Nix
23 lines
660 B
Nix
{ stdenv, fetchdarcs, autoreconfHook, pkgconfig, gtk3 }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "screen-message-0.23";
|
|
|
|
src = fetchdarcs {
|
|
url = "http://darcs.nomeata.de/screen-message.debian";
|
|
rev = "0.23-1";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|