1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
8 url = "mirror://sourceforge/liblo/liblo/${version}/${pname}-${version}.tar.gz";
9 sha256 = "0l67rkdhfa8cffa0nynql3lh2xlbn1454h6qxhjddp1029p48krb";
12 doCheck = false; # fails 1 out of 3 tests
15 description = "Lightweight library to handle the sending and receiving of messages according to the Open Sound Control (OSC) protocol";
16 homepage = "https://sourceforge.net/projects/liblo";
17 license = lib.licenses.gpl2;
18 maintainers = [lib.maintainers.marcweber];
19 platforms = with lib.platforms; linux ++ darwin;