mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
Add new package screen-message
This commit is contained in:
parent
3d2c7d791e
commit
6265123f7a
22
pkgs/tools/X11/screen-message/default.nix
Normal file
22
pkgs/tools/X11/screen-message/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -2519,6 +2519,8 @@ let
|
||||
|
||||
screen = callPackage ../tools/misc/screen { };
|
||||
|
||||
screen-message = callPackage ../tools/X11/screen-message { };
|
||||
|
||||
scrot = callPackage ../tools/graphics/scrot { };
|
||||
|
||||
scrypt = callPackage ../tools/security/scrypt { };
|
||||
|
Loading…
Reference in New Issue
Block a user