Unverified Commit e2642aa7 authored by h7x4's avatar h7x4 Committed by GitHub
Browse files

various: fix superfluous use of pname (#441345)

parents 5b798cbf 693d7a42
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@

buildMozillaMach rec {
  pname = "firefox-beta";
  binaryName = pname;
  binaryName = "firefox-beta";
  version = "144.0b4";
  applicationName = "Firefox Beta";
  src = fetchurl {
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@

buildMozillaMach rec {
  pname = "firefox-devedition";
  binaryName = pname;
  binaryName = "firefox-devedition";
  version = "144.0b4";
  applicationName = "Firefox Developer Edition";
  requireSigning = false;
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ buildGoModule rec {

  src = fetchFromGitHub {
    owner = "containernetworking";
    repo = pname;
    repo = "cni";
    rev = "v${version}";
    hash = "sha256-xeajsM8ZIlI6Otv9CQhPfYaVQwmJ5QcFEn1xt6e/ivQ=";
  };
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {

  src = fetchFromGitHub {
    owner = "aslafy-z";
    repo = pname;
    repo = "helm-git";
    rev = "v${version}";
    sha256 = "sha256-/J/RAFNsxwG9aiCe28daJmC2D6Gz7CrPjucqkhC++y0=";
  };
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ buildGoModule rec {

  src = fetchFromGitHub {
    owner = "hypnoglow";
    repo = pname;
    repo = "helm-s3";
    rev = "v${version}";
    hash = "sha256-9n/Dzgr/wYGgJq47FdNGPPpOFzTRt4VaK8HA06F5FIE=";
  };
Loading