mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 17:14:33 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
58 lines
1.3 KiB
Nix
58 lines
1.3 KiB
Nix
# This program used to come with xorg releases, but now I could only find it
|
|
# at https://www.x.org/releases/individual/.
|
|
# That is why this expression is not inside pkgs.xorg
|
|
|
|
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
makeWrapper,
|
|
xorg,
|
|
pkg-config,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xfontsel";
|
|
version = "1.0.6";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://xorg/individual/app/xfontsel-${version}.tar.bz2";
|
|
sha256 = "0700lf6hx7dg88wq1yll7zjvf9gbwh06xff20yffkxb289y0pai5";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
makeWrapper
|
|
];
|
|
|
|
buildInputs = [
|
|
xorg.libX11
|
|
xorg.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 = with lib; {
|
|
homepage = "https://www.x.org/";
|
|
description = "Allows testing the fonts available in an X server";
|
|
mainProgram = "xfontsel";
|
|
license = with licenses; [
|
|
x11
|
|
smlnj
|
|
mit
|
|
];
|
|
maintainers = [ ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|