2009-10-28 14:06:56 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "liblo-0.26";
|
2009-09-21 10:58:27 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2009-10-28 14:06:56 +00:00
|
|
|
url = "mirror://sourceforge/liblo/liblo/0.26/${name}.tar.gz";
|
2009-09-21 10:58:27 +01:00
|
|
|
sha256 = "0n124fv9m8yjxs2yxnp3l1i30b8qgg1zx51y63ax12hpz04zndm6";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "Lightweight library to handle the sending and receiving of messages according to the Open Sound Control (OSC) protocol";
|
2009-09-21 10:58:27 +01:00
|
|
|
homepage = http://sourceforge.net/projects/liblo;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2009-10-28 14:06:56 +00:00
|
|
|
maintainers = [stdenv.lib.maintainers.marcweber];
|
2017-04-20 22:43:32 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
2009-09-21 10:58:27 +01:00
|
|
|
};
|
|
|
|
}
|