Merge pull request #242909 from paveloom/libremidi

libremidi: unstable-2023-05-05 -> 3.0
This commit is contained in:
Guillaume Girol 2023-07-14 10:26:28 +00:00 committed by GitHub
commit 9582fad01f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View File

@ -44,6 +44,7 @@ stdenv.mkDerivation rec {
postUnpack = ''
cp -r ${libremidi.src}/* $sourceRoot/deps/libremidi
chmod -R +w $sourceRoot/deps/libremidi
'';
postInstall = ''

View File

@ -9,15 +9,15 @@
, stdenv
}:
stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "libremidi";
version = "unstable-2023-05-05";
version = "3.0";
src = fetchFromGitHub {
owner = "jcelerier";
repo = "libremidi";
rev = "cd2e52d59c8ecc97d751619072c4f4271fa82455";
hash = "sha256-CydoCprxqDl5FXjtgT+AckaRTqQAlCDwwrnPDK17A6o=";
rev = "v${version}";
hash = "sha256-aO83a0DmzwjYXDlPIsn136EkDF0406HadTXPoGuVF6I=";
};
nativeBuildInputs = [ cmake ];