Merge pull request #237598 from felschr/pixelorama

pixelorama: 0.10.3 -> 0.11

authored by

Sandro and committed by
GitHub
8a3fbb6d bc3441c3

+5 -5
+5 -5
pkgs/applications/editors/pixelorama/default.nix
··· 7 else "Linux/X11 32-bit" 8 else if stdenv.isDarwin then "Mac OSX" 9 else throw "unsupported platform"; 10 - in stdenv.mkDerivation rec { 11 pname = "pixelorama"; 12 - version = "0.10.3"; 13 14 src = fetchFromGitHub { 15 owner = "Orama-Interactive"; 16 repo = "Pixelorama"; 17 - rev = "v${version}"; 18 - sha256 = "sha256-RFE7K8NMl0COzFEhUqWhhYd5MGBsCDJf0T5daPu/4DI="; 19 }; 20 21 nativeBuildInputs = [ ··· 56 platforms = [ "i686-linux" "x86_64-linux" ]; 57 maintainers = with maintainers; [ felschr ]; 58 }; 59 - }
··· 7 else "Linux/X11 32-bit" 8 else if stdenv.isDarwin then "Mac OSX" 9 else throw "unsupported platform"; 10 + in stdenv.mkDerivation (finalAttrs: { 11 pname = "pixelorama"; 12 + version = "0.11"; 13 14 src = fetchFromGitHub { 15 owner = "Orama-Interactive"; 16 repo = "Pixelorama"; 17 + rev = "v${finalAttrs.version}"; 18 + sha256 = "sha256-r4iQJBxXzIbQ7n19Ah6szuIfALmuKlHKcvKsxEzOttk="; 19 }; 20 21 nativeBuildInputs = [ ··· 56 platforms = [ "i686-linux" "x86_64-linux" ]; 57 maintainers = with maintainers; [ felschr ]; 58 }; 59 + })