2021-06-10 02:57:09 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, fltk, alsa-lib, freetype, libXrandr, libXinerama, libXcursor, lv2, libjack2, cmake, pkg-config }:
|
2019-11-03 21:59:33 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ensemble-chorus";
|
2024-01-22 15:41:04 +00:00
|
|
|
version = "0-unstable-2019-02-15";
|
2019-11-03 21:59:33 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jpcima";
|
|
|
|
repo = pname;
|
|
|
|
rev = "59baeb86b8851f521bc8162e22e3f15061662cc3";
|
|
|
|
sha256 = "0c1y10vyhrihcjvxqpqf6b52yk5yhwh813cfp6nla5ax2w88dbhr";
|
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
2024-05-11 07:31:11 +00:00
|
|
|
patches = [
|
|
|
|
# fix compile error regarding packed attribute in 3rd party juice library
|
|
|
|
./juice-cxx-packing-fix.diff
|
|
|
|
];
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2019-11-03 21:59:33 +00:00
|
|
|
|
|
|
|
buildInputs = [
|
2021-06-10 02:57:09 +00:00
|
|
|
fltk alsa-lib freetype libXrandr libXinerama libXcursor lv2 libjack2
|
2019-11-03 21:59:33 +00:00
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/jpcima/ensemble-chorus";
|
2019-11-03 21:59:33 +00:00
|
|
|
description = "Digital model of electronic string ensemble chorus";
|
|
|
|
maintainers = [ maintainers.magnetophon ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.boost;
|
|
|
|
};
|
|
|
|
}
|