1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "liblo-0.26";
5
6 src = fetchurl {
7 url = "mirror://sourceforge/liblo/liblo/0.26/${name}.tar.gz";
8 sha256 = "0n124fv9m8yjxs2yxnp3l1i30b8qgg1zx51y63ax12hpz04zndm6";
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 = http://sourceforge.net/projects/liblo;
14 license = stdenv.lib.licenses.gpl2;
15 maintainers = [stdenv.lib.maintainers.marcweber];
16 platforms = stdenv.lib.platforms.linux;
17 };
18}