lol
0
fork

Configure Feed

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

spek: new package

spek is an accoustic spectrum analyzer. It helps analyse your audio
files by showing their spectrogram.

http://spek.cc/

+28
+26
pkgs/applications/audio/spek/default.nix
··· 1 + { stdenv, fetchzip, autoconf, automake, intltool, pkgconfig, ffmpeg, wxGTK }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "spek-${version}"; 5 + version = "0.8.3"; 6 + 7 + src = fetchzip { 8 + name = "${name}-src"; 9 + url = "https://github.com/alexkay/spek/archive/v${version}.tar.gz"; 10 + sha256 = "0y4hlhswpqkqpsglrhg5xbfy1a6f9fvasgdf336vhwcjqsc3k2xv"; 11 + }; 12 + 13 + buildInputs = [ autoconf automake intltool pkgconfig ffmpeg wxGTK ]; 14 + 15 + preConfigure = '' 16 + ./autogen.sh 17 + ''; 18 + 19 + meta = with stdenv.lib; { 20 + description = "Analyse your audio files by showing their spectrogram"; 21 + homepage = http://spek.cc/; 22 + license = licenses.gpl3; 23 + platforms = platforms.all; 24 + maintainers = [ maintainers.bjornfor ]; 25 + }; 26 + }
+2
pkgs/top-level/all-packages.nix
··· 11183 11183 11184 11184 soxr = callPackage ../applications/misc/audio/soxr { }; 11185 11185 11186 + spek = callPackage ../applications/audio/spek { }; 11187 + 11186 11188 spotify = callPackage ../applications/audio/spotify { 11187 11189 inherit (gnome) GConf; 11188 11190 libpng = libpng12;