mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
Merge pull request #327467 from t4ccer/t4/non/fix-waf
This commit is contained in:
commit
333e5ec8ec
@ -17,6 +17,13 @@ stdenv.mkDerivation {
|
||||
ladspaH liblo libsigcxx lrdf
|
||||
];
|
||||
|
||||
# NOTE: non provides its own waf script that is incompatible with new
|
||||
# python versions. If the script is not present, wafHook will install
|
||||
# a compatible version from nixpkgs.
|
||||
prePatch = ''
|
||||
rm waf
|
||||
'';
|
||||
|
||||
env.CXXFLAGS = "-std=c++14";
|
||||
|
||||
meta = {
|
||||
|
@ -23249,7 +23249,9 @@ with pkgs;
|
||||
|
||||
nntp-proxy = callPackage ../applications/networking/nntp-proxy { };
|
||||
|
||||
non = callPackage ../applications/audio/non { };
|
||||
non = callPackage ../applications/audio/non {
|
||||
wafHook = (waf.override { extraTools = [ "gccdeps" ]; }).hook;
|
||||
};
|
||||
|
||||
ntl = callPackage ../development/libraries/ntl { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user