fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl, pkgconfig, pure, liblo }:
2
3stdenv.mkDerivation rec {
4 baseName = "liblo";
5 version = "0.9";
6 name = "pure-${baseName}-${version}";
7
8 src = fetchurl {
9 url = "https://bitbucket.org/purelang/pure-lang/downloads/${name}.tar.gz";
10 sha256 = "c2ba4d6f94489acf8a8fac73982ae03d5ad4113146eb1f7d6558a956c57cb8ee";
11 };
12
13 buildInputs = [ pkgconfig ];
14 propagatedBuildInputs = [ pure liblo ];
15 makeFlags = "libdir=$(out)/lib prefix=$(out)/";
16 setupHook = ../generic-setup-hook.sh;
17
18 meta = {
19 description = "A quick and dirty Pure wrapper for the liblo library, which implements Berkeley’s Open Sound Control (OSC) protocol";
20 homepage = http://puredocs.bitbucket.org/pure-liblo.html;
21 license = stdenv.lib.licenses.lgpl3Plus;
22 platforms = stdenv.lib.platforms.linux;
23 maintainers = with stdenv.lib.maintainers; [ asppsa ];
24 };
25}