libinstpatch: init at 1.1.3

This commit is contained in:
Orivej Desh 2020-03-23 02:28:37 +00:00
parent fa456f45bc
commit f4c15495a6
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ stdenv, fetchFromGitHub, cmake, pkg-config, glib, libsndfile }:
stdenv.mkDerivation rec {
pname = "libinstpatch";
version = "1.1.3";
src = fetchFromGitHub {
owner = "swami";
repo = pname;
rev = "v${version}";
sha256 = "0ksilyszcm7mwb6m8qyrgalvh4h2vkyz7wzj0xczcqkj15bcl4lw";
};
nativeBuildInputs = [ cmake pkg-config ];
propagatedBuildInputs = [ glib libsndfile ]; # Both are needed for includes.
cmakeFlags = [
"-DLIB_SUFFIX=" # Install in $out/lib.
];
meta = with stdenv.lib; {
homepage = http://www.swamiproject.org/;
description = "MIDI instrument patch files support library";
license = licenses.lgpl21;
maintainers = with maintainers; [ orivej ];
platforms = platforms.linux;
};
}

View File

@ -13067,6 +13067,8 @@ in
libinput-gestures = callPackage ../tools/inputmethods/libinput-gestures {};
libinstpatch = callPackage ../development/libraries/audio/libinstpatch { };
libisofs = callPackage ../development/libraries/libisofs { };
libisoburn = callPackage ../development/libraries/libisoburn { };