sfxr-qt: fix build w/glibc-2.34
Failing Hydra build: https://hydra.nixos.org/build/163999266
This commit is contained in:
parent
25172c97d0
commit
11597d1162
1 changed files with 7 additions and 0 deletions
|
@ -7,6 +7,7 @@
|
|||
, qtquickcontrols2
|
||||
, SDL
|
||||
, python3
|
||||
, catch2
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
|
@ -21,6 +22,10 @@ mkDerivation rec {
|
|||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
cp ${catch2}/include/catch2/catch.hpp 3rdparty/catch2/single_include/catch2/catch.hpp
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
extra-cmake-modules
|
||||
|
@ -33,6 +38,8 @@ mkDerivation rec {
|
|||
SDL
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/agateau/sfxr-qt";
|
||||
description = "A sound effect generator, QtQuick port of sfxr";
|
||||
|
|
Loading…
Reference in a new issue