mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 21:33:07 +00:00
105 lines
2.4 KiB
Nix
105 lines
2.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
alsa-lib,
|
|
autoPatchelfHook,
|
|
fetchFromGitHub,
|
|
godot_4,
|
|
godot_4-export-templates,
|
|
libGL,
|
|
libpulseaudio,
|
|
libX11,
|
|
libXcursor,
|
|
libXext,
|
|
libXi,
|
|
libXrandr,
|
|
nix-update-script,
|
|
udev,
|
|
vulkan-loader,
|
|
}:
|
|
|
|
let
|
|
presets = {
|
|
"i686-linux" = "Linux 32-bit";
|
|
"x86_64-linux" = "Linux 64-bit";
|
|
"aarch64-linux" = "Linux ARM64";
|
|
};
|
|
preset =
|
|
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.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Orama-Interactive";
|
|
repo = "Pixelorama";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-IMHv5pOLxj7sqRtWmddziCiOX3T20bcMp2+ZzyhcIFg=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
autoPatchelfHook
|
|
godot_4
|
|
];
|
|
|
|
runtimeDependencies = map lib.getLib [
|
|
alsa-lib
|
|
libGL
|
|
libpulseaudio
|
|
libX11
|
|
libXcursor
|
|
libXext
|
|
libXi
|
|
libXrandr
|
|
udev
|
|
vulkan-loader
|
|
];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
export HOME=$(mktemp -d)
|
|
mkdir -p $HOME/.local/share/godot/export_templates
|
|
ln -s "${godot_4-export-templates}" "$HOME/.local/share/godot/export_templates/${godot_version_folder}"
|
|
mkdir -p build
|
|
godot4 --headless --export-release "${preset}" ./build/pixelorama
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -D -m 755 -t $out/libexec ./build/pixelorama
|
|
install -D -m 644 -t $out/libexec ./build/pixelorama.pck
|
|
install -D -m 644 -t $out/share/applications ./Misc/Linux/com.orama_interactive.Pixelorama.desktop
|
|
install -D -m 644 -T ./assets/graphics/icons/icon.png $out/share/icons/hicolor/256x256/apps/pixelorama.png
|
|
install -d -m 755 $out/bin
|
|
ln -s $out/libexec/pixelorama $out/bin/pixelorama
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
homepage = "https://orama-interactive.itch.io/pixelorama";
|
|
description = "Free & open-source 2D sprite editor, made with the Godot Engine!";
|
|
changelog = "https://github.com/Orama-Interactive/Pixelorama/blob/${finalAttrs.src.rev}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
platforms = [
|
|
"i686-linux"
|
|
"x86_64-linux"
|
|
"aarch64-linux"
|
|
];
|
|
maintainers = with maintainers; [ felschr ];
|
|
mainProgram = "pixelorama";
|
|
};
|
|
})
|