aboutsummaryrefslogtreecommitdiff
path: root/pkgs/desktops/pantheon/desktop/wingpanel-indicators/applications-menu/default.nix
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-08-05 18:41:32 -0400
committerworldofpeace <worldofpeace@protonmail.ch>2019-08-05 18:41:32 -0400
commit52fa0c2cc50ab8c2ff75565250f1507957af8f95 (patch)
tree31b06a214fe877ae3a745ae8543cc08f999e30ab /pkgs/desktops/pantheon/desktop/wingpanel-indicators/applications-menu/default.nix
parent57d65085125df25b980e63bd51fa5cb39ed3857d (diff)
pantheon: use repoName
Now these expressions don't look so weird.
Diffstat (limited to 'pkgs/desktops/pantheon/desktop/wingpanel-indicators/applications-menu/default.nix')
-rw-r--r--pkgs/desktops/pantheon/desktop/wingpanel-indicators/applications-menu/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/applications-menu/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/applications-menu/default.nix
index 0d00ee2072dd..3a497a23b9bb 100644
--- a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/applications-menu/default.nix
+++ b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/applications-menu/default.nix
@@ -4,22 +4,22 @@
, bc }:
stdenv.mkDerivation rec {
- pname = "applications-menu";
+ pname = "wingpanel-applications-menu";
version = "2.4.3";
- name = "wingpanel-${pname}-${version}";
+ repoName = "applications-menu";
src = fetchFromGitHub {
owner = "elementary";
- repo = pname;
+ repo = repoName;
rev = version;
sha256 = "15mwfynaa57jii43x77iaz5gqjlylh5zxc70am8zgp8vhgzflvyd";
};
passthru = {
updateScript = pantheon.updateScript {
- repoName = pname;
- attrPath = "wingpanel-${pname}";
+ inherit repoName;
+ attrPath = pname;
};
};