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