nixpkgs/pkgs/applications/audio/sorcer/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1.1 KiB
Nix
Raw Normal View History

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 {
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
};
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"
'';
meta = with lib; {
broken = (stdenv.isLinux && stdenv.isAarch64);
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;
};
}