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: 2af1357bbbf1
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 11aae76a9874
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Mar 17, 2018

  1. SDL_gfx: 2.0.25 -> 2.0.26

    Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:
    - built on NixOS
    - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
    - found 2.0.26 with grep in /nix/store/cbvm4r21kf3acf43hff5sf6r1vbd6lpg-SDL_gfx-2.0.26
    matthewbauer committed Mar 17, 2018
    Copy the full SHA
    c1c0094 View commit details

Commits on Mar 22, 2018

  1. Merge pull request #37228 from matthewbauer/auto-update/SDL_gfx

    SDL_gfx: 2.0.25 -> 2.0.26
    matthewbauer authored Mar 22, 2018
    Copy the full SHA
    11aae76 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/SDL_gfx/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/SDL_gfx/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
name = "SDL_gfx-${version}";
version = "2.0.25";
version = "2.0.26";

src = fetchurl {
url = "http://www.ferzkopp.net/Software/SDL_gfx-2.0/${name}.tar.gz";
sha256 = "1h2rj34dxi5xlwpvm293v2d91gsirhnpzlmnjns9xwkcdg0fsvjm";
sha256 = "0ijljhs0v99dj6y27hc10z6qchyp8gdp4199y6jzngy6dzxlzsvw";
};

buildInputs = [ SDL ] ;