{ stdenv, fetchurl, libX11, libXext, libXt, xextproto, xproto }: stdenv.mkDerivation rec { name = "xosd-${version}"; version = "2.2.14"; src = fetchurl { url = "mirror://sourceforge/libxosd/${name}.tar.gz"; sha256 = "025m7ha89q29swkc7s38knnbn8ysl24g2h5s7imfxflm91psj7sg"; }; buildInputs = [ libX11 libXext libXt xextproto xproto ]; meta = with stdenv.lib; { description = "Displays text on your screen"; homepage = http://sourceforge.net/projects/libxosd; license = licenses.gpl2; platforms = platforms.linux; maintainers = with maintainers; [ pSub ]; }; }