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