2010-07-28 08:35:01 -07:00
|
|
|
{ stdenv, fetchurl, libX11, libXext, libXt, xextproto, xproto }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-02-06 06:30:45 -08:00
|
|
|
name = "xosd-${version}";
|
|
|
|
version = "2.2.14";
|
2008-03-28 17:49:26 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-02-06 06:30:45 -08:00
|
|
|
url = "mirror://sourceforge/libxosd/${name}.tar.gz";
|
|
|
|
sha256 = "025m7ha89q29swkc7s38knnbn8ysl24g2h5s7imfxflm91psj7sg";
|
2008-03-28 17:49:26 -07:00
|
|
|
};
|
|
|
|
|
2010-07-28 08:35:01 -07:00
|
|
|
buildInputs = [ libX11 libXext libXt xextproto xproto ];
|
2008-03-28 17:49:26 -07:00
|
|
|
|
2015-02-06 06:30:45 -08:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 07:21:08 -07:00
|
|
|
description = "Displays text on your screen";
|
2017-11-10 13:13:27 -08:00
|
|
|
homepage = https://sourceforge.net/projects/libxosd;
|
2015-02-06 06:30:45 -08:00
|
|
|
license = licenses.gpl2;
|
2017-04-20 21:45:06 -07:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2015-02-06 06:30:45 -08:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2008-03-28 17:49:26 -07:00
|
|
|
};
|
2010-07-28 08:35:01 -07:00
|
|
|
}
|