lol
0
fork

Configure Feed

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

at 15.09-beta 21 lines 608 B view raw
1{ stdenv, fetchurl, flac }: 2 3stdenv.mkDerivation rec { 4 version = "3.0.10"; 5 name = "shntool-${version}"; 6 7 src = fetchurl { 8 url = http://www.etree.org/shnutils/shntool/dist/src/shntool-3.0.10.tar.gz; 9 sha256 = "00i1rbjaaws3drkhiczaign3lnbhr161b7rbnjr8z83w8yn2wc3l"; 10 }; 11 12 buildInputs = [ flac ]; 13 14 meta = { 15 description = "multi-purpose WAVE data processing and reporting utility"; 16 homepage = http://www.etree.org/shnutils/shntool/; 17 license = stdenv.lib.licenses.gpl2Plus; 18 platforms = stdenv.lib.platforms.all; 19 maintainers = with stdenv.lib.maintainers; [ jcumming ]; 20 }; 21}