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