Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
51 lines
853 B
Nix
51 lines
853 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
intltool,
|
|
pkg-config,
|
|
ffmpeg,
|
|
wxGTK32,
|
|
gtk3,
|
|
wrapGAppsHook3,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "spek";
|
|
version = "0.8.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "alexkay";
|
|
repo = "spek";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-VYt2so2k3Rk3sLSV1Tf1G2pESYiXygrKr9Koop8ChCg=";
|
|
};
|
|
|
|
patches = [
|
|
./autoconf.patch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
intltool
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
ffmpeg
|
|
wxGTK32
|
|
gtk3
|
|
];
|
|
|
|
meta = {
|
|
description = "Analyse your audio files by showing their spectrogram";
|
|
homepage = "http://spek.cc/";
|
|
license = lib.licenses.gpl3;
|
|
maintainers = with lib.maintainers; [ bjornfor ];
|
|
platforms = lib.platforms.all;
|
|
mainProgram = "spek";
|
|
};
|
|
})
|