summary refs log tree commit diff
path: root/pkgs/tools/inputmethods
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-11-13 19:32:52 +0100
committerGitHub <noreply@github.com>2021-11-13 19:32:52 +0100
commit96c17beaf51747b7785d66512b7033c77e2c81b7 (patch)
tree1505d2b7604e198edc19357713b0de1a830d40cd /pkgs/tools/inputmethods
parentcf6b299a38ad35f5f436001eac51d6a964a9e53d (diff)
parent9480444dae9d35419e4d06777f8ca2f6013d6984 (diff)
downloadnixpkgs-96c17beaf51747b7785d66512b7033c77e2c81b7.tar
nixpkgs-96c17beaf51747b7785d66512b7033c77e2c81b7.tar.gz
nixpkgs-96c17beaf51747b7785d66512b7033c77e2c81b7.tar.bz2
nixpkgs-96c17beaf51747b7785d66512b7033c77e2c81b7.tar.lz
nixpkgs-96c17beaf51747b7785d66512b7033c77e2c81b7.tar.xz
nixpkgs-96c17beaf51747b7785d66512b7033c77e2c81b7.tar.zst
nixpkgs-96c17beaf51747b7785d66512b7033c77e2c81b7.zip
Merge pull request #145205 from Stunkymonkey/treewide-pname-version-1
Diffstat (limited to 'pkgs/tools/inputmethods')
-rw-r--r--pkgs/tools/inputmethods/fcitx/fcitx-configtool.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/tools/inputmethods/fcitx/fcitx-configtool.nix b/pkgs/tools/inputmethods/fcitx/fcitx-configtool.nix
index 3d34dcbac17..ccbec8209e9 100644
--- a/pkgs/tools/inputmethods/fcitx/fcitx-configtool.nix
+++ b/pkgs/tools/inputmethods/fcitx/fcitx-configtool.nix
@@ -1,17 +1,18 @@
 { lib, stdenv, fetchurl, makeWrapper, pkg-config, cmake, fcitx, gtk3, isocodes, gnome }:
 
 stdenv.mkDerivation rec {
-  name = "fcitx-configtool-0.4.10";
+  pname = "fcitx-configtool";
+  version = "0.4.10";
 
   meta = with lib; {
     description = "GTK-based config tool for Fcitx";
-    license     = licenses.gpl2;
-    platforms   = platforms.linux;
+    license = licenses.gpl2;
+    platforms = platforms.linux;
     maintainers = with maintainers; [ cdepillabout ];
   };
 
   src = fetchurl {
-    url = "https://download.fcitx-im.org/fcitx-configtool/${name}.tar.xz";
+    url = "https://download.fcitx-im.org/fcitx-configtool/fcitx-configtool-${version}.tar.xz";
     sha256 = "1yyi9jhkwn49lx9a47k1zbvwgazv4y4z72gnqgzdpgdzfrlrgi5w";
   };