Merge pull request #72746 from magnetophon/ensemble-chorus

ensemble-chorus: init at unstable-15-02-2019
This commit is contained in:
Mario Rodas 2019-11-16 14:26:28 -05:00 committed by GitHub
commit d83a7f6c39
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ stdenv, fetchFromGitHub, fltk, alsaLib, freetype, libXrandr, libXinerama, libXcursor, lv2, libjack2, cmake, pkgconfig }:
stdenv.mkDerivation rec {
pname = "ensemble-chorus";
version = "unstable-15-02-2019";
src = fetchFromGitHub {
owner = "jpcima";
repo = pname;
rev = "59baeb86b8851f521bc8162e22e3f15061662cc3";
sha256 = "0c1y10vyhrihcjvxqpqf6b52yk5yhwh813cfp6nla5ax2w88dbhr";
fetchSubmodules = true;
};
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [
fltk alsaLib freetype libXrandr libXinerama libXcursor lv2 libjack2
];
meta = with stdenv.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;
};
}

View file

@ -3037,6 +3037,8 @@ in
enscript = callPackage ../tools/text/enscript { };
ensemble-chorus = callPackage ../applications/audio/ensemble-chorus { };
entr = callPackage ../tools/misc/entr { };
eot_utilities = callPackage ../tools/misc/eot-utilities { };