007f80c1d0
Should eval cleanly, as far as -A tarball tells me. Relevant: issue #2999, issue #739
36 lines
1.2 KiB
Nix
36 lines
1.2 KiB
Nix
# 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
|
|
|
|
{stdenv, fetchurl, makeWrapper, libX11, pkgconfig, libXaw}:
|
|
stdenv.mkDerivation rec {
|
|
name = "xfontsel-1.0.5";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://xorg/individual/app/${name}.tar.bz2";
|
|
sha256 = "1grir464hy52a71r3mpm9mzvkf7nwr3vk0b1vc27pd3gp588a38p";
|
|
};
|
|
|
|
buildInputs = [libX11 makeWrapper pkgconfig libXaw];
|
|
|
|
# Without this, it gets Xmu as a dependency, but without rpath entry
|
|
NIX_LDFLAGS = "-lXmu";
|
|
|
|
# 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.
|
|
installPhase = ''
|
|
make install appdefaultdir=$out/share/X11/app-defaults
|
|
wrapProgram $out/bin/xfontsel \
|
|
--set XAPPLRESDIR $out/share/X11/app-defaults
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://www.x.org/;
|
|
description = "Allows testing the fonts available in an X server";
|
|
license = stdenv.lib.licenses.free;
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
|
};
|
|
}
|