···116116117117- `tut` has been updated from 1.0.34 to 2.0.0, and now uses the TOML format for the configuration file instead of INI. Additional information can be found [here](https://github.com/RasmusLindroth/tut/releases/tag/2.0.0).
118118119119+- `i3status-rust` has been updated from 0.22.0 to 0.30.5, and this brings many changes to its configuration format. Additional information can be found [here](https://github.com/greshake/i3status-rust/blob/v0.30.0/NEWS.md).
120120+119121- The `wordpress` derivation no longer contains any builtin plugins or themes. If you need them you have to add them back to prevent your site from breaking. You can find them in `wordpressPackages.{plugins,themes}`.
120122121123- `llvmPackages_rocm.llvm` will not contain `clang` or `compiler-rt`. `llvmPackages_rocm.clang` will not contain `llvm`. `llvmPackages_rocm.clangNoCompilerRt` has been removed in favor of using `llvmPackages_rocm.clang-unwrapped`.
+5-1
nixos/release-small.nix
···11# This jobset is used to generate a NixOS channel that contains a
22# small subset of Nixpkgs, mostly useful for servers that need fast
33# security updates.
44-44+#
55+# Individual jobs can be tested by running:
66+#
77+# nix-build nixos/release-small.nix -A <jobname>
88+#
59{ nixpkgs ? { outPath = (import ../lib).cleanSource ./..; revCount = 56789; shortRev = "gfedcba"; }
610, stableBranch ? false
711, supportedSystems ? [ "aarch64-linux" "x86_64-linux" ] # no i686-linux
+28-19
pkgs/applications/audio/tap-plugins/default.nix
···11-{ lib, stdenv, ladspa-sdk, pkgs, ... }:
11+{ lib
22+, stdenv
33+, fetchFromGitHub
44+, ladspa-sdk
55+}:
2633-stdenv.mkDerivation rec {
77+stdenv.mkDerivation (self: {
48 pname = "tap-plugins";
55- version = "1.0.1";
99+ version = "unstable-2020-12-09";
61077- src = pkgs.fetchFromGitHub {
88- owner = "tomszilagyi";
99- repo = pname;
1010- rev = "v${version}";
1111- sha256 = "0c6qhyf8smlypc36vmpr42dm3mrzk6pg9cc9r0vx22qbrd5zfpjw";
1111+ src = fetchFromGitHub {
1212+ owner = "tomscii";
1313+ repo = "tap-plugins";
1414+ rev = "5d882799f37dffe37fc73451f2c5b4fb24316f3b";
1515+ hash = "sha256-bwybMxIAbOzPr43QGshjbnRK5GdziGiYDsTutZdSj4s=";
1216 };
13171414- buildInputs = [ ladspa-sdk ];
1818+ buildInputs = [
1919+ ladspa-sdk
2020+ ];
15211616- preInstall = ''
2222+ postPatch = ''
1723 substituteInPlace Makefile --replace /usr/local "$out"
1824 '';
19252020- meta = with lib; {
2626+ meta = {
2727+ homepage = "https://tomscii.sig7.se/tap-plugins/";
2128 description = "Tom's Audio Processing plugins";
2229 longDescription = ''
2323- A number of LADSPA plugins including: TAP AutoPanner, TAP Chorus/Flanger, TAP DeEsser,
2424- TAP Dynamics (Mono & Stereo), TAP Equalizer and TAP Equalizer/BW, TAP Fractal Doubler, TAP Pink/Fractal Noise,
2525- TAP Pitch Shifter, TAP Reflector, TAP Reverberator, TAP Rotary Speaker, TAP Scaling Limiter,
2626- TAP Sigmoid Booster, TAP Stereo Echo, TAP Tremolo, TAP TubeWarmth, TAP Vibrato.
3030+ A number of LADSPA plugins including: TAP AutoPanner, TAP Chorus/Flanger,
3131+ TAP DeEsser, TAP Dynamics (Mono & Stereo), TAP Equalizer and TAP
3232+ Equalizer/BW, TAP Fractal Doubler, TAP Pink/Fractal Noise, TAP Pitch
3333+ Shifter, TAP Reflector, TAP Reverberator, TAP Rotary Speaker, TAP Scaling
3434+ Limiter, TAP Sigmoid Booster, TAP Stereo Echo, TAP Tremolo, TAP
3535+ TubeWarmth, TAP Vibrato.
2736 '';
2828- homepage = "https://tap-plugins.sourceforge.net/ladspa.html";
2929- license = licenses.gpl3;
3030- maintainers = [ maintainers.fps ];
3737+ license = lib.licenses.gpl3Plus;
3838+ maintainers = [ lib.maintainers.AndersonTorres ];
3939+ platforms = lib.platforms.unix;
3140 };
3232-}
4141+})