Unverified Commit d22d5cd5 authored by ajs124's avatar ajs124 Committed by GitHub
Browse files

Merge pull request #203026 from NixOS/backport-202925-to-release-22.11

[Backport release-22.11] jackmix: build using python3
parents 26802644 f266f278
Loading
Loading
Loading
Loading
+12 −3
Original line number Diff line number Diff line
{ mkDerivation, lib, fetchFromGitHub, pkg-config, sconsPackages, qtbase, lash, libjack2, jack ? libjack2, alsa-lib }:
{ mkDerivation, lib, fetchFromGitHub, pkg-config, sconsPackages, qtbase, lash, libjack2, jack ? libjack2, alsa-lib
, fetchpatch
}:

mkDerivation rec {
  pname = "jackmix";
@@ -11,9 +13,16 @@ mkDerivation rec {
    sha256 = "0p59411vk38lccn24r7nih10jpgg9i46yc26zpc3x13amxwwpd4h";
  };

  patches = [ ./no_error.patch ];
  patches = [
    ./no_error.patch
    (fetchpatch {
      name = "sconstruct-python3.patch";
      url = "https://github.com/kampfschlaefer/jackmix/commit/3a0c868b267728fdbc69cc3dc1941edac27d97f6.patch";
      hash = "sha256-MLgxIiZ0+C1IVEci9Q347DR+SJUlPG2N3iPvuhRptJU=";
    })
  ];

  nativeBuildInputs = [ sconsPackages.scons_3_1_2 pkg-config ];
  nativeBuildInputs = [ sconsPackages.scons_latest pkg-config ];
  buildInputs = [
    qtbase
    lash