xfontsel: minor formatting

main
Sandro Jäckel 3 years ago committed by Sandro Jäckel
parent 61b93a171c
commit 3a3705ba30
No known key found for this signature in database
GPG Key ID: B1763F8651144063
  1. 10
      pkgs/applications/misc/xfontsel/default.nix

@ -3,6 +3,7 @@
# That is why this expression is not inside pkgs.xorg
{ lib, stdenv, fetchurl, makeWrapper, libX11, pkg-config, libXaw }:
stdenv.mkDerivation rec {
pname = "xfontsel";
version = "1.0.6";
@ -13,6 +14,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkg-config makeWrapper ];
buildInputs = [ libX11 libXaw ];
# 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
'';
meta = {
meta = with lib; {
homepage = "https://www.x.org/";
description = "Allows testing the fonts available in an X server";
license = lib.licenses.free;
maintainers = with lib.maintainers; [ viric ];
platforms = with lib.platforms; linux ++ darwin;
license = licenses.free;
maintainers = with maintainers; [ viric ];
platforms = platforms.unix;
};
}

Loading…
Cancel
Save