2009-12-24 15:48:36 +01:00
|
|
|
# This program used to come with xorg releases, but now I could only find it
|
|
|
|
# at http://www.x.org/releases/individual/.
|
|
|
|
# That is why this expression is not inside pkgs.xorg
|
|
|
|
|
2012-06-11 09:16:51 +02:00
|
|
|
{stdenv, fetchurl, makeWrapper, libX11, pkgconfig, libXaw}:
|
2009-12-24 15:48:36 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "xfontsel-1.0.2";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.x.org/releases/individual/app/${name}.tar.bz2";
|
|
|
|
sha256 = "1a86a08sf0wjrki9ydh7hr5qf6hrixc4ljlxizakjzmx20wvlrks";
|
|
|
|
};
|
|
|
|
|
2012-06-11 09:16:51 +02:00
|
|
|
buildInputs = [libX11 makeWrapper pkgconfig libXaw];
|
2009-12-24 15:48:36 +01:00
|
|
|
|
2011-11-12 18:29:11 +01:00
|
|
|
# Without this, it gets Xmu as a dependency, but without rpath entry
|
|
|
|
NIX_LDFLAGS = "-lXmu";
|
|
|
|
|
2009-12-24 15:48:36 +01:00
|
|
|
# This will not make xfontsel find its app-defaults, but at least the $out
|
|
|
|
# directory will contain them.
|
|
|
|
# hack: Copying the XFontSel app-defaults file to $HOME makes xfontsel work.
|
2012-06-11 09:16:51 +02:00
|
|
|
installPhase = ''
|
|
|
|
make install appdefaultdir=$out/share/X11/app-defaults
|
|
|
|
wrapProgram $out/bin/xfontsel \
|
|
|
|
--set XAPPLRESDIR $out/share/X11/app-defaults
|
2009-12-24 15:48:36 +01:00
|
|
|
'';
|
|
|
|
|
2009-12-24 15:59:57 +01:00
|
|
|
meta = {
|
|
|
|
homepage = http://www.x.org/;
|
|
|
|
description = "Allows testing the fonts available in an X server";
|
|
|
|
licesnse = "free";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2009-12-24 16:02:31 +01:00
|
|
|
};
|
2009-12-24 15:59:57 +01:00
|
|
|
}
|