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

Commits on Mar 4, 2019

  1. Copy the full SHA
    83220a7 View commit details
  2. trigger-rally: 0.6.5 -> 0.6.6

    Fixes build.
    cpages committed Mar 4, 2019
    Copy the full SHA
    eda985d View commit details
Showing with 4 additions and 4 deletions.
  1. +2 −2 pkgs/games/steam/steam.nix
  2. +2 −2 pkgs/games/trigger/default.nix
4 changes: 2 additions & 2 deletions pkgs/games/steam/steam.nix
Original file line number Diff line number Diff line change
@@ -2,14 +2,14 @@

let
traceLog = "/tmp/steam-trace-dependencies.log";
version = "1.0.0.56";
version = "1.0.0.59";

in stdenv.mkDerivation rec {
name = "steam-original-${version}";

src = fetchurl {
url = "http://repo.steampowered.com/steam/pool/steam/s/steam/steam_${version}.tar.gz";
sha256 = "01jgp909biqf4rr56kb08jkl7g5xql6r2g4ch6lc71njgcsbn5fs";
sha256 = "17yrziy2bmzcppp5v3ycdjll250k4idak4rjakmw8gvr96whs255";
};

makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
4 changes: 2 additions & 2 deletions pkgs/games/trigger/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@
, SDL2, freealut, SDL2_image, openal, physfs, zlib, libGLU_combined, glew }:

stdenv.mkDerivation rec {
name = "trigger-rally-0.6.5";
name = "trigger-rally-0.6.6";

src = fetchurl {
url = "mirror://sourceforge/trigger-rally/${name}.tar.gz";
sha256 = "095s4sx0s1ijlarkh84rvzlv4nxh9llrsal1lb3m3pf0v228gnzj";
sha256 = "08qa2f2s8zyn42ff6jb1gsi64d916020ixkzvl16kbb88rabqra8";
};

buildInputs = [ SDL2 freealut SDL2_image openal physfs zlib libGLU_combined glew ];