2023-01-02 22:40:54 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, intltool, pkg-config, ffmpeg, wxGTK32, gtk3, wrapGAppsHook }:
|
2015-01-24 19:11:31 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "spek";
|
2023-01-02 22:40:54 +00:00
|
|
|
version = "0.8.4";
|
2015-01-24 19:11:31 +00:00
|
|
|
|
2020-06-15 03:02:19 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "alexkay";
|
|
|
|
repo = "spek";
|
2023-01-02 22:40:54 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "sha256-JLQx5LlnVe1TT1KVO3/QSVRqYL+pAMCxoDWrnkUNmRU=";
|
2015-01-24 19:11:31 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook intltool pkg-config wrapGAppsHook ];
|
2020-06-15 03:02:19 +00:00
|
|
|
|
2023-01-02 22:40:54 +00:00
|
|
|
buildInputs = [ ffmpeg wxGTK32 gtk3 ];
|
2015-01-24 19:11:31 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-01-24 19:11:31 +00:00
|
|
|
description = "Analyse your audio files by showing their spectrogram";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://spek.cc/";
|
2015-01-24 19:11:31 +00:00
|
|
|
license = licenses.gpl3;
|
2020-06-15 03:02:19 +00:00
|
|
|
maintainers = with maintainers; [ bjornfor ];
|
2015-01-24 19:11:31 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|