2009-10-28 15:06:56 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "liblo-0.26";
|
2009-09-21 11:58:27 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2009-10-28 15:06:56 +01:00
|
|
|
url = "mirror://sourceforge/liblo/liblo/0.26/${name}.tar.gz";
|
2009-09-21 11:58:27 +02:00
|
|
|
sha256 = "0n124fv9m8yjxs2yxnp3l1i30b8qgg1zx51y63ax12hpz04zndm6";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "lightweight library to handle the sending and receiving of messages according to the Open Sound Control (OSC) protocol";
|
|
|
|
homepage = http://sourceforge.net/projects/liblo;
|
|
|
|
license = "GPLv2";
|
2009-10-28 15:06:56 +01:00
|
|
|
maintainers = [stdenv.lib.maintainers.marcweber];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-09-21 11:58:27 +02:00
|
|
|
};
|
|
|
|
}
|