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)
This commit is contained in:
Orivej Desh 2023-11-13 12:04:59 +00:00 committed by GitHub
parent c241965533
commit 6ed37e8e04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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