Unverified Commit c2845cad authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #304241 from christoph-heiss/floorp-update

floorp: 11.11.2 -> 11.12.0
parents eaa25eab a75d3b45
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@

((buildMozillaMach rec {
  pname = "floorp";
  packageVersion = "11.11.2";
  packageVersion = "11.12.0";
  applicationName = "Floorp";
  binaryName = "floorp";
  branding = "browser/branding/official";
@@ -22,7 +22,7 @@
    repo = "Floorp";
    fetchSubmodules = true;
    rev = "v${packageVersion}";
    hash = "sha256-a9f4+t2w8aOOLNaKkr+FuY0ENa/Nkukg9pvJTiUMfWk=";
    hash = "sha256-9mJW8VFYClQ3D8/nPtlCVaVULvEICS+RQhz1dLujn6Q=";
  };

  extraConfigureFlags = [
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ updateBaseVersion() {

updateHash() {
    local hash
    hash=$(nix-prefetch-github --fetch-submodules --rev "v$1" $owner $repo | jq .hash)
    hash=$(nix-prefetch-github --fetch-submodules --rev "v$1" $owner $repo | jq -r .hash)
    sed -i "s|hash = \"[a-zA-Z0-9\/+-=]*\";|hash = \"$hash\";|g" "$dirname/default.nix"
}