From 91061f7aa842983b5206641b346d3fbc9a9acc67 Mon Sep 17 00:00:00 2001 From: Gregor Kleen Date: Thu, 20 Aug 2026 17:31:15 +0200 Subject: bump --- overlays/spice-record.nix | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'overlays/spice-record.nix') diff --git a/overlays/spice-record.nix b/overlays/spice-record.nix index 2d37079b..0ec2799d 100644 --- a/overlays/spice-record.nix +++ b/overlays/spice-record.nix @@ -1,14 +1,15 @@ { 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 ]; + spice-record = final.python3Packages.buildPythonPackage rec { + pname = "spicerecord"; + inherit (sources.spice-record) src version; + propagatedBuildInputs = with final.python3Packages; [ libvirt pygobject3 ]; + buildInputs = with final; [ spice-gtk gst_all_1.gst-plugins-base ]; + nativeBuildInputs = with final; [ gobject-introspection wrapGAppsHook3 makeWrapper ]; postInstall = '' wrapProgram $out/bin/spice-record \ - --prefix PATH : ${prev.lib.makeBinPath (with prev; [ ffmpeg-full ])} + --prefix PATH : ${final.lib.makeBinPath (with final; [ ffmpeg-headless ])} ''; pyproject = true; - build-system = [ prev.python3Packages.setuptools ]; + build-system = [ final.python3Packages.setuptools ]; }; } -- cgit v1.2.3