Skip to content

Commit

Permalink
Merge master into staging-next
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Feb 2, 2023
2 parents f9b1717 + dc109a3 commit fffb187
Show file tree
Hide file tree
Showing 38 changed files with 952 additions and 731 deletions.
3 changes: 2 additions & 1 deletion pkgs/applications/audio/csound/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
, AudioUnit
, CoreAudio
, CoreMIDI
, portaudio
, alsa-lib ? null
, libpulseaudio ? null
, libjack2 ? null
Expand Down Expand Up @@ -36,7 +37,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake flex bison gettext ];
buildInputs = [ libsndfile libsamplerate boost ]
++ lib.optionals stdenv.isDarwin [
Accelerate AudioUnit CoreAudio CoreMIDI
Accelerate AudioUnit CoreAudio CoreMIDI portaudio
] ++ lib.optionals stdenv.isLinux (builtins.filter (optional: optional != null) [
alsa-lib libpulseaudio libjack2
liblo ladspa-sdk fluidsynth eigen
Expand Down
65 changes: 65 additions & 0 deletions pkgs/applications/emulators/rpcemu/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
{ lib
, stdenv
, fetchhg
, qt5
}:

let
inherit (qt5) qtbase qtmultimedia wrapQtAppsHook;
in
stdenv.mkDerivation (self: {
pname = "rpcemu";
version = "0.9.4";

src = fetchhg {
url = "http://www.home.marutan.net/hg/rpcemu";
rev = "release_${self.version}";
sha256 = "sha256-UyjfTfUpSvJNFPkQWPKppxp/kO0hVGo5cE9RuCU8GJI=";
};

nativeBuildInputs = [
wrapQtAppsHook
];

buildInputs = [
qtbase
qtmultimedia
];

configurePhase = ''
runHook preConfigure
cd src/qt5
qmake
runHook postConfigure
'';

installPhase = ''
runHook preInstall
cd ../..
install -Dm755 rpcemu-interpreter -t $out/bin
runHook postInstall
'';

meta = {
homepage = "https://www.marutan.net/rpcemu/index.php";
description = "Risc PC Emulator";
longDescription = ''
RPCEmu is an emulator of classic Acorn computer systems, such as the Risc
PC and A7000. It runs on multiple platforms including Windows, Linux and
Mac OS X.
RPCEmu should be considered Alpha Quality code. It has many known and
unknown bugs, and all files used with it should be well backed up before
using them with RPCEmu.
'';
license = lib.licenses.gpl2Plus;
maintainers = builtins.attrValues {
inherit (lib.maintainers) AndersonTorres;
};
platforms = lib.platforms.linux;
};
})
4 changes: 2 additions & 2 deletions pkgs/applications/misc/spicetify-cli/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

buildGoModule rec {
pname = "spicetify-cli";
version = "2.14.3";
version = "2.16.1";

src = fetchFromGitHub {
owner = "spicetify";
repo = pname;
rev = "v${version}";
sha256 = "sha256-7bCl8VfkMhoTBnr+O+oBYQeSV2sRwlP/qUkNkYerZdU=";
sha256 = "sha256-Pq8HjmWSfBgieSJejrlw+FiRdq9NxryYPcw++Pdjsuk=";
};

vendorSha256 = "sha256-E2Q+mXojMb8E0zSnaCOl9xp5QLeYcuTXjhcp3Hc8gH4=";
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ rec {

thunderbird-102 = (buildMozillaMach rec {
pname = "thunderbird";
version = "102.6.1";
version = "102.7.1";
application = "comm/mail";
applicationName = "Mozilla Thunderbird";
binaryName = pname;
src = fetchurl {
url = "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz";
sha512 = "06ea2fce76c08609d638435869fddc1c4d7f4b748951ebfb2476b4dba9f1f76d3de2c11e5f62540f297a5d30bb0fc637852d8e57f4fadc2c905f299757949d83";
sha512 = "6310f3f122a1a61917ec2d0efe3a031b199ac13681e9fb4035abc0f4de0dbafb12accffbd63facb23f2cebf0124a13f7538a33176a2a513d1f685bee40db50ba";
};
extraPatches = [
# The file to be patched is different from firefox's `no-buildconfig-ffx90.patch`.
Expand Down
Loading

0 comments on commit fffb187

Please sign in to comment.