summary refs log tree commit diff
path: root/pkgs/applications/audio/spek
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2015-01-24 20:11:31 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2015-02-01 15:19:41 +0100
commitb26a6e8a23b84e2859152e56e9fbaa089773f30a (patch)
treea198b6168bb532ea723796a7878648d613d66ae1 /pkgs/applications/audio/spek
parent886575ec1a51f0756c7929f24183fcef594491f5 (diff)
downloadnixpkgs-b26a6e8a23b84e2859152e56e9fbaa089773f30a.tar
nixpkgs-b26a6e8a23b84e2859152e56e9fbaa089773f30a.tar.gz
nixpkgs-b26a6e8a23b84e2859152e56e9fbaa089773f30a.tar.bz2
nixpkgs-b26a6e8a23b84e2859152e56e9fbaa089773f30a.tar.lz
nixpkgs-b26a6e8a23b84e2859152e56e9fbaa089773f30a.tar.xz
nixpkgs-b26a6e8a23b84e2859152e56e9fbaa089773f30a.tar.zst
nixpkgs-b26a6e8a23b84e2859152e56e9fbaa089773f30a.zip
spek: new package
spek is an accoustic spectrum analyzer. It helps analyse your audio
files by showing their spectrogram.

http://spek.cc/
Diffstat (limited to 'pkgs/applications/audio/spek')
-rw-r--r--pkgs/applications/audio/spek/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/applications/audio/spek/default.nix b/pkgs/applications/audio/spek/default.nix
new file mode 100644
index 00000000000..32aac686043
--- /dev/null
+++ b/pkgs/applications/audio/spek/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchzip, autoconf, automake, intltool, pkgconfig, ffmpeg, wxGTK }:
+
+stdenv.mkDerivation rec {
+  name = "spek-${version}";
+  version = "0.8.3";
+
+  src = fetchzip {
+    name = "${name}-src";
+    url = "https://github.com/alexkay/spek/archive/v${version}.tar.gz";
+    sha256 = "0y4hlhswpqkqpsglrhg5xbfy1a6f9fvasgdf336vhwcjqsc3k2xv";
+  };
+
+  buildInputs = [ autoconf automake intltool pkgconfig ffmpeg wxGTK ];
+
+  preConfigure = ''
+    ./autogen.sh
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Analyse your audio files by showing their spectrogram";
+    homepage = http://spek.cc/;
+    license = licenses.gpl3;
+    platforms = platforms.all;
+    maintainers = [ maintainers.bjornfor ];
+  };
+}