2009-10-28 15:06:56 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-27 05:42:46 +01:00
|
|
|
name = "liblo-0.29";
|
2009-09-21 11:58:27 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-02-27 05:42:46 +01:00
|
|
|
url = "mirror://sourceforge/liblo/liblo/0.29/${name}.tar.gz";
|
|
|
|
sha256 = "0sn0ckc1d0845mhsaa62wf7f9v0c0ykiq796a30ja5096kib9qdc";
|
2009-09-21 11:58:27 +02:00
|
|
|
};
|
|
|
|
|
2018-04-25 05:20:18 +02:00
|
|
|
doCheck = false; # fails 1 out of 3 tests
|
|
|
|
|
|
|
|
meta = {
|
2016-06-20 12:53:46 +02:00
|
|
|
description = "Lightweight library to handle the sending and receiving of messages according to the Open Sound Control (OSC) protocol";
|
2017-11-10 22:13:27 +01:00
|
|
|
homepage = https://sourceforge.net/projects/liblo;
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2009-10-28 15:06:56 +01:00
|
|
|
maintainers = [stdenv.lib.maintainers.marcweber];
|
2017-04-20 23:43:32 +02:00
|
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
2009-09-21 11:58:27 +02:00
|
|
|
};
|
|
|
|
}
|