sox: use fetchgit instead of sourceforge unreliable snapshot url

See also discussion at: https://github.com/NixOS/nixpkgs/pull/240866
This commit is contained in:
Doron Behar 2023-07-02 16:26:42 +03:00
parent 4586970ee7
commit 908a6c4ad9

View file

@ -1,7 +1,7 @@
{ config
, lib
, stdenv
, fetchzip
, fetchgit
, autoreconfHook
, autoconf-archive
, pkg-config
@ -39,8 +39,13 @@ stdenv.mkDerivation rec {
pname = "sox";
version = "unstable-2021-05-09";
src = fetchzip {
url = "https://sourceforge.net/code-snapshots/git/s/so/sox/code.git/sox-code-42b3557e13e0fe01a83465b672d89faddbe65f49.zip";
src = fetchgit {
# not really needed, but when this src was updated from `fetchurl ->
# fetchgit`, we spared the mass rebuild by changing this `name` and
# therefor merge this to `master` and not to `staging`.
name = "source";
url = "https://git.code.sf.net/p/sox/code";
rev = "42b3557e13e0fe01a83465b672d89faddbe65f49";
hash = "sha256-9cpOwio69GvzVeDq79BSmJgds9WU5kA/KUlAkHcpN5c=";
};