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
This commit is contained in:
R. RyanTM 2018-11-18 12:20:42 -08:00 committed by Renaud
parent 1e34e5943b
commit c1f57f88c5

View file

@ -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" ];
};
}