lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.09-beta 25 lines 869 B view raw
1{ stdenv, fetchurl, autoreconfHook, pkgconfig, gtk3, hicolor-icon-theme }: 2 3stdenv.mkDerivation rec { 4 name = "screen-message-${version}"; 5 version = "0.25"; 6 7 src = fetchurl { 8 url = "mirror://debian/pool/main/s/screen-message/screen-message_${version}.orig.tar.gz"; 9 sha256 = "1lw955qq5pq010lzmaf32ylj2iprgsri9ih4hx672c3f794ilab0"; 10 }; 11 12 nativeBuildInputs = [ autoreconfHook pkgconfig ]; 13 buildInputs = [ gtk3 hicolor-icon-theme ]; 14 15 # screen-message installs its binary in $(prefix)/games per default 16 makeFlags = [ "execgamesdir=$(out)/bin" ]; 17 18 meta = { 19 homepage = "https://www.joachim-breitner.de/en/projects#screen-message"; 20 description = "Displays a short text fullscreen in an X11 window"; 21 license = stdenv.lib.licenses.gpl2Plus; 22 maintainers = [ stdenv.lib.maintainers.fpletz ]; 23 platforms = stdenv.lib.platforms.unix; 24 }; 25}