mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
22 lines
603 B
Nix
22 lines
603 B
Nix
{ 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 ];
|
|
};
|
|
}
|