about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2022-02-23 23:41:57 +0100
committerFelix Buehler <account@buehler.rocks>2022-02-23 23:41:57 +0100
commit215b0774d134c824ace91865d8a37c8f7839e7d8 (patch)
tree4137092053c0073c02b94140c6bd6ea9c59a5150
parent3bab4ac337e9840262c7c1d47a09818447500108 (diff)
libappindicator: rename name to pname&version
-rw-r--r--pkgs/development/libraries/libappindicator/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libappindicator/default.nix b/pkgs/development/libraries/libappindicator/default.nix
index 469235e2e6af5..8ca2acc11c715 100644
--- a/pkgs/development/libraries/libappindicator/default.nix
+++ b/pkgs/development/libraries/libappindicator/default.nix
@@ -13,8 +13,8 @@ with lib;
 
 
 stdenv.mkDerivation rec {
-  name = let postfix = if gtkVersion == "2" && monoSupport then "sharp" else "gtk${gtkVersion}";
-          in "libappindicator-${postfix}-${version}";
+  pname = let postfix = if gtkVersion == "2" && monoSupport then "sharp" else "gtk${gtkVersion}";
+          in "libappindicator-${postfix}";
   version = "12.10.1+20.10.20200706.1";
 
   outputs = [ "out" "dev" ];