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

Commits on Nov 18, 2018

  1. tome4: 1.5.5 -> 1.5.10

    (#50547)
    * tome4: 1.5.5 -> 1.5.10
    
    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/tome4/versions
    
    * tome4: restrict platforms to x86-linux
    
    It's been failing on aarch64 forever
    r-ryantm authored and c0bw3b committed Nov 18, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    Ekleog Léo Gaspard
    Copy the full SHA
    c1f57f8 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/games/tome4/default.nix
6 changes: 3 additions & 3 deletions pkgs/games/tome4/default.nix
Original file line number Diff line number Diff line change
@@ -18,11 +18,11 @@ let

in stdenv.mkDerivation rec {
name = "${pname}-${version}";
version = "1.5.5";
version = "1.5.10";

src = fetchurl {
url = "https://te4.org/dl/t-engine/t-engine4-src-${version}.tar.bz2";
sha256 = "0v2qgdfpvdzd1bcbp9v8pfahj1bgczsq2d4xfhh5wg11jgjcwz03";
sha256 = "0mc5dgh2x9nbili7gy6srjhb23ckalf08wqq2amyjr5rq392jvd7";
};

nativeBuildInputs = [ premake4 makeWrapper unzip ];
@@ -82,6 +82,6 @@ in stdenv.mkDerivation rec {
homepage = https://te4.org/;
license = licenses.gpl3;
maintainers = with maintainers; [ chattered peterhoeg ];
platforms = subtractLists ["aarch64-linux"] platforms.linux;
platforms = with platforms; [ "i686-linux" "x86_64-linux" ];
};
}