From 0cc4ca5919012c8d95f45b5e69479a550d20fb60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= Date: Sat, 13 May 2023 23:55:50 +0200 Subject: [PATCH] pixelorama: add passthru.updateScript --- pkgs/applications/editors/pixelorama/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/editors/pixelorama/default.nix b/pkgs/applications/editors/pixelorama/default.nix index 20dcd766b17e..ab5539ffb47f 100644 --- a/pkgs/applications/editors/pixelorama/default.nix +++ b/pkgs/applications/editors/pixelorama/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchFromGitHub, godot-headless, godot-export-templates }: +{ lib, stdenv, fetchFromGitHub, godot-headless, godot-export-templates, nix-update-script }: let preset = @@ -47,6 +47,8 @@ in stdenv.mkDerivation rec { runHook postInstall ''; + passthru.updateScript = nix-update-script { }; + meta = with lib; { homepage = "https://orama-interactive.itch.io/pixelorama"; description = "A free & open-source 2D sprite editor, made with the Godot Engine!";