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: cf3130641a0d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3d4ee7c66044
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 21, 2021

  1. reaper: 6.19 -> 6.20

    ilian committed Jan 21, 2021
    Copy the full SHA
    22cccad View commit details
  2. reaper: add ilian as maintainer

    ilian committed Jan 21, 2021
    Copy the full SHA
    4df406a View commit details

Commits on Jan 22, 2021

  1. Merge pull request #110344 from ilian/u/reaper

    reaper: 6.19 -> 6.20
    Ma27 authored Jan 22, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3d4ee7c View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/applications/audio/reaper/default.nix
6 changes: 3 additions & 3 deletions pkgs/applications/audio/reaper/default.nix
Original file line number Diff line number Diff line change
@@ -6,11 +6,11 @@

stdenv.mkDerivation rec {
pname = "reaper";
version = "6.19";
version = "6.20";

src = fetchurl {
url = "https://www.reaper.fm/files/${lib.versions.major version}.x/reaper${builtins.replaceStrings ["."] [""] version}_linux_x86_64.tar.xz";
sha256 = "1cdy5ilpfidz7xyqn2i41szr24ilcmpl35aw1vbashf0b6dg48la";
sha256 = "194xglhk74ks534r3d00v84s26s4yybxkhb4h8k5rqp76g0jv635";
};

nativeBuildInputs = [ autoPatchelfHook makeWrapper ];
@@ -55,6 +55,6 @@ stdenv.mkDerivation rec {
homepage = "https://www.reaper.fm/";
license = licenses.unfree;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ jfrankenau ];
maintainers = with maintainers; [ jfrankenau ilian ];
};
}