biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / xfontsel / default.nix
blob203b94b0845fa4b1e4ba7d88c5780913a36ed5c7
1 # This program used to come with xorg releases, but now I could only find it
2 # at https://www.x.org/releases/individual/.
3 # That is why this expression is not inside pkgs.xorg
5 { lib, stdenv, fetchurl, makeWrapper, xorg, pkg-config }:
7 stdenv.mkDerivation rec {
8   pname = "xfontsel";
9   version = "1.0.6";
11   src = fetchurl {
12     url = "mirror://xorg/individual/app/xfontsel-${version}.tar.bz2";
13     sha256 = "0700lf6hx7dg88wq1yll7zjvf9gbwh06xff20yffkxb289y0pai5";
14   };
16   nativeBuildInputs = [ pkg-config makeWrapper ];
18   buildInputs = [ xorg.libX11 xorg.libXaw ];
20   # Without this, it gets Xmu as a dependency, but without rpath entry
21   NIX_LDFLAGS = "-lXmu";
23   # This will not make xfontsel find its app-defaults, but at least the $out
24   # directory will contain them.
25   # hack: Copying the XFontSel app-defaults file to $HOME makes xfontsel work.
26   installPhase = ''
27     make install appdefaultdir=$out/share/X11/app-defaults
28     wrapProgram $out/bin/xfontsel \
29       --set XAPPLRESDIR $out/share/X11/app-defaults
30   '';
32   meta = with lib; {
33     homepage = "https://www.x.org/";
34     description = "Allows testing the fonts available in an X server";
35     mainProgram = "xfontsel";
36     license = with licenses; [ x11 smlnj mit ];
37     maintainers = [ ];
38     platforms = platforms.unix;
39   };