lol
0
fork

Configure Feed

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

at 18.03-beta 28 lines 803 B view raw
1{ stdenv, fetchurl, lv2, pkgconfig, python, serd, sord }: 2 3stdenv.mkDerivation rec { 4 name = "sratom-${version}"; 5 version = "0.6.0"; 6 7 src = fetchurl { 8 url = "http://download.drobilla.net/${name}.tar.bz2"; 9 sha256 = "0hrxd9i66s06bpn6i3s9ka95134g3sm8yscmif7qgdzhyjqw42j4"; 10 }; 11 12 nativeBuildInputs = [ pkgconfig ]; 13 buildInputs = [ lv2 python serd sord ]; 14 15 configurePhase = "${python.interpreter} waf configure --prefix=$out"; 16 17 buildPhase = "${python.interpreter} waf"; 18 19 installPhase = "${python.interpreter} waf install"; 20 21 meta = with stdenv.lib; { 22 homepage = http://drobilla.net/software/sratom; 23 description = "A library for serialising LV2 atoms to/from RDF"; 24 license = licenses.mit; 25 maintainers = [ maintainers.goibhniu ]; 26 platforms = platforms.linux; 27 }; 28}