mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 14:57:28 +03:00
Merge pull request #56096 from Infinisil/fix/murmur_git
murmur_git: Fix
This commit is contained in:
commit
e56d2beeae
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, fetchFromGitHub, fetchpatch, pkgconfig
|
{ stdenv, fetchurl, fetchFromGitHub, fetchpatch, makeWrapper, pkgconfig
|
||||||
, qt4, qmake4Hook, qt5, avahi, boost, libopus, libsndfile, protobuf, speex, libcap
|
, qt4, qmake4Hook, qt5, avahi, boost, libopus, libsndfile, protobuf, speex, libcap
|
||||||
, alsaLib, python
|
, alsaLib, python
|
||||||
, jackSupport ? false, libjack2 ? null
|
, jackSupport ? false, libjack2 ? null
|
||||||
@ -154,5 +154,12 @@ in {
|
|||||||
murmur = server stableSource;
|
murmur = server stableSource;
|
||||||
murmur_git = (server gitSource).overrideAttrs (old: {
|
murmur_git = (server gitSource).overrideAttrs (old: {
|
||||||
meta = old.meta // { broken = iceSupport; };
|
meta = old.meta // { broken = iceSupport; };
|
||||||
|
|
||||||
|
nativeBuildInputs = old.nativeBuildInputs or [] ++ [ makeWrapper ];
|
||||||
|
|
||||||
|
installPhase = old.installPhase or "" + ''
|
||||||
|
wrapProgram $out/bin/murmurd --suffix QT_PLUGIN_PATH : \
|
||||||
|
${getBin qt5.qtbase}/${qt5.qtbase.qtPluginPrefix}
|
||||||
|
'';
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user