mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
84 lines
1.7 KiB
Nix
84 lines
1.7 KiB
Nix
{
|
||
lib,
|
||
stdenv,
|
||
fetchurl,
|
||
SDL,
|
||
SDL_image,
|
||
SDL_ttf,
|
||
installShellFiles,
|
||
fontconfig,
|
||
libpng,
|
||
libtiff,
|
||
lua5,
|
||
pkg-config,
|
||
zlib,
|
||
}:
|
||
|
||
stdenv.mkDerivation (finalAttrs: {
|
||
pname = "grafx2";
|
||
version = "2.8.3091";
|
||
|
||
outputs = [
|
||
"out"
|
||
"man"
|
||
];
|
||
|
||
src = fetchurl {
|
||
name = "grafx2-${finalAttrs.version}.tar.gz";
|
||
url = "https://pulkomandy.tk/projects/GrafX2/downloads/65";
|
||
hash = "sha256-KdY7GUhQp/Q7t/ktLPGxI66ZHy2gDAffn2yB5pmcJCM=";
|
||
};
|
||
|
||
postPatch = ''
|
||
substituteInPlace misc/unix/grafx2.desktop \
|
||
--replace "Exec=grafx2" "Exec=grafx2-sdl"
|
||
'';
|
||
|
||
nativeBuildInputs = [
|
||
installShellFiles
|
||
pkg-config
|
||
];
|
||
|
||
buildInputs = [
|
||
SDL
|
||
SDL_image
|
||
SDL_ttf
|
||
fontconfig
|
||
libpng
|
||
libtiff
|
||
lua5
|
||
zlib
|
||
];
|
||
|
||
strictDeps = false; # Why??
|
||
|
||
makeFlags = [ "-C src" ];
|
||
installFlags = [
|
||
"-C src"
|
||
"PREFIX=$(out)"
|
||
];
|
||
|
||
postInstall = ''
|
||
installManPage misc/unix/grafx2.1
|
||
'';
|
||
|
||
meta = {
|
||
homepage = "http://grafx2.eu/";
|
||
description = "Ultimate 256-color painting program";
|
||
longDescription = ''
|
||
GrafX2 is a bitmap paint program inspired by the Amiga programs Deluxe
|
||
Paint and Brilliance. Specialized in 256-color drawing, it includes a very
|
||
large number of tools and effects that make it particularly suitable for
|
||
pixel art, game graphics, and generally any detailed graphics painted with
|
||
a mouse.
|
||
|
||
The program is mostly developed on Haiku, Linux and Windows, but is also
|
||
portable on many other platforms.
|
||
'';
|
||
license = with lib.licenses; [ gpl2Plus ];
|
||
mainProgram = "grafx2-sdl";
|
||
maintainers = with lib.maintainers; [ AndersonTorres ];
|
||
platforms = lib.platforms.unix;
|
||
};
|
||
})
|