xfontsel: minor formatting

authored by

Sandro Jäckel and committed by
Sandro Jäckel
3a3705ba 61b93a17

+6 -4
+6 -4
pkgs/applications/misc/xfontsel/default.nix
··· 3 # That is why this expression is not inside pkgs.xorg 4 5 { lib, stdenv, fetchurl, makeWrapper, libX11, pkg-config, libXaw }: 6 stdenv.mkDerivation rec { 7 pname = "xfontsel"; 8 version = "1.0.6"; ··· 13 }; 14 15 nativeBuildInputs = [ pkg-config makeWrapper ]; 16 buildInputs = [ libX11 libXaw ]; 17 18 # Without this, it gets Xmu as a dependency, but without rpath entry ··· 27 --set XAPPLRESDIR $out/share/X11/app-defaults 28 ''; 29 30 - meta = { 31 homepage = "https://www.x.org/"; 32 description = "Allows testing the fonts available in an X server"; 33 - license = lib.licenses.free; 34 - maintainers = with lib.maintainers; [ viric ]; 35 - platforms = with lib.platforms; linux ++ darwin; 36 }; 37 }
··· 3 # That is why this expression is not inside pkgs.xorg 4 5 { lib, stdenv, fetchurl, makeWrapper, libX11, pkg-config, libXaw }: 6 + 7 stdenv.mkDerivation rec { 8 pname = "xfontsel"; 9 version = "1.0.6"; ··· 14 }; 15 16 nativeBuildInputs = [ pkg-config makeWrapper ]; 17 + 18 buildInputs = [ libX11 libXaw ]; 19 20 # Without this, it gets Xmu as a dependency, but without rpath entry ··· 29 --set XAPPLRESDIR $out/share/X11/app-defaults 30 ''; 31 32 + meta = with lib; { 33 homepage = "https://www.x.org/"; 34 description = "Allows testing the fonts available in an X server"; 35 + license = licenses.free; 36 + maintainers = with maintainers; [ viric ]; 37 + platforms = platforms.unix; 38 }; 39 }