nixpkgs/pkgs/games/tuxpaint/default.nix

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

59 lines
1.8 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, SDL, SDL_gfx, SDL_image, SDL_ttf, SDL_mixer, libpng
, libimagequant, cairo, librsvg, gettext, libpaper, fribidi, pkg-config, gperf
, imagemagick
}:
2018-04-24 19:25:13 +00:00
stdenv.mkDerivation rec {
version = "0.9.27";
pname = "tuxpaint";
2018-04-24 19:25:13 +00:00
src = fetchurl {
url = "mirror://sourceforge/tuxpaint/${version}/${pname}-${version}.tar.gz";
sha256 = "sha256-qyuA6J34gijNDsCmyQtJ1UPLFXqjj7kMvTop8AFAVXo=";
2018-04-24 19:25:13 +00:00
};
nativeBuildInputs = [
SDL SDL_gfx SDL_image SDL_ttf SDL_mixer libpng cairo libimagequant librsvg
gettext libpaper fribidi pkg-config gperf imagemagick
];
2018-04-24 19:25:13 +00:00
hardeningDisable = [ "format" ];
makeFlags = [ "GPERF=${gperf}/bin/gperf"
"PREFIX=$$out"
"COMPLETIONDIR=$$out/share/bash-completion/completions"
];
patches = [ ./tuxpaint-completion.diff ];
postPatch = ''
grep -Zlr include.*SDL . | xargs -0 sed -i -e 's,"SDL,"SDL/SDL,'
'';
# stamps
stamps = fetchurl {
url = "mirror://sourceforge/project/tuxpaint/tuxpaint-stamps/2021-11-25/tuxpaint-stamps-2021.11.25.tar.gz";
sha256 = "sha256-y1XuIbLSW0QO4has+rC7jZBq8cma28d+jbEe7DBYnVI=";
2018-04-24 19:25:13 +00:00
};
postInstall = ''
2020-05-04 19:56:08 +00:00
# Install desktop file
mkdir -p $out/share/applications
cp hildon/tuxpaint.xpm $out/share/pixmaps
sed -e "s+Exec=tuxpaint+Exec=$out/bin/tuxpaint+" < src/tuxpaint.desktop > $out/share/applications/tuxpaint.desktop
2021-01-15 04:31:39 +00:00
2020-05-04 19:56:08 +00:00
# Install stamps
2018-04-24 19:25:13 +00:00
tar xzf $stamps
cd tuxpaint-stamps-*
2018-04-24 19:25:13 +00:00
make install-all PREFIX=$out
rm -rf $out/share/tuxpaint/stamps/military
'';
enableParallelBuilding = true;
2018-04-24 19:25:13 +00:00
meta = {
description = "Open Source Drawing Software for Children";
homepage = "http://www.tuxpaint.org/";
license = lib.licenses.gpl3Plus;
2021-01-15 04:31:39 +00:00
maintainers = with lib.maintainers; [ woffs ];
platforms = lib.platforms.linux;
2018-04-24 19:25:13 +00:00
};
}