blob: 2d37079b6c2ee8f5770e14dcd9a64d43f4963b71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ final, prev, sources, ... }: {
spice-record = prev.python3Packages.buildPythonPackage rec {
inherit (sources.spice-record) src version pname;
propagatedBuildInputs = with prev.python3Packages; [ libvirt pygobject3 ];
buildInputs = with prev; [ spice-gtk gst_all_1.gst-plugins-base ];
nativeBuildInputs = with prev; [ gobject-introspection wrapGAppsHook3 makeWrapper ];
postInstall = ''
wrapProgram $out/bin/spice-record \
--prefix PATH : ${prev.lib.makeBinPath (with prev; [ ffmpeg-full ])}
'';
pyproject = true;
build-system = [ prev.python3Packages.setuptools ];
};
}
|