From 3ca38da728daaba2130ba72599d9358da188024c Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Wed, 6 May 2015 13:14:14 +0200 Subject: add Sorcer, an LV2 synth. --- pkgs/applications/audio/sorcer/default.nix | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 pkgs/applications/audio/sorcer/default.nix (limited to 'pkgs/applications/audio/sorcer') diff --git a/pkgs/applications/audio/sorcer/default.nix b/pkgs/applications/audio/sorcer/default.nix new file mode 100644 index 00000000000..ef28180cc3b --- /dev/null +++ b/pkgs/applications/audio/sorcer/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchurl, boost, cairomm, cmake, libsndfile, lv2, ntk, pkgconfig, python }: + +stdenv.mkDerivation rec { + name = "sorcer-${version}"; + version = "1.1.1"; + + src = fetchurl { + url = "https://github.com/harryhaaren/openAV-Sorcer/archive/release-${version}.tar.gz"; + sha256 = "1jkhs2rhn4givac7rlbj8067r7qq6jnj3ixabb346nw7pd6gn1wn"; + }; + + buildInputs = [ boost cairomm cmake libsndfile lv2 ntk pkgconfig python ]; + + 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; + }; +} -- cgit 1.4.1