mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
adding liblo
svn path=/nixpkgs/trunk/; revision=17322
This commit is contained in:
parent
d816babb74
commit
6f37fc253b
19
pkgs/development/libraries/liblo/default.nix
Normal file
19
pkgs/development/libraries/liblo/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
args: with args;
|
||||
stdenv.mkDerivation {
|
||||
name = "liblo";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/liblo/liblo/0.26/liblo-0.26.tar.gz;
|
||||
sha256 = "0n124fv9m8yjxs2yxnp3l1i30b8qgg1zx51y63ax12hpz04zndm6";
|
||||
};
|
||||
|
||||
buildInputs = [];
|
||||
|
||||
meta = {
|
||||
description = "lightweight library to handle the sending and receiving of messages according to the Open Sound Control (OSC) protocol";
|
||||
homepage = http://sourceforge.net/projects/liblo;
|
||||
license = "GPLv2";
|
||||
maintainers = [args.lib.maintainers.marcweber];
|
||||
platforms = args.lib.platforms.linux;
|
||||
};
|
||||
}
|
@ -3577,6 +3577,10 @@ let
|
||||
inherit fetchurl stdenv ncurses;
|
||||
};
|
||||
|
||||
liblo = import ../development/libraries/liblo {
|
||||
inherit fetchurl stdenv lib;
|
||||
};
|
||||
|
||||
libev = builderDefsPackage ../development/libraries/libev {
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user