summary refs log tree commit diff
path: root/pkgs/development/libraries/liblo/default.nix
blob: 7b7e96012ea77bdff20bed28afb65f5f8c605244 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "liblo-0.26";

  src = fetchurl {
    url = "mirror://sourceforge/liblo/liblo/0.26/${name}.tar.gz";
    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 = stdenv.lib.licenses.gpl2;
    maintainers = [stdenv.lib.maintainers.marcweber];
    platforms = with stdenv.lib.platforms; linux ++ darwin;
  };
}