treewide: Fix packages using name where they should use pname

This commit is contained in:
Patrick Hilhorst
2018-11-06 00:06:17 +01:00
parent 320c9c10de
commit b0e9fc131c
27 changed files with 31 additions and 31 deletions
+2 -2
View File
@@ -3,12 +3,12 @@
with lib;
stdenv.mkDerivation rec {
name = "kubectx";
pname = "kubectx";
version = "0.6.1";
src = fetchFromGitHub {
owner = "ahmetb";
repo = "${name}";
repo = pname;
rev = "v${version}";
sha256 = "1507g8sm73mqfsxl3fabmj37pk9l4jddsdi4qlpf0ixhk3z1lfkg";
};