about summary refs log tree commit diff
path: root/pkgs/applications/editors/pixelorama
diff options
context:
space:
mode:
authorFelix Schröter <dev@felschr.com>2023-05-13 23:55:50 +0200
committerFelix Schröter <dev@felschr.com>2023-05-31 14:42:49 +0200
commit0cc4ca5919012c8d95f45b5e69479a550d20fb60 (patch)
tree7e3e3b4e5d12b9779989d29ab95fc44b60f30786 /pkgs/applications/editors/pixelorama
parent68bab23e50b508371d033ffa5575028b258a5074 (diff)
downloadnixlib-0cc4ca5919012c8d95f45b5e69479a550d20fb60.tar
nixlib-0cc4ca5919012c8d95f45b5e69479a550d20fb60.tar.gz
nixlib-0cc4ca5919012c8d95f45b5e69479a550d20fb60.tar.bz2
nixlib-0cc4ca5919012c8d95f45b5e69479a550d20fb60.tar.lz
nixlib-0cc4ca5919012c8d95f45b5e69479a550d20fb60.tar.xz
nixlib-0cc4ca5919012c8d95f45b5e69479a550d20fb60.tar.zst
nixlib-0cc4ca5919012c8d95f45b5e69479a550d20fb60.zip
pixelorama: add passthru.updateScript
Diffstat (limited to 'pkgs/applications/editors/pixelorama')
-rw-r--r--pkgs/applications/editors/pixelorama/default.nix4
1 files changed, 3 insertions, 1 deletions
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!";