mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
spek: new package
spek is an accoustic spectrum analyzer. It helps analyse your audio files by showing their spectrogram. http://spek.cc/
This commit is contained in:
parent
886575ec1a
commit
b26a6e8a23
2 changed files with 28 additions and 0 deletions
26
pkgs/applications/audio/spek/default.nix
Normal file
26
pkgs/applications/audio/spek/default.nix
Normal file
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -11183,6 +11183,8 @@ let
|
||||||
|
|
||||||
soxr = callPackage ../applications/misc/audio/soxr { };
|
soxr = callPackage ../applications/misc/audio/soxr { };
|
||||||
|
|
||||||
|
spek = callPackage ../applications/audio/spek { };
|
||||||
|
|
||||||
spotify = callPackage ../applications/audio/spotify {
|
spotify = callPackage ../applications/audio/spotify {
|
||||||
inherit (gnome) GConf;
|
inherit (gnome) GConf;
|
||||||
libpng = libpng12;
|
libpng = libpng12;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue