about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2023-06-23 13:45:22 +0200
committerGitHub <noreply@github.com>2023-06-23 13:45:22 +0200
commit8a3fbb6dc54c3d6d0bd8763ef2228907f55cb363 (patch)
tree8eceb33ec5d3648b0dceb57595f58adc82079e1c /pkgs/applications/editors
parentbc3441c3a429139811a97910e228136cbb2cfe19 (diff)
parente0b817ccb706921d8e387eabb1e219ca073ddc30 (diff)
Merge pull request #237598 from felschr/pixelorama
pixelorama: 0.10.3 -> 0.11
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/pixelorama/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/editors/pixelorama/default.nix b/pkgs/applications/editors/pixelorama/default.nix
index ab5539ffb47f2..e883ba36d5fbd 100644
--- a/pkgs/applications/editors/pixelorama/default.nix
+++ b/pkgs/applications/editors/pixelorama/default.nix
@@ -7,15 +7,15 @@ let
       else "Linux/X11 32-bit"
     else if stdenv.isDarwin then "Mac OSX"
     else throw "unsupported platform";
-in stdenv.mkDerivation rec {
+in stdenv.mkDerivation (finalAttrs: {
   pname = "pixelorama";
-  version = "0.10.3";
+  version = "0.11";
 
   src = fetchFromGitHub {
     owner = "Orama-Interactive";
     repo = "Pixelorama";
-    rev = "v${version}";
-    sha256 = "sha256-RFE7K8NMl0COzFEhUqWhhYd5MGBsCDJf0T5daPu/4DI=";
+    rev = "v${finalAttrs.version}";
+    sha256 = "sha256-r4iQJBxXzIbQ7n19Ah6szuIfALmuKlHKcvKsxEzOttk=";
   };
 
   nativeBuildInputs = [
@@ -56,4 +56,4 @@ in stdenv.mkDerivation rec {
     platforms = [ "i686-linux" "x86_64-linux" ];
     maintainers = with maintainers; [ felschr ];
   };
-}
+})