mixxx 2.1.3: Fixed glibc locale bug
This commit is contained in:
parent
17564e0ed9
commit
a847dccf45
@ -1,4 +1,5 @@
|
|||||||
{ stdenv, fetchFromGitHub, chromaprint, fetchpatch, fftw, flac, faad2, mp4v2
|
{ stdenv, fetchFromGitHub, makeWrapper, chromaprint, fetchpatch
|
||||||
|
, fftw, flac, faad2, glibcLocales, mp4v2
|
||||||
, libid3tag, libmad, libopus, libshout, libsndfile, libusb1, libvorbis
|
, libid3tag, libmad, libopus, libshout, libsndfile, libusb1, libvorbis
|
||||||
, pkgconfig, portaudio, portmidi, protobuf, qt4, rubberband, scons, sqlite
|
, pkgconfig, portaudio, portmidi, protobuf, qt4, rubberband, scons, sqlite
|
||||||
, taglib, upower, vampSDK
|
, taglib, upower, vampSDK
|
||||||
@ -15,8 +16,10 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1fm8lkbnxka4haidf6yr8mb3r6vaxmc97hhrp8pcx0fvq2mnzvy2";
|
sha256 = "1fm8lkbnxka4haidf6yr8mb3r6vaxmc97hhrp8pcx0fvq2mnzvy2";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
chromaprint fftw flac faad2 mp4v2 libid3tag libmad libopus libshout libsndfile
|
chromaprint fftw flac faad2 glibcLocales mp4v2 libid3tag libmad libopus libshout libsndfile
|
||||||
libusb1 libvorbis pkgconfig portaudio portmidi protobuf qt4
|
libusb1 libvorbis pkgconfig portaudio portmidi protobuf qt4
|
||||||
rubberband scons sqlite taglib upower vampSDK
|
rubberband scons sqlite taglib upower vampSDK
|
||||||
];
|
];
|
||||||
@ -42,6 +45,11 @@ stdenv.mkDerivation rec {
|
|||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
fixupPhase = ''
|
||||||
|
wrapProgram $out/bin/mixxx \
|
||||||
|
--set LOCALE_ARCHIVE ${glibcLocales}/lib/locale/locale-archive;
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://mixxx.org;
|
homepage = https://mixxx.org;
|
||||||
description = "Digital DJ mixing software";
|
description = "Digital DJ mixing software";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user