nixpkgs/pkgs/applications/editors/pixelorama/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

96 lines
2.2 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, alsa-lib
, autoPatchelfHook
, fetchFromGitHub
, godot3-headless
, godot3-export-templates
, libGLU
, libpulseaudio
, libX11
, libXcursor
, libXi
, libXinerama
, libXrandr
, libXrender
, nix-update-script
, udev
}:
2022-06-24 21:53:39 +00:00
let
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";
in stdenv.mkDerivation (finalAttrs: {
2022-06-24 21:53:39 +00:00
pname = "pixelorama";
2024-04-18 04:21:43 +00:00
version = "0.11.4";
2022-06-24 21:53:39 +00:00
src = fetchFromGitHub {
owner = "Orama-Interactive";
repo = "Pixelorama";
rev = "v${finalAttrs.version}";
2024-04-18 04:21:43 +00:00
sha256 = "sha256-VEQjZ9kDqXz1hoT4PrsBtzoi1TYWyN+YcPMyf9qJMRE=";
2022-06-24 21:53:39 +00:00
};
nativeBuildInputs = [
autoPatchelfHook
godot3-headless
];
buildInputs = [
libGLU
libX11
libXcursor
libXi
libXinerama
libXrandr
libXrender
2022-06-24 21:53:39 +00:00
];
buildPhase = ''
runHook preBuild
export HOME=$(mktemp -d)
mkdir -p $HOME/.local/share/godot/
ln -s "${godot3-export-templates}/share/godot/templates" "$HOME/.local/share/godot/templates"
2022-06-24 21:53:39 +00:00
mkdir -p build
godot3-headless -v --export "${preset}" ./build/pixelorama
godot3-headless -v --export-pack "${preset}" ./build/pixelorama.pck
2022-06-24 21:53:39 +00:00
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 755 $out/bin
ln -s $out/libexec/pixelorama $out/bin/pixelorama
runHook postInstall
'';
runtimeDependencies = map lib.getLib [
alsa-lib
libpulseaudio
udev
];
2023-05-13 21:55:50 +00:00
passthru.updateScript = nix-update-script { };
2022-06-24 21:53:39 +00:00
meta = with lib; {
homepage = "https://orama-interactive.itch.io/pixelorama";
description = "A free & open-source 2D sprite editor, made with the Godot Engine!";
2023-08-12 11:43:21 +00:00
changelog = "https://github.com/Orama-Interactive/Pixelorama/blob/${finalAttrs.src.rev}/CHANGELOG.md";
2022-06-24 21:53:39 +00:00
license = licenses.mit;
platforms = [ "i686-linux" "x86_64-linux" ];
maintainers = with maintainers; [ felschr ];
2023-11-27 01:17:53 +00:00
mainProgram = "pixelorama";
2022-06-24 21:53:39 +00:00
};
})