Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2b9e68bd08ba
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 71cbc67f3fea
Choose a head ref
  • 3 commits
  • 1 file changed
  • 1 contributor

Commits on Jan 1, 2020

  1. txr: 225 -> 230

    dtzWill committed Jan 1, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    dtzWill Will Dietz
    Copy the full SHA
    68d725d View commit details
  2. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    dtzWill Will Dietz
    Copy the full SHA
    2dd40bf View commit details
  3. Merge pull request #76772 from dtzWill/update/txr-230

    txr: 225 -> 230
    dtzWill authored Jan 1, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    71cbc67 View commit details
Showing with 7 additions and 2 deletions.
  1. +7 −2 pkgs/tools/misc/txr/default.nix
9 changes: 7 additions & 2 deletions pkgs/tools/misc/txr/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,21 @@

stdenv.mkDerivation rec {
pname = "txr";
version = "225";
version = "230";

src = fetchurl {
url = "http://www.kylheku.com/cgit/txr/snapshot/${pname}-${version}.tar.bz2";
sha256 = "07vh0rmvjr2sir15l3ppp2pnp2d849dg17rzykkzqyk3d5rwfxyj";
sha256 = "03ab9drdqvkfq240pkrx6197jjvvjizjwfx9psjmm6lixksw0kjx";
};

nativeBuildInputs = [ bison flex ];
buildInputs = [ libffi ];

# fix usage of off_t without include
postPatch = ''
sed -i '1i#include <sys/types.h>' sysif.h
'';

enableParallelBuilding = true;

doCheck = true;