mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 02:44:30 +00:00
pixelorama: 1.0.1 -> 1.0.2 (#336873)
This commit is contained in:
commit
8ec8fd5f0b
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user