Merge pull request #223163 from orivej/sonivox

sonivox: init at 3.6.11
This commit is contained in:
Nick Cao 2023-03-26 10:27:59 +08:00 committed by GitHub
commit ee7d73cfac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "sonivox";
version = "3.6.11";
src = fetchFromGitHub {
owner = "pedrolcl";
repo = pname;
rev = "v${version}";
hash = "sha256-kCMY9A16g+CNNPn4PZ80QdEP6f58zCI3fQ1BFiK1ZQg=";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
homepage = "https://github.com/pedrolcl/sonivox";
description = "MIDI synthesizer library";
license = licenses.asl20;
maintainers = with maintainers; [ orivej ];
platforms = platforms.linux;
};
}

View file

@ -23628,6 +23628,8 @@ with pkgs;
sonic = callPackage ../development/libraries/sonic { };
sonivox = callPackage ../development/libraries/sonivox { };
sope = callPackage ../development/libraries/sope { };
sord = callPackage ../development/libraries/sord { };