mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-24 06:33:42 +00:00
9bd2506458
These packages were identified as broken when ffmpeg = ffmpeg_5. Tested _only_ by building them. If you are a maintainer of one of these packages, please test whether your package still works.
26 lines
714 B
Nix
26 lines
714 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, intltool, pkg-config, ffmpeg_4, wxGTK32, gtk3, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "spek";
|
|
version = "0.8.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "alexkay";
|
|
repo = "spek";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-JLQx5LlnVe1TT1KVO3/QSVRqYL+pAMCxoDWrnkUNmRU=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook intltool pkg-config wrapGAppsHook ];
|
|
|
|
buildInputs = [ ffmpeg_4 wxGTK32 gtk3 ];
|
|
|
|
meta = with lib; {
|
|
description = "Analyse your audio files by showing their spectrogram";
|
|
homepage = "http://spek.cc/";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ bjornfor ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|