summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/core/gucharmap
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2019-11-07 19:07:58 +0100
committerJan Tojnar <jtojnar@gmail.com>2019-12-07 00:58:29 +0100
commitad9135a4b2ece782003d832b57fbc7bcf4bb5013 (patch)
tree0a69150a9fb4a213104eac3728b94843e56ab01a /pkgs/desktops/gnome-3/core/gucharmap
parent8ed93984edbc50ff4d9bf603b043325735b24d75 (diff)
downloadnixpkgs-ad9135a4b2ece782003d832b57fbc7bcf4bb5013.tar
nixpkgs-ad9135a4b2ece782003d832b57fbc7bcf4bb5013.tar.gz
nixpkgs-ad9135a4b2ece782003d832b57fbc7bcf4bb5013.tar.bz2
nixpkgs-ad9135a4b2ece782003d832b57fbc7bcf4bb5013.tar.lz
nixpkgs-ad9135a4b2ece782003d832b57fbc7bcf4bb5013.tar.xz
nixpkgs-ad9135a4b2ece782003d832b57fbc7bcf4bb5013.tar.zst
nixpkgs-ad9135a4b2ece782003d832b57fbc7bcf4bb5013.zip
gucharmap: format with nixpkgs-fmt
Diffstat (limited to 'pkgs/desktops/gnome-3/core/gucharmap')
-rw-r--r--pkgs/desktops/gnome-3/core/gucharmap/default.nix59
1 files changed, 48 insertions, 11 deletions
diff --git a/pkgs/desktops/gnome-3/core/gucharmap/default.nix b/pkgs/desktops/gnome-3/core/gucharmap/default.nix
index 6c291c1874f..9ada537af52 100644
--- a/pkgs/desktops/gnome-3/core/gucharmap/default.nix
+++ b/pkgs/desktops/gnome-3/core/gucharmap/default.nix
@@ -1,12 +1,32 @@
-{ stdenv, intltool, fetchFromGitLab, pkgconfig, gtk3, adwaita-icon-theme
-, glib, desktop-file-utils, gtk-doc, autoconf, automake, libtool
-, wrapGAppsHook, gnome3, itstool, libxml2, yelp-tools
-, docbook_xsl, docbook_xml_dtd_412, gsettings-desktop-schemas
-, callPackage, unzip, gobject-introspection }:
+{ stdenv
+, intltool
+, fetchFromGitLab
+, pkgconfig
+, gtk3
+, adwaita-icon-theme
+, glib
+, desktop-file-utils
+, gtk-doc
+, autoconf
+, automake
+, libtool
+, wrapGAppsHook
+, gnome3
+, itstool
+, libxml2
+, yelp-tools
+, docbook_xsl
+, docbook_xml_dtd_412
+, gsettings-desktop-schemas
+, callPackage
+, unzip
+, gobject-introspection
+}:
 
 let
   unicode-data = callPackage ./unicode-data.nix {};
-in stdenv.mkDerivation rec {
+in
+stdenv.mkDerivation rec {
   pname = "gucharmap";
   version = "12.0.1";
 
@@ -21,12 +41,29 @@ in stdenv.mkDerivation rec {
   };
 
   nativeBuildInputs = [
-    pkgconfig wrapGAppsHook unzip intltool itstool
-    autoconf automake libtool gtk-doc docbook_xsl docbook_xml_dtd_412
-    yelp-tools libxml2 desktop-file-utils gobject-introspection
+    pkgconfig
+    wrapGAppsHook
+    unzip
+    intltool
+    itstool
+    autoconf
+    automake
+    libtool
+    gtk-doc
+    docbook_xsl
+    docbook_xml_dtd_412
+    yelp-tools
+    libxml2
+    desktop-file-utils
+    gobject-introspection
   ];
 
-  buildInputs = [ gtk3 glib gsettings-desktop-schemas adwaita-icon-theme ];
+  buildInputs = [
+    gtk3
+    glib
+    gsettings-desktop-schemas
+    adwaita-icon-theme
+  ];
 
   configureFlags = [
     "--with-unicode-data=${unicode-data}"
@@ -51,7 +88,7 @@ in stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "GNOME Character Map, based on the Unicode Character Database";
-    homepage = https://wiki.gnome.org/Apps/Gucharmap;
+    homepage = "https://wiki.gnome.org/Apps/Gucharmap";
     license = licenses.gpl3;
     maintainers = gnome3.maintainers;
     platforms = platforms.linux;