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