1{ stdenv, fetchurl, libX11, libXext, libXt, xextproto, xproto }:
2
3stdenv.mkDerivation rec {
4 name = "xosd-${version}";
5 version = "2.2.14";
6
7 src = fetchurl {
8 url = "mirror://sourceforge/libxosd/${name}.tar.gz";
9 sha256 = "025m7ha89q29swkc7s38knnbn8ysl24g2h5s7imfxflm91psj7sg";
10 };
11
12 buildInputs = [ libX11 libXext libXt xextproto xproto ];
13
14 meta = with stdenv.lib; {
15 description = "Displays text on your screen";
16 homepage = https://sourceforge.net/projects/libxosd;
17 license = licenses.gpl2;
18 platforms = platforms.linux ++ platforms.darwin;
19 maintainers = with maintainers; [ pSub ];
20 };
21}