jack_capture: 0.9.73 -> 0.9.73.2023-01-04 (#264941)

Fixes #263505 (broken build)

Upstream has fixed this in 2021 (https://github.com/kmatheussen/jack_capture/pull/45)
but has made no releases since (https://github.com/kmatheussen/jack_capture/issues/32)

Changed files
+9 -7
pkgs
applications
audio
jack-capture
+9 -7
pkgs/applications/audio/jack-capture/default.nix
···
-
{ lib, stdenv, fetchurl, libjack2, libsndfile, pkg-config }:
stdenv.mkDerivation rec {
pname = "jack_capture";
-
version = "0.9.73";
-
src = fetchurl {
-
url = "https://archive.notam02.no/arkiv/src/${pname}-${version}.tar.gz";
-
sha256 = "1pji0zdwm3kxjrkbzj7fnxhr8ncrc8pyqnwyrh47fhypgqjv1br1";
};
nativeBuildInputs = [ pkg-config ];
···
meta = with lib; {
description = "A program for recording soundfiles with jack";
-
homepage = "http://archive.notam02.no/arkiv/src";
license = licenses.gpl2;
-
maintainers = [ maintainers.goibhniu ];
platforms = lib.platforms.linux;
};
}
···
+
{ lib, stdenv, fetchFromGitHub, libjack2, libsndfile, pkg-config }:
stdenv.mkDerivation rec {
pname = "jack_capture";
+
version = "0.9.73.2023-01-04";
+
src = fetchFromGitHub {
+
owner = "kmatheussen";
+
repo = "jack_capture";
+
rev = "a539d444d388c4cfed7279e385830e7767d59c41";
+
sha256 = "sha256-2DavZS4esV17a3vkiPvfCfp0QF94ZcXqdIw84h9HDjA=";
};
nativeBuildInputs = [ pkg-config ];
···
meta = with lib; {
description = "A program for recording soundfiles with jack";
+
homepage = "https://github.com/kmatheussen/jack_capture/";
license = licenses.gpl2;
+
maintainers = with maintainers; [ goibhniu orivej ];
platforms = lib.platforms.linux;
};
}