From 1bb80bac4fa503cab0d459708278525984fb86d4 Mon Sep 17 00:00:00 2001 From: Maciek Starzyk Date: Thu, 14 Jul 2022 21:24:34 +0200 Subject: [PATCH 1/2] txr: 275 -> 278 --- pkgs/tools/misc/txr/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/txr/default.nix b/pkgs/tools/misc/txr/default.nix index e667c988ca6f..2e83d3a2e53c 100644 --- a/pkgs/tools/misc/txr/default.nix +++ b/pkgs/tools/misc/txr/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "txr"; - version = "275"; + version = "278"; src = fetchurl { url = "http://www.kylheku.com/cgit/txr/snapshot/${pname}-${version}.tar.bz2"; - sha256 = "sha256-HmykTyh5F49CBa1w7o/HV6Q5Lsx1Qkxe0JBHQdGxVB4="; + sha256 = "sha256-RwPdDQGFL851eegQfMb8xHxC8AP39heSIALXjp/5/cw="; }; buildInputs = [ libffi ]; From 14cfabf91b8711f4795ee404f58891a7958b4278 Mon Sep 17 00:00:00 2001 From: Maciek Starzyk Date: Sun, 17 Jul 2022 14:15:26 +0200 Subject: [PATCH 2/2] txr: mark as ubroken on darwin --- pkgs/tools/misc/txr/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/txr/default.nix b/pkgs/tools/misc/txr/default.nix index 2e83d3a2e53c..d91f5fa36501 100644 --- a/pkgs/tools/misc/txr/default.nix +++ b/pkgs/tools/misc/txr/default.nix @@ -44,6 +44,6 @@ stdenv.mkDerivation rec { license = licenses.bsd2; homepage = "http://nongnu.org/txr"; maintainers = with lib.maintainers; [ dtzWill ]; - platforms = platforms.linux; # Darwin fails although it should work AFAIK + platforms = platforms.all; }; }