nixpkgs/pkgs/development/libraries/liblo/default.nix
Ryan Mulligan 8a00c78718 liblo: 0.26 -> 0.29
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/ribwnr8bbvpnr54vwhhq6c4l7qvv3ibx-liblo-0.29/bin/oscdump -h` got 0 exit code
- ran `/nix/store/ribwnr8bbvpnr54vwhhq6c4l7qvv3ibx-liblo-0.29/bin/oscdump -h` and found version 0.29
- found 0.29 with grep in /nix/store/ribwnr8bbvpnr54vwhhq6c4l7qvv3ibx-liblo-0.29
- found 0.29 in filename of file in /nix/store/ribwnr8bbvpnr54vwhhq6c4l7qvv3ibx-liblo-0.29

cc "@marcweber"
2018-03-04 18:33:17 +00:00

19 lines
601 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "liblo-0.29";
src = fetchurl {
url = "mirror://sourceforge/liblo/liblo/0.29/${name}.tar.gz";
sha256 = "0sn0ckc1d0845mhsaa62wf7f9v0c0ykiq796a30ja5096kib9qdc";
};
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;
};
}