3873e0d191
Just got a reminder via the vulnerability roundup[1] that I'm still listed as maintainer for Synergy, even though I stopped using it years ago. I'll also take this as an opportunity to remove myself from other packages which I stopped using and thus most certainly won't be able to maintain. The latter is already hard enough these days for software which I *do* use. [1]: https://github.com/NixOS/nixpkgs/issues/94007 Signed-off-by: aszlig <aszlig@nix.build>
59 lines
1.8 KiB
Nix
59 lines
1.8 KiB
Nix
{ stdenv, mkDerivation, fetchurl, fetchFromGitHub, chromaprint
|
|
, fftw, flac, faad2, glibcLocales, mp4v2
|
|
, libid3tag, libmad, libopus, libshout, libsndfile, libusb1, libvorbis
|
|
, libGLU, libxcb, lilv, lv2, opusfile
|
|
, pkgconfig, portaudio, portmidi, protobuf, qtbase, qtscript, qtsvg
|
|
, qtx11extras, rubberband, sconsPackages, sqlite, taglib, upower, vamp-plugin-sdk
|
|
}:
|
|
|
|
let
|
|
# Because libshout 2.4.2 and newer seem to break streaming in mixxx, build it
|
|
# with 2.4.1 instead.
|
|
libshout241 = libshout.overrideAttrs (o: rec {
|
|
name = "libshout-2.4.1";
|
|
src = fetchurl {
|
|
url = "http://downloads.xiph.org/releases/libshout/${name}.tar.gz";
|
|
sha256 = "0kgjpf8jkgyclw11nilxi8vyjk4s8878x23qyxnvybbgqbgbib7k";
|
|
};
|
|
});
|
|
in
|
|
mkDerivation rec {
|
|
pname = "mixxx";
|
|
version = "2.2.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mixxxdj";
|
|
repo = "mixxx";
|
|
rev = "release-${version}";
|
|
sha256 = "1dj9li8av9b2kbm76jvvbdmihy1pyrw0s4xd7dd524wfhwr1llxr";
|
|
};
|
|
|
|
nativeBuildInputs = [ sconsPackages.scons_3_1_2 ];
|
|
buildInputs = [
|
|
chromaprint fftw flac faad2 glibcLocales mp4v2 libid3tag libmad libopus libshout241 libsndfile
|
|
libusb1 libvorbis libxcb libGLU lilv lv2 opusfile pkgconfig portaudio portmidi protobuf qtbase qtscript qtsvg
|
|
qtx11extras rubberband sqlite taglib upower vamp-plugin-sdk
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
sconsFlags = [
|
|
"build=release"
|
|
"qtdir=${qtbase}"
|
|
"faad=1"
|
|
"opus=1"
|
|
];
|
|
|
|
qtWrapperArgs = [
|
|
"--set LOCALE_ARCHIVE ${glibcLocales}/lib/locale/locale-archive"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://mixxx.org";
|
|
description = "Digital DJ mixing software";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ maintainers.goibhniu maintainers.bfortz ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|