txr: 273 -> 274 (#162228)

* txr: 273 -> 274

* txr: latest clang stdenv, fixes w/musl

I have not identified a cause but since this resolves the issue
let's use latest clang for now.

* txr: no longer needs bison/flex unless in maintainer mode

Co-authored-by: Will Dietz <w@wdtz.org>
This commit is contained in:
R. RyanTM 2022-02-28 12:43:31 -08:00 committed by GitHub
parent 4bbac52419
commit d39a026cc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 5 deletions

View File

@ -1,15 +1,14 @@
{ lib, stdenv, fetchurl, bison, flex, libffi, coreutils }:
{ lib, stdenv, fetchurl, libffi, coreutils }:
stdenv.mkDerivation rec {
pname = "txr";
version = "273";
version = "274";
src = fetchurl {
url = "http://www.kylheku.com/cgit/txr/snapshot/${pname}-${version}.tar.bz2";
sha256 = "sha256-l0o60NktIsKn720kO8xzySQBMAVrfYhhWZ8L5K8QrUg=";
sha256 = "sha256-bWgz0kmPLN0V0rkFRiCqxkBjhN8FV9fL+Vu8GSw9Ja4=";
};
nativeBuildInputs = [ bison flex ];
buildInputs = [ libffi ];
enableParallelBuilding = true;

View File

@ -10604,7 +10604,7 @@ with pkgs;
twurl = callPackage ../tools/misc/twurl { };
txr = callPackage ../tools/misc/txr { stdenv = clangStdenv; };
txr = callPackage ../tools/misc/txr { inherit (llvmPackages_latest) stdenv; };
txt2man = callPackage ../tools/misc/txt2man { };