lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 17.09-beta 25 lines 843 B view raw
1{ stdenv, fetchurl, pkgconfig, pure, faust, libtool }: 2 3stdenv.mkDerivation rec { 4 baseName = "faust"; 5 version = "0.11"; 6 name = "pure-${baseName}-${version}"; 7 8 src = fetchurl { 9 url = "https://bitbucket.org/purelang/pure-lang/downloads/${name}.tar.gz"; 10 sha256 = "51278a3b0807c4770163dc2ce423507dcf0ffec9cd1c1fbc08426d07294f6ae0"; 11 }; 12 13 buildInputs = [ pkgconfig ]; 14 propagatedBuildInputs = [ pure faust libtool ]; 15 makeFlags = "libdir=$(out)/lib prefix=$(out)/"; 16 setupHook = ../generic-setup-hook.sh; 17 18 meta = { 19 description = "Lets you load and run Faust-generated signal processing modules in Pure"; 20 homepage = http://puredocs.bitbucket.org/pure-faust.html; 21 license = stdenv.lib.licenses.lgpl3Plus; 22 platforms = stdenv.lib.platforms.linux; 23 maintainers = with stdenv.lib.maintainers; [ asppsa ]; 24 }; 25}