mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
30 lines
835 B
Nix
30 lines
835 B
Nix
{ stdenv, fetchFromGitHub , boost, cairomm, cmake, libsndfile, lv2, ntk, pkgconfig, python }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "sorcer";
|
|
version = "1.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "openAVproductions";
|
|
repo = "openAV-Sorcer";
|
|
rev = "release-${version}";
|
|
sha256 = "1x7pi77nal10717l02qpnhrx6d7w5nqrljkn9zx5w7gpb8fpb3vp";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ boost cairomm cmake libsndfile lv2 ntk 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;
|
|
};
|
|
}
|