nixpkgs/pkgs/applications/video/corrscope/default.nix

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

79 lines
1.8 KiB
Nix
Raw Normal View History

2021-03-15 13:50:06 +01:00
{ lib
, mkDerivationWith
, python3Packages
2021-08-05 18:01:26 +02:00
, fetchFromGitHub
, fetchpatch
2021-03-15 13:50:06 +01:00
, wrapQtAppsHook
, ffmpeg
, qtbase
}:
mkDerivationWith python3Packages.buildPythonApplication rec {
pname = "corrscope";
2021-08-05 18:01:26 +02:00
version = "0.7.1";
2021-11-30 00:34:13 +01:00
format = "pyproject";
2021-03-15 13:50:06 +01:00
2021-08-05 18:01:26 +02:00
src = fetchFromGitHub {
owner = "corrscope";
repo = "corrscope";
rev = version;
sha256 = "0c9kmrw6pcda68li04b5j2kmsgdw1q463qlc32wn96zn9hl82v6m";
2021-03-15 13:50:06 +01:00
};
2021-08-05 18:01:26 +02:00
patches = [
# Remove when bumping past 0.7.1
(fetchpatch {
name = "0001-Use-poetry-core.patch";
url = "https://github.com/corrscope/corrscope/commit/d40d1846dd54b8bccd7b8055d6aece48aacbb943.patch";
sha256 = "0xxsbmxdbh3agfm6ww3rpa7ab0ysppan490w0gaqwmwzrxmmdljv";
})
];
2021-03-15 13:50:06 +01:00
2021-11-30 00:34:13 +01:00
nativeBuildInputs = [
wrapQtAppsHook
] ++ (with python3Packages; [
poetry-core
]);
2021-03-15 13:50:06 +01:00
2021-11-30 00:34:13 +01:00
buildInputs = [
ffmpeg
qtbase
];
2021-03-15 13:50:06 +01:00
2021-11-30 00:34:13 +01:00
propagatedBuildInputs = with python3Packages; [
appdirs
atomicwrites
attrs
click
matplotlib
numpy
packaging
pyqt5
ruamel-yaml
];
2021-03-15 13:50:06 +01:00
dontWrapQtApps = true;
preFixup = ''
makeWrapperArgs+=(
2021-08-08 01:49:08 +02:00
--prefix PATH : ${lib.makeBinPath [ ffmpeg ]}
2021-03-15 13:50:06 +01:00
"''${qtWrapperArgs[@]}"
)
'';
meta = with lib; {
description = "Render wave files into oscilloscope views, featuring advanced correlation-based triggering algorithm";
longDescription = ''
Corrscope renders oscilloscope views of WAV files recorded from chiptune (game music from
retro sound chips).
Corrscope uses "waveform correlation" to track complex waves (including SNES and Sega
Genesis/FM synthesis) which jump around on other oscilloscope programs.
'';
homepage = "https://github.com/corrscope/corrscope";
license = licenses.bsd2;
maintainers = with maintainers; [ OPNA2608 ];
platforms = platforms.all;
};
}