summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/video/corrscope
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-08-08 01:49:08 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-08-08 01:49:08 +0200
commit1893e966535496ace9af3bd102f669d1030c94ad (patch)
treed0f5c363ad070c2a66efbc7c9a01267dc36f416e /pkgs/applications/video/corrscope
parentd85ded6d1817c4436556669e397ce6e531799d1d (diff)
corrscope: cleanup
Diffstat (limited to 'pkgs/applications/video/corrscope')
-rw-r--r--pkgs/applications/video/corrscope/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/video/corrscope/default.nix b/pkgs/applications/video/corrscope/default.nix
index 610342c3f809..727541e3b53d 100644
--- a/pkgs/applications/video/corrscope/default.nix
+++ b/pkgs/applications/video/corrscope/default.nix
@@ -30,17 +30,17 @@ mkDerivationWith python3Packages.buildPythonApplication rec {
})
];
- nativeBuildInputs = [ wrapQtAppsHook ];
+ nativeBuildInputs = [ wrapQtAppsHook ] ++ (with python3Packages; [ poetry-core ]);
buildInputs = [ ffmpeg qtbase ];
- propagatedBuildInputs = with python3Packages; [ appdirs atomicwrites attrs click matplotlib numpy poetry-core pyqt5 ruamel_yaml ];
+ propagatedBuildInputs = with python3Packages; [ appdirs atomicwrites attrs click matplotlib numpy pyqt5 ruamel_yaml ];
dontWrapQtApps = true;
preFixup = ''
makeWrapperArgs+=(
- --prefix PATH : ${ffmpeg}/bin
+ --prefix PATH : ${lib.makeBinPath [ ffmpeg ]}
"''${qtWrapperArgs[@]}"
)
'';