Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7facd2f438ac
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a0ea372715c5
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 6, 2020

  1. tuxpaint: 0.9.22 -> 0.9.24

    viric committed Jun 6, 2020
    Copy the full SHA
    a0ea372 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/games/tuxpaint/default.nix
8 changes: 4 additions & 4 deletions pkgs/games/tuxpaint/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{ stdenv, fetchurl, SDL, SDL_image, SDL_ttf, SDL_mixer, libpng,
cairo, librsvg, gettext, libpaper, fribidi, pkgconfig, gperf }:
cairo, librsvg, gettext, libpaper, fribidi, pkgconfig, gperf, imagemagick }:

stdenv.mkDerivation rec {
version = "0.9.22";
version = "0.9.24";
pname = "tuxpaint";

src = fetchurl {
url = "mirror://sourceforge/tuxpaint/${version}/${pname}-${version}.tar.gz";
sha256 = "1qrbrdck9yxpcg3si6jb9i11w8lw9h4hqad0pfaxgyiniqpr7gca";
sha256 = "06m1lg2pikfkmassfvvrbwqffwgixcmjh1li6akaldgkalpmfql7";
};

nativeBuildInputs = [ SDL SDL_image SDL_ttf SDL_mixer libpng cairo
librsvg gettext libpaper fribidi pkgconfig gperf ];
librsvg gettext libpaper fribidi pkgconfig gperf imagemagick ];
hardeningDisable = [ "format" ];
makeFlags = [ "GPERF=${gperf}/bin/gperf"
"PREFIX=$$out"