Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
58 lines
1.0 KiB
Nix
58 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
fltk,
|
|
alsa-lib,
|
|
freetype,
|
|
libXrandr,
|
|
libXinerama,
|
|
libXcursor,
|
|
lv2,
|
|
libjack2,
|
|
cmake,
|
|
pkg-config,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "ensemble-chorus";
|
|
version = "0-unstable-2019-02-15";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jpcima";
|
|
repo = "ensemble-chorus";
|
|
rev = "59baeb86b8851f521bc8162e22e3f15061662cc3";
|
|
sha256 = "0c1y10vyhrihcjvxqpqf6b52yk5yhwh813cfp6nla5ax2w88dbhr";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
patches = [
|
|
# fix compile error regarding packed attribute in 3rd party juice library
|
|
./juice-cxx-packing-fix.diff
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
fltk
|
|
alsa-lib
|
|
freetype
|
|
libXrandr
|
|
libXinerama
|
|
libXcursor
|
|
lv2
|
|
libjack2
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/jpcima/ensemble-chorus";
|
|
description = "Digital model of electronic string ensemble chorus";
|
|
maintainers = [ maintainers.magnetophon ];
|
|
platforms = platforms.linux;
|
|
license = licenses.boost;
|
|
};
|
|
}
|