mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
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:
parent
4bbac52419
commit
d39a026cc2
2 changed files with 4 additions and 5 deletions
|
@ -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;
|
||||
|
|
|
@ -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 { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue