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

27 lines
742 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub,
automake, pkgconfig, lv2, fftw, cmake, xorg, libjack2, libsamplerate, libsndfile
2015-08-15 19:59:31 +00:00
}:
stdenv.mkDerivation rec {
repo = "rkrlv2";
2017-12-13 12:08:02 +00:00
name = "${repo}-b2.0";
2015-08-15 19:59:31 +00:00
src = fetchFromGitHub {
owner = "ssj71";
inherit repo;
2017-12-13 12:08:02 +00:00
rev = "beta_2";
sha256 = "128jcilbrd1l65c01w2bazsb21x78mng0jjkhi3x9crf1n9qbh2m";
2015-08-15 19:59:31 +00:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = with xorg; [ automake lv2 fftw cmake libXpm libjack2 libsamplerate libsndfile libXft ];
2015-08-15 19:59:31 +00:00
meta = {
description = "Rakarrak effects ported to LV2";
homepage = "https://github.com/ssj71/rkrlv2";
2015-08-15 19:59:31 +00:00
license = stdenv.lib.licenses.gpl3;
maintainers = [ stdenv.lib.maintainers.joelmo ];
platforms = stdenv.lib.platforms.linux;
2015-08-15 19:59:31 +00:00
};
}