liblo: 0.32 -> 0.35 (#527699)

This commit is contained in:
dotlambda
2026-06-08 14:48:05 +00:00
committed by GitHub
+8 -2
View File
@@ -2,20 +2,26 @@
lib,
stdenv,
fetchurl,
doxygen,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "liblo";
version = "0.32";
version = "0.35";
src = fetchurl {
url = "mirror://sourceforge/liblo/liblo/${finalAttrs.version}/liblo-${finalAttrs.version}.tar.gz";
sha256 = "sha256-XfBfKgOV/FrJD2tTi4yCuyGUFAb9GnCnZcczakfXAgg=";
hash = "sha256-msxPflok8zRy6azX5Am3vWgQpG8KHzz+7Ooi1g86rhM=";
};
nativeBuildInputs = [
doxygen
];
doCheck = false; # fails 1 out of 3 tests
meta = {
changelog = "https://liblo.sourceforge.net/NEWS.html";
description = "Lightweight library to handle the sending and receiving of messages according to the Open Sound Control (OSC) protocol";
homepage = "https://sourceforge.net/projects/liblo";
license = lib.licenses.gpl2;