mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
8a00c78718
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"
19 lines
601 B
Nix
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;
|
|
};
|
|
}
|