push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
{
lib,
stdenv,
fetchurl,
alsa-lib-with-plugins,
alsa-utils,
fltk,
libjack2,
libXft,
libXpm,
libjpeg,
libpng,
libsamplerate,
libsndfile,
zlib,
}:
stdenv.mkDerivation rec {
pname = "rakarrack";
version = "0.6.1";
src = fetchurl {
url = "mirror://sourceforge/rakarrack/${pname}-${version}.tar.bz2";
sha256 = "1rpf63pdn54c4yg13k7cb1w1c7zsvl97c4qxcpz41c8l91xd55kn";
};
hardeningDisable = [ "format" ];
patches = [
./fltk-path.patch
# https://sourceforge.net/p/rakarrack/git/merge-requests/2/
./looper-preset.patch
];
buildInputs = [
alsa-lib-with-plugins
alsa-utils
fltk
libjack2
libXft
libXpm
libjpeg
libpng
libsamplerate
libsndfile
zlib
];
meta = with lib; {
description = "Multi-effects processor emulating a guitar effects pedalboard";
homepage = "https://rakarrack.sourceforge.net";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ ];
};
}

View File

@@ -0,0 +1,35 @@
commit 47245c3fd30dc326fedd7cdae444ddcf0fd97490
Author: holborn <holborn@users.sourceforge.net>
Date: Tue Apr 19 15:02:26 2011 +0100
Fix FL path
modified: src/global.h
modified: src/process.C
diff --git a/src/global.h b/src/global.h
index fc74b06..3e33da9 100644
--- a/src/global.h
+++ b/src/global.h
@@ -176,7 +176,7 @@ return y;
#include <X11/xpm.h>
#include <jack/jack.h>
#include <jack/midiport.h>
-#include <Fl/Fl_Preferences.H>
+#include <FL/Fl_Preferences.H>
#include "FPreset.h"
#include "Reverb.h"
#include "Chorus.h"
diff --git a/src/process.C b/src/process.C
index 51bbc65..c993ff8 100644
--- a/src/process.C
+++ b/src/process.C
@@ -28,7 +28,7 @@
#include <fcntl.h>
#include <sys/types.h>
#include <unistd.h>
-#include <Fl/Fl_Preferences.H>
+#include <FL/Fl_Preferences.H>
#include "global.h"
int Pexitprogram, preset;

View File

@@ -0,0 +1,11 @@
diff -Naurd rakarrack-0.6.1/src/Looper.C rakarrack-0.6.1-segfault/src/Looper.C
--- rakarrack-0.6.1/src/Looper.C 2010-10-01 01:27:55.000000000 +0000
+++ rakarrack-0.6.1-segfault/src/Looper.C 2023-12-08 21:12:31.818569726 +0000
@@ -34,6 +34,7 @@
efxoutr = efxoutr_;
//default values
+ Ppreset = 0;
Pclear = 1;
Pplay = 0;
Precord = 0;