From ecb522f617484f94cb086a4b82ea78a18d9515d6 Mon Sep 17 00:00:00 2001 From: Timo Kaufmann Date: Mon, 13 May 2019 18:27:39 +0200 Subject: [PATCH 1/2] linbox: 1.6.0 -> 1.6.1 https://trac.sagemath.org/ticket/26932#comment:20: "In addition, we fixed some minor issues in the linbox-auto-install and the dependency version checking system and therefore release 1.6.1 consequently." --- pkgs/development/libraries/linbox/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/linbox/default.nix b/pkgs/development/libraries/linbox/default.nix index 8389ba7e3e0..64bb81f18d6 100644 --- a/pkgs/development/libraries/linbox/default.nix +++ b/pkgs/development/libraries/linbox/default.nix @@ -12,13 +12,13 @@ stdenv.mkDerivation rec { name = "${pname}-${version}"; pname = "linbox"; - version = "1.6.0"; + version = "1.6.1"; src = fetchFromGitHub { owner = "linbox-team"; repo = "${pname}"; rev = "v${version}"; - sha256 = "0rmk474hvgkggmhxwa5i52wdnbvipx9n8mpsc41j1c96q4v8fl22"; + sha256 = "11mgj7pkppvzmhx5g6wfnzisk36z00gqzzq9p14hzh5dbdhk3693"; }; nativeBuildInputs = [ From 4cb493f128782fc97c0d1a8583e4c90225c29291 Mon Sep 17 00:00:00 2001 From: Timo Kaufmann Date: Mon, 13 May 2019 19:38:10 +0200 Subject: [PATCH 2/2] linbox: mark as broken on aarch64 and darwin --- pkgs/development/libraries/linbox/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/linbox/default.nix b/pkgs/development/libraries/linbox/default.nix index 64bb81f18d6..cde422906da 100644 --- a/pkgs/development/libraries/linbox/default.nix +++ b/pkgs/development/libraries/linbox/default.nix @@ -61,6 +61,7 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.lgpl21Plus; maintainers = [stdenv.lib.maintainers.timokau]; platforms = stdenv.lib.platforms.unix; + broken = stdenv.isDarwin || stdenv.isAarch64; # https://trac.sagemath.org/ticket/26932#comment:21 homepage = http://linalg.org/; }; }