xfontsel: minor formatting

This commit is contained in:
Sandro Jäckel 2021-11-08 20:35:35 +01:00 committed by Sandro Jäckel
parent 61b93a171c
commit 3a3705ba30
No known key found for this signature in database
GPG key ID: B1763F8651144063

View file

@ -3,6 +3,7 @@
# That is why this expression is not inside pkgs.xorg # That is why this expression is not inside pkgs.xorg
{ lib, stdenv, fetchurl, makeWrapper, libX11, pkg-config, libXaw }: { lib, stdenv, fetchurl, makeWrapper, libX11, pkg-config, libXaw }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "xfontsel"; pname = "xfontsel";
version = "1.0.6"; version = "1.0.6";
@ -13,6 +14,7 @@ stdenv.mkDerivation rec {
}; };
nativeBuildInputs = [ pkg-config makeWrapper ]; nativeBuildInputs = [ pkg-config makeWrapper ];
buildInputs = [ libX11 libXaw ]; buildInputs = [ libX11 libXaw ];
# Without this, it gets Xmu as a dependency, but without rpath entry # Without this, it gets Xmu as a dependency, but without rpath entry
@ -27,11 +29,11 @@ stdenv.mkDerivation rec {
--set XAPPLRESDIR $out/share/X11/app-defaults --set XAPPLRESDIR $out/share/X11/app-defaults
''; '';
meta = { meta = with lib; {
homepage = "https://www.x.org/"; homepage = "https://www.x.org/";
description = "Allows testing the fonts available in an X server"; description = "Allows testing the fonts available in an X server";
license = lib.licenses.free; license = licenses.free;
maintainers = with lib.maintainers; [ viric ]; maintainers = with maintainers; [ viric ];
platforms = with lib.platforms; linux ++ darwin; platforms = platforms.unix;
}; };
} }