Merge staging-next into staging

This commit is contained in:
Frederik Rietdijk
2020-01-02 21:41:43 +01:00
206 changed files with 4153 additions and 3244 deletions

View File

@@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "topgrade";
version = "3.5.0";
version = "3.6.0";
src = fetchFromGitHub {
owner = "r-darwish";
repo = pname;
rev = "v${version}";
sha256 = "15w1qi38dsx573nadqpvarxx63xla53w775fwkdds2iyspaljsg6";
sha256 = "1pr8bwwxp8zvn89ldsb0qy5asx59kpd7dsp7sjmgnbj2ddizl05n";
};
cargoSha256 = "0xhrgs2rpkgjzgsipq5rb3fmqwvxrl2wi0fly1xaa6p304k1710m";
cargoSha256 = "1f5s8nxl450vpfhvshiwvm49q6ph79vb40qqiz0a2i6jdrzhphq3";
meta = with stdenv.lib; {
description = "Upgrade all the things";

View File

@@ -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;