diff options
| author | Francesco Gazzetta <fgaz@fgaz.me> | 2024-02-09 11:26:34 +0100 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-02-13 10:59:11 +0000 |
| commit | bd7dadb16bde076d30a2554ad250e86197b8c617 (patch) | |
| tree | bdd7c91e8aac3306eb260da500f7e26a8755f717 | |
| parent | virglrenderer: 1.0.0 -> 1.0.1 (diff) | |
| download | nixpkgs-bd7dadb16bde076d30a2554ad250e86197b8c617.tar.gz | |
sfxr: fix segfault
Fixes #165010
(cherry picked from commit 9f17995b41779ca94c7edb55f7ab6153c0300180)
| -rw-r--r-- | pkgs/applications/audio/sfxr/default.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/applications/audio/sfxr/default.nix b/pkgs/applications/audio/sfxr/default.nix index 1a35fe8830f4..caef7fdd19a0 100644 --- a/pkgs/applications/audio/sfxr/default.nix +++ b/pkgs/applications/audio/sfxr/default.nix @@ -1,5 +1,6 @@ { lib, stdenv , fetchurl +, fetchpatch , pkg-config , desktop-file-utils , SDL @@ -17,6 +18,14 @@ stdenv.mkDerivation rec { sha256 = "0dfqgid6wzzyyhc0ha94prxax59wx79hqr25r6if6by9cj4vx4ya"; }; + patches = [ + # Fix segfault + (fetchpatch { + url = "https://src.fedoraproject.org/rpms/sfxr/raw/223e58e68857c2018ced635e8209bb44f3616bf8/f/sfxr-sdl-gcc8x.patch"; + hash = "sha256-etn4AutkNrhEDH9Ep8MhH9JSJEd7V/JXwjQua5uhAmg="; + }) + ]; + postPatch = '' substituteInPlace Makefile --replace "usr/" "" substituteInPlace sdlkit.h --replace \ |
