9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
36 lines
869 B
Nix
36 lines
869 B
Nix
{ mkDerivation, lib, fetchFromGitHub, pkg-config, sconsPackages, qtbase, lash, libjack2, jack ? libjack2, alsaLib }:
|
|
|
|
mkDerivation rec {
|
|
pname = "jackmix";
|
|
version = "0.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kampfschlaefer";
|
|
repo = "jackmix";
|
|
rev = version;
|
|
sha256 = "0p59411vk38lccn24r7nih10jpgg9i46yc26zpc3x13amxwwpd4h";
|
|
};
|
|
|
|
patches = [ ./no_error.patch ];
|
|
|
|
nativeBuildInputs = [ sconsPackages.scons_3_1_2 pkg-config ];
|
|
buildInputs = [
|
|
qtbase
|
|
lash
|
|
jack
|
|
alsaLib
|
|
];
|
|
|
|
installPhase = ''
|
|
install -D jackmix/jackmix $out/bin/jackmix
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Matrix-Mixer for the Jack-Audio-connection-Kit";
|
|
homepage = "https://github.com/kampfschlaefer/jackmix";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ kampfschlaefer ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|