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