added xosd

svn path=/nixpkgs/trunk/; revision=11340
This commit is contained in:
Tobias Hammerschmidt 2008-03-29 00:49:26 +00:00
parent 87176f8dd3
commit d333c4ee09
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,18 @@
args: with args;
stdenv.mkDerivation (rec {
pname = "xosd";
version = "2.2.12";
name = "${pname}-${version}";
src = fetchurl {
url = "http://ignavus.net/${name}.tar.gz";
sha256 = "7d4ae8e1a6dbd7743af3b1cdc85144e2de26abe6daec25f4bd74bf311774df08";
};
buildInputs = [libX11 libXext libXt xextproto xproto];
meta = {
description = "XOSD displays text on your screen";
};
})

View file

@ -6283,6 +6283,11 @@ let pkgs = rec {
fontconfig fontforge libxml2 libxslt openssl;
};
xosd = import ../misc/xosd {
inherit fetchurl stdenv;
inherit (xlibs) libX11 libXext libXt xextproto xproto;
};
xsane = import ../misc/xsane {
inherit fetchurl stdenv pkgconfig libusb
saneBackends saneFrontends;