nixpkgs/pkgs/tools/X11/screen-message/default.nix

26 lines
805 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, autoreconfHook, pkg-config, gtk3 }:
2015-01-13 22:54:18 +00:00
2016-05-31 18:07:34 +00:00
stdenv.mkDerivation rec {
pname = "screen-message";
2021-03-09 14:53:12 +00:00
version = "0.26";
2015-01-13 22:54:18 +00:00
2016-05-31 18:07:34 +00:00
src = fetchurl {
url = "mirror://debian/pool/main/s/screen-message/screen-message_${version}.orig.tar.gz";
2021-03-09 14:53:12 +00:00
sha256 = "sha256-vBKnuXOEQZDACmlNP9wjJ3NbIdixIx7I72a6Nj6pjzc=";
2015-01-13 22:54:18 +00:00
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ gtk3 ];
2015-01-13 22:54:18 +00:00
# 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";
2015-01-13 22:54:18 +00:00
description = "Displays a short text fullscreen in an X11 window";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl2Plus;
maintainers = [ lib.maintainers.fpletz ];
platforms = lib.platforms.unix;
2015-01-13 22:54:18 +00:00
};
}