2017-06-15 12:44:16 +02:00
|
|
|
{ stdenv, fetchFromGitHub , boost, cairomm, cmake, libsndfile, lv2, ntk, pkgconfig, python }:
|
2015-05-06 13:14:14 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "sorcer";
|
2017-06-15 12:44:16 +02:00
|
|
|
version = "1.1.3";
|
2015-05-06 13:14:14 +02:00
|
|
|
|
2017-06-15 12:44:16 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "openAVproductions";
|
|
|
|
repo = "openAV-Sorcer";
|
|
|
|
rev = "release-${version}";
|
|
|
|
sha256 = "1x7pi77nal10717l02qpnhrx6d7w5nqrljkn9zx5w7gpb8fpb3vp";
|
2015-05-06 13:14:14 +02:00
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ boost cairomm cmake libsndfile lv2 ntk python ];
|
2015-05-06 13:14:14 +02:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
make install
|
|
|
|
cp -a ../presets/* "$out/lib/lv2"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://openavproductions.com/sorcer/;
|
|
|
|
description = "A wavetable LV2 plugin synth, targeted at the electronic / dubstep genre";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.magnetophon ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|