nixpkgs/pkgs/development/libraries/sonivox/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
550 B
Nix
Raw Normal View History

2023-03-26 00:48:06 +01:00
{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "sonivox";
2023-06-10 17:20:22 +02:00
version = "3.6.12";
2023-03-26 00:48:06 +01:00
src = fetchFromGitHub {
owner = "pedrolcl";
repo = pname;
rev = "v${version}";
2023-06-10 17:20:22 +02:00
hash = "sha256-df3EwscTF9n1fazz5Oa3FIXgWXHruhJBzMt8Y+ELP94=";
2023-03-26 00:48:06 +01:00
};
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;
};
}