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: 58b3b9c34b30
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 84903aa35451
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 18, 2019

  1. commandergenius: update and move to gitlab (#57740)

    update and move to gitlab (repo has moved)
    update fixes build (https://hydra.nixos.org/build/90482453/nixlog/2) for #56826
    stephengroat authored and xeji committed Mar 18, 2019
    Copy the full SHA
    84903aa View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/games/commandergenius/default.nix
10 changes: 5 additions & 5 deletions pkgs/games/commandergenius/default.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{ stdenv, fetchFromGitHub, SDL2, SDL2_image, pkgconfig
{ stdenv, fetchFromGitLab, SDL2, SDL2_image, pkgconfig
, libvorbis, libGL, boost, cmake, zlib, curl, SDL2_mixer, python3
}:

stdenv.mkDerivation rec {
name = "commandergenius-${version}";
version = "2.2.2";
version = "2.3.2";

src = fetchFromGitHub {
owner = "gerstrong";
src = fetchFromGitLab {
owner = "Dringgstein";
repo = "Commander-Genius";
rev = "v${version}";
sha256 = "1mfw25pgr492ayqw3b85mwp20wh6anrr90gdy605nv1yjma62pmj";
sha256 = "1a8as56ycbq8csnssd5wqv2jand5c9yskld6prh3dn9gy96jbvgj";
};

buildInputs = [ SDL2 SDL2_image SDL2_mixer libGL boost libvorbis zlib curl python3 ];