2009-12-24 17:48:36 +03:00
|
|
|
# This program used to come with xorg releases, but now I could only find it
|
2018-01-05 22:42:46 +03:00
|
|
|
# at https://www.x.org/releases/individual/.
|
2009-12-24 17:48:36 +03:00
|
|
|
# That is why this expression is not inside pkgs.xorg
|
|
|
|
|
2012-06-11 11:16:51 +04:00
|
|
|
{stdenv, fetchurl, makeWrapper, libX11, pkgconfig, libXaw}:
|
2009-12-24 17:48:36 +03:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-15 23:35:05 +03:00
|
|
|
name = "xfontsel-1.0.6";
|
2009-12-24 17:48:36 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-07-14 06:38:03 +04:00
|
|
|
url = "mirror://xorg/individual/app/${name}.tar.bz2";
|
2018-03-15 23:35:05 +03:00
|
|
|
sha256 = "0700lf6hx7dg88wq1yll7zjvf9gbwh06xff20yffkxb289y0pai5";
|
2009-12-24 17:48:36 +03:00
|
|
|
};
|
|
|
|
|
2017-09-06 00:26:13 +03:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [libX11 makeWrapper libXaw];
|
2009-12-24 17:48:36 +03:00
|
|
|
|
2011-11-12 21:29:11 +04:00
|
|
|
# Without this, it gets Xmu as a dependency, but without rpath entry
|
|
|
|
NIX_LDFLAGS = "-lXmu";
|
|
|
|
|
2009-12-24 17:48:36 +03: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 11:16:51 +04:00
|
|
|
installPhase = ''
|
|
|
|
make install appdefaultdir=$out/share/X11/app-defaults
|
|
|
|
wrapProgram $out/bin/xfontsel \
|
|
|
|
--set XAPPLRESDIR $out/share/X11/app-defaults
|
2009-12-24 17:48:36 +03:00
|
|
|
'';
|
|
|
|
|
2009-12-24 17:59:57 +03:00
|
|
|
meta = {
|
2018-01-05 22:42:46 +03:00
|
|
|
homepage = https://www.x.org/;
|
2009-12-24 17:59:57 +03:00
|
|
|
description = "Allows testing the fonts available in an X server";
|
2014-11-06 03:44:33 +03:00
|
|
|
license = stdenv.lib.licenses.free;
|
2009-12-24 17:59:57 +03:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
2014-08-13 04:40:57 +04:00
|
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
2009-12-24 18:02:31 +03:00
|
|
|
};
|
2009-12-24 17:59:57 +03:00
|
|
|
}
|