ripcord: create separate derivation for darwin

This commit is contained in:
Mark Vainomaa 2022-02-10 13:23:58 +02:00
parent 4136688395
commit 4d1a32607e
No known key found for this signature in database
GPG Key ID: 1B3F9523B542D315
2 changed files with 37 additions and 1 deletions

View File

@ -0,0 +1,33 @@
{ stdenvNoCC, lib, fetchzip }:
stdenvNoCC.mkDerivation rec {
pname = "ripcord";
version = "0.4.29";
src = fetchzip {
url = "https://cancel.fm/dl/Ripcord_Mac_${version}.zip";
sha256 = "sha256-v8iydjLBjFN5LuctpcBpEkhSICxPhLKzLjSASWtsQok=";
stripRoot = false;
};
dontBuild = true;
dontFixup = true; # modification is not allowed by the license https://cancel.fm/ripcord/shareware-redistribution/
installPhase = ''
runHook preInstall
mkdir -p $out/Applications
cp -r $src/Ripcord.app $out/Applications/
runHook postInstall
'';
meta = with lib; {
description = "Desktop chat client for Slack and Discord";
homepage = "https://cancel.fm/ripcord/";
# See: https://cancel.fm/ripcord/shareware-redistribution/
license = licenses.unfreeRedistributable;
maintainers = with maintainers; [ mikroskeem ];
platforms = [ "x86_64-darwin" ];
};
}

View File

@ -28461,7 +28461,10 @@ with pkgs;
ries = callPackage ../applications/science/math/ries { };
ripcord = qt5.callPackage ../applications/networking/instant-messengers/ripcord { };
ripcord = if stdenv.isLinux then
qt5.callPackage ../applications/networking/instant-messengers/ripcord { }
else
callPackage ../applications/networking/instant-messengers/ripcord/darwin.nix { };
ripser = callPackage ../applications/science/math/ripser { };