summary refs log tree commit diff
path: root/pkgs/desktops/pantheon
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2022-03-01 11:39:32 +0100
committerFelix Buehler <account@buehler.rocks>2022-03-08 13:24:25 +0100
commit783d2679e5bb16b2c0f356349df90075a02b1e8e (patch)
tree41019e3fc2ef180208cd7da41adcd6875e2b5fb5 /pkgs/desktops/pantheon
parent7e49720ea18f403ada4f491e1903445ef14a7c9a (diff)
downloadnixpkgs-783d2679e5bb16b2c0f356349df90075a02b1e8e.tar
nixpkgs-783d2679e5bb16b2c0f356349df90075a02b1e8e.tar.gz
nixpkgs-783d2679e5bb16b2c0f356349df90075a02b1e8e.tar.bz2
nixpkgs-783d2679e5bb16b2c0f356349df90075a02b1e8e.tar.lz
nixpkgs-783d2679e5bb16b2c0f356349df90075a02b1e8e.tar.xz
nixpkgs-783d2679e5bb16b2c0f356349df90075a02b1e8e.tar.zst
nixpkgs-783d2679e5bb16b2c0f356349df90075a02b1e8e.zip
treewide: rename name to pname&version
Diffstat (limited to 'pkgs/desktops/pantheon')
-rw-r--r--pkgs/desktops/pantheon/apps/switchboard/wrapper.nix3
-rw-r--r--pkgs/desktops/pantheon/desktop/wingpanel/wrapper.nix3
2 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/desktops/pantheon/apps/switchboard/wrapper.nix b/pkgs/desktops/pantheon/apps/switchboard/wrapper.nix
index 7953105951c..e42df9bee06 100644
--- a/pkgs/desktops/pantheon/apps/switchboard/wrapper.nix
+++ b/pkgs/desktops/pantheon/apps/switchboard/wrapper.nix
@@ -19,7 +19,8 @@ let
   testingName = lib.optionalString (testName != null) "${testName}-";
 in
 stdenv.mkDerivation rec {
-  name = "${testingName}${switchboard.name}-with-plugs";
+  pname = "${testingName}${switchboard.pname}-with-plugs";
+  inherit (switchboard) version;
 
   src = null;
 
diff --git a/pkgs/desktops/pantheon/desktop/wingpanel/wrapper.nix b/pkgs/desktops/pantheon/desktop/wingpanel/wrapper.nix
index ca887d45dc3..89a359a4c9d 100644
--- a/pkgs/desktops/pantheon/desktop/wingpanel/wrapper.nix
+++ b/pkgs/desktops/pantheon/desktop/wingpanel/wrapper.nix
@@ -17,7 +17,8 @@ let
     else indicators ++ (lib.optionals useDefaultIndicators wingpanelIndicators);
 in
 stdenv.mkDerivation rec {
-  name = "${wingpanel.name}-with-indicators";
+  pname = "${wingpanel.pname}-with-indicators";
+  inherit (wingpanel) version;
 
   src = null;