summary refs log tree commit diff
path: root/pkgs/applications/misc/xfontsel
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-11-08 20:35:35 +0100
committerSandro Jäckel <sandro.jaeckel@sap.com>2021-11-09 17:52:23 +0100
commit3a3705ba30264d5f10ce93106ed2ad50f14d762c (patch)
tree2257cca5cabc079cf83028b80c8738a4bc8cf43c /pkgs/applications/misc/xfontsel
parent61b93a171c5ac8987b1aacd0f53233272be3352f (diff)
downloadnixpkgs-3a3705ba30264d5f10ce93106ed2ad50f14d762c.tar
nixpkgs-3a3705ba30264d5f10ce93106ed2ad50f14d762c.tar.gz
nixpkgs-3a3705ba30264d5f10ce93106ed2ad50f14d762c.tar.bz2
nixpkgs-3a3705ba30264d5f10ce93106ed2ad50f14d762c.tar.lz
nixpkgs-3a3705ba30264d5f10ce93106ed2ad50f14d762c.tar.xz
nixpkgs-3a3705ba30264d5f10ce93106ed2ad50f14d762c.tar.zst
nixpkgs-3a3705ba30264d5f10ce93106ed2ad50f14d762c.zip
xfontsel: minor formatting
Diffstat (limited to 'pkgs/applications/misc/xfontsel')
-rw-r--r--pkgs/applications/misc/xfontsel/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/applications/misc/xfontsel/default.nix b/pkgs/applications/misc/xfontsel/default.nix
index e5beca06b03..d056dd66e8d 100644
--- a/pkgs/applications/misc/xfontsel/default.nix
+++ b/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;
   };
 }