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

Commits on Mar 23, 2017

  1. atanks: 6.2 -> 6.5

    lheckemann authored and rycee committed Mar 23, 2017

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    a4d2856 View commit details
  2. Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    f92d080 View commit details
Showing with 3 additions and 7 deletions.
  1. +3 −7 pkgs/games/atanks/default.nix
10 changes: 3 additions & 7 deletions pkgs/games/atanks/default.nix
Original file line number Diff line number Diff line change
@@ -2,20 +2,16 @@

stdenv.mkDerivation rec {
name = "atanks-${version}";
version = "6.2";
version = "6.5";

src = fetchurl {
url = "mirror://sourceforge/project/atanks/atanks/${name}/${name}.tar.gz";
sha256 = "1s1lb87ind0y9d6hmfaf1b9wks8q3hd6w5n9dibq75rxqmcfvlpy";
sha256 = "0bijsbd51j4wsnmdxj54r92m7h8zqnvh9z3qqdig6zx7a8kjn61j";
};

buildInputs = [ allegro ];

patchPhase = ''
substituteInPlace Makefile --replace /usr $out
'';

makeFlags = [ "PREFIX=$(out)/" "INSTALL=install" ];
makeFlags = [ "PREFIX=$(out)/" "INSTALL=install" "CXX=g++" ];

meta = with stdenv.lib; {
description = "Atomic Tanks ballistics game";