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

Commits on Nov 2, 2020

  1. Copy the full SHA
    0e17599 View commit details
  2. Merge pull request #102416 from freezeboy/unbreak-liquidwar5

    liquidwar5: 5.6.4 -> 5.6.5, unbreak
    7c6f434c authored Nov 2, 2020
    Copy the full SHA
    5db46fe View commit details
Showing with 3 additions and 4 deletions.
  1. +3 −4 pkgs/games/liquidwar/5.nix
7 changes: 3 additions & 4 deletions pkgs/games/liquidwar/5.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{ stdenv, fetchurl, allegro }:
stdenv.mkDerivation rec {
version = "5.6.4";
version = "5.6.5";
pname = "liquidwar5";
src = fetchurl {
url = "https://download.savannah.gnu.org/releases/liquidwar/liquidwar-${version}.tar.gz";
sha256 = "18wkbfzp07yckg05b5gjy67rw06z9lxp0hzg0zwj7rz8i12jxi9j";
url = "http://www.ufoot.org/download/liquidwar/v5/${version}/liquidwar-${version}.tar.gz";
sha256 = "2tCqhN1BbK0FVCHtm0DfOe+ueNPfdZwFg8ZMVPfy/18=";
};

buildInputs = [ allegro ];
@@ -20,6 +20,5 @@ stdenv.mkDerivation rec {
maintainers = [ maintainers.raskin ];
license = licenses.gpl2Plus;
platforms = platforms.linux;
broken = true;
};
}