nixpkgs/pkgs/development/libraries/liblo/default.nix
R. RyanTM 8aedf7e713 liblo: 0.29 -> 0.30
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/liblo/versions
2019-03-25 15:22:55 -07:00

21 lines
645 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "liblo-0.30";
src = fetchurl {
url = "mirror://sourceforge/liblo/liblo/0.30/${name}.tar.gz";
sha256 = "06wdjzxjdshr6hyl4c94yvg3jixiylap8yjs8brdfpm297gck9rh";
};
doCheck = false; # fails 1 out of 3 tests
meta = {
description = "Lightweight library to handle the sending and receiving of messages according to the Open Sound Control (OSC) protocol";
homepage = https://sourceforge.net/projects/liblo;
license = stdenv.lib.licenses.gpl2;
maintainers = [stdenv.lib.maintainers.marcweber];
platforms = with stdenv.lib.platforms; linux ++ darwin;
};
}