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

Commits on Nov 12, 2020

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2deeb58 View commit details
Showing with 7 additions and 4 deletions.
  1. +7 −4 pkgs/development/libraries/soundtouch/default.nix
11 changes: 7 additions & 4 deletions pkgs/development/libraries/soundtouch/default.nix
Original file line number Diff line number Diff line change
@@ -2,23 +2,26 @@

stdenv.mkDerivation rec {
pname = "soundtouch";
version = "2.1.2";
version = "2.2";

src = fetchFromGitLab {
owner = pname;
repo = pname;
rev = version;
sha256 = "174wgm3s0inmbnkrlnspxjwm2014qhjhkbdqa5r8rbfi0nzqxzsz";
sha256 = "12i6yg8vvqwyk412lxl2krbfby6hnxld8qxy0k4m5xp4g94jiq4p";
};

nativeBuildInputs = [ autoconf automake libtool ];

preConfigure = "./bootstrap";

enableParallelBuilding = true;

meta = with lib; {
description = "A program and library for changing the tempo, pitch and playback rate of audio";
homepage = "http://www.surina.net/soundtouch/";
license = licenses.lgpl21;
homepage = "https://www.surina.net/soundtouch/";
license = licenses.lgpl21Plus;
platforms = platforms.all;
maintainers = with maintainers; [ orivej ];
};
}