Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.1 KiB
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
stdenv,
lib,
fetchFromGitHub,
cmake,
obs-studio,
pkg-config,
fftwFloat,
}:
stdenv.mkDerivation rec {
pname = "waveform";
version = "1.8.1";
src = fetchFromGitHub {
fetchSubmodules = true;
owner = "phandasm";
repo = "waveform";
rev = "v${version}";
hash = "sha256-Bg1n1yV4JzNFEXFNayNa1exsSZhmRJ0RLHDjLWmqGZE=";
};
postPatch = ''
substituteInPlace \
src/source.hpp src/source.cpp src/source_generic.cpp \
src/source_avx2.cpp src/source_avx.cpp \
--replace circlebuf deque
'';
nativeBuildInputs = [
cmake
pkg-config
];
postFixup = ''
mkdir -p $out/lib $out/share/obs/obs-plugins
mv $out/${pname}/bin/64bit $out/lib/obs-plugins
mv $out/${pname}/data $out/share/obs/obs-plugins/${pname}
rm -rf $out/${pname}
'';
buildInputs = [
obs-studio
fftwFloat
];
meta = {
description = "Audio spectral analysis plugin for OBS";
homepage = "https://github.com/phandasm/waveform";
maintainers = with lib.maintainers; [ matthewcroughan ];
license = lib.licenses.gpl3;
# Hard coded x86_64 support
platforms = [ "x86_64-linux" ];
};
}