pixelorama: 1.0.1 -> 1.0.2 (#336873)

This commit is contained in:
Felix Schröter 2024-09-05 16:14:17 +00:00 committed by GitHub
commit 8ec8fd5f0b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,25 +19,26 @@
}:
let
presets = {
"i686-linux" = "Linux 32-bit";
"x86_64-linux" = "Linux 64-bit";
"aarch64-linux" = "Linux ARM64";
};
preset =
if stdenv.isLinux then
if stdenv.is64bit then "Linux/X11 64-bit" else "Linux/X11 32-bit"
else if stdenv.isDarwin then
"Mac OSX"
else
throw "unsupported platform";
presets.${stdenv.hostPlatform.system}
or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
godot_version_folder = lib.replaceStrings [ "-" ] [ "." ] godot_4.version;
in
stdenv.mkDerivation (finalAttrs: {
pname = "pixelorama";
version = "1.0.1";
version = "1.0.2";
src = fetchFromGitHub {
owner = "Orama-Interactive";
repo = "Pixelorama";
rev = "v${finalAttrs.version}";
hash = "sha256-lfim5ZiykOhI1kgsu0ni2frUVHPRIPJdrGx6TuUQcSY=";
hash = "sha256-rFXUy6fvGKmB+aaNgiI+NNRG0xlj1migdetnU4iVDDQ=";
};
strictDeps = true;
@ -95,6 +96,7 @@ stdenv.mkDerivation (finalAttrs: {
platforms = [
"i686-linux"
"x86_64-linux"
"aarch64-linux"
];
maintainers = with maintainers; [ felschr ];
mainProgram = "pixelorama";