Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: eeeba2a79394
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 45a09ec5bfad
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 27, 2020

  1. slack: 4.4.{0,1} -> 4.4.2

    NeQuissimus committed Apr 27, 2020
    Copy the full SHA
    45a09ec View commit details
Showing with 9 additions and 6 deletions.
  1. +9 −6 pkgs/applications/networking/instant-messengers/slack/default.nix
Original file line number Diff line number Diff line change
@@ -40,8 +40,13 @@ let
throwSystem = throw "Unsupported system: ${system}";

sha256 = {
x86_64-darwin = "05xsbiviikrwfayjr6rvvfkm70681x2an6mgcg1cxw1fsi4sr6fd";
x86_64-linux = "0h2rfgx92yq9a6dqsv9a0r8a6m5xfrywkljjk5w9snw49b0r1p12";
x86_64-darwin = "0z731q00bwljlcmbjwqphyys7skqms1vg87pyi4nsvjmc7kjx7qg";
x86_64-linux = "0wrs0i2bqv21ivy8s88khbww28b3gsw4abbbbjc76mqma9b0bajs";
}.${system} or throwSystem;

version = {
x86_64-darwin = "4.4.2";
x86_64-linux = "4.4.2";
}.${system} or throwSystem;

meta = with stdenv.lib; {
@@ -53,8 +58,7 @@ let
};

linux = stdenv.mkDerivation rec {
inherit pname meta;
version = "4.4.0";
inherit pname meta version;
src = fetchurl {
url = "https://downloads.slack-edge.com/linux_releases/slack-desktop-${version}-amd64.deb";
inherit sha256;
@@ -140,8 +144,7 @@ let
};

darwin = stdenv.mkDerivation rec {
inherit pname meta;
version = "4.4.1";
inherit pname meta version;

phases = [ "installPhase" ];