2022-01-16 18:25:55 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub , boost, cairomm, cmake, libsndfile, lv2, ntk, pkg-config }:
|
2015-05-06 11:14:14 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "sorcer";
|
2017-06-15 10:44:16 +00:00
|
|
|
version = "1.1.3";
|
2015-05-06 11:14:14 +00:00
|
|
|
|
2017-06-15 10:44:16 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "openAVproductions";
|
|
|
|
repo = "openAV-Sorcer";
|
|
|
|
rev = "release-${version}";
|
|
|
|
sha256 = "1x7pi77nal10717l02qpnhrx6d7w5nqrljkn9zx5w7gpb8fpb3vp";
|
2015-05-06 11:14:14 +00:00
|
|
|
};
|
|
|
|
|
2020-12-31 07:48:55 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2022-01-16 18:25:55 +00:00
|
|
|
buildInputs = [ boost cairomm libsndfile lv2 ntk ];
|
2015-05-06 11:14:14 +00:00
|
|
|
|
2020-06-05 11:27:25 +00:00
|
|
|
postPatch = ''
|
|
|
|
# Fix build with lv2 1.18: https://github.com/brummer10/guitarix/commit/c0334c72
|
|
|
|
find . -type f -exec fgrep -q LV2UI_Descriptor {} \; \
|
|
|
|
-exec sed -i {} -e 's/const struct _\?LV2UI_Descriptor/const LV2UI_Descriptor/' \;
|
|
|
|
'';
|
|
|
|
|
2015-05-06 11:14:14 +00:00
|
|
|
installPhase = ''
|
|
|
|
make install
|
|
|
|
cp -a ../presets/* "$out/lib/lv2"
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2022-05-29 09:37:28 +00:00
|
|
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://openavproductions.com/sorcer/";
|
2015-05-06 11:14:14 +00:00
|
|
|
description = "A wavetable LV2 plugin synth, targeted at the electronic / dubstep genre";
|
2020-12-31 16:11:09 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2015-05-06 11:14:14 +00:00
|
|
|
maintainers = [ maintainers.magnetophon ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|