Merge pull request #157171 from DarkKirb/soundtouch-2.3.1

This commit is contained in:
Sandro 2022-08-21 23:40:39 +02:00 committed by GitHub
commit 7efd61a09a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,14 +1,15 @@
{stdenv, lib, fetchFromGitLab, autoconf, automake, libtool}:
{ stdenv, lib, fetchFromGitea, autoconf, automake, libtool }:
stdenv.mkDerivation rec {
pname = "soundtouch";
version = "2.2";
version = "2.3.1";
src = fetchFromGitLab {
owner = pname;
repo = pname;
src = fetchFromGitea {
domain = "codeberg.org";
owner = "soundtouch";
repo = "soundtouch";
rev = version;
sha256 = "12i6yg8vvqwyk412lxl2krbfby6hnxld8qxy0k4m5xp4g94jiq4p";
sha256 = "10znckb8mrnmvwj7vq12732al873qhqw27fpb5f8r0bkjdpcj3vr";
};
nativeBuildInputs = [ autoconf automake libtool ];