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 meta = {
12 description = "Lightweight library to handle the sending and receiving of messages according to the Open Sound Control (OSC) protocol";
13 homepage = https://sourceforge.net/projects/liblo;
14 license = stdenv.lib.licenses.gpl2;
15 maintainers = [stdenv.lib.maintainers.marcweber];
16 platforms = with stdenv.lib.platforms; linux ++ darwin;
17 };
18}