Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 pname = "liblo"; 5 version = "0.31"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/liblo/liblo/${version}/${pname}-${version}.tar.gz"; 9 sha256 = "0l67rkdhfa8cffa0nynql3lh2xlbn1454h6qxhjddp1029p48krb"; 10 }; 11 12 doCheck = false; # fails 1 out of 3 tests 13 14 meta = { 15 description = "Lightweight library to handle the sending and receiving of messages according to the Open Sound Control (OSC) protocol"; 16 homepage = "https://sourceforge.net/projects/liblo"; 17 license = lib.licenses.gpl2; 18 maintainers = [lib.maintainers.marcweber]; 19 platforms = with lib.platforms; linux ++ darwin; 20 }; 21}