lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #292721 from r-ryantm/auto-update/lzip

lzip: 1.24 -> 1.24.1

authored by

Weijia Wang and committed by
GitHub
2db89cb6 8d0048d3

+2 -18
+2 -5
pkgs/tools/compression/lzip/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "lzip"; 10 - version = "1.24"; 10 + version = "1.24.1"; 11 11 outputs = [ "out" "man" "info" ]; 12 12 13 13 src = fetchurl { 14 14 url = "mirror://savannah/lzip/${pname}-${version}.tar.gz"; 15 - sha256 = "sha256-1CZZIpsQ4GbutugetnPN2JO2cuUS0mcZwtlZdVVspWw="; 15 + hash = "sha256-MMnLagYF9HnElsN262KaSLChaW0WfjweCQxd76SBsWI="; 16 16 }; 17 17 18 18 patches = lib.optionals stdenv.hostPlatform.isMinGW [ 19 19 ./mingw-install-exe-file.patch 20 - # https://lists.nongnu.org/archive/html/lzip-bug/2024-02/msg00015.html 21 - # patch provided by upstream, to be removed in the next release 22 - ./mingw-mkdir-one-argument.patch 23 20 ]; 24 21 25 22 configureFlags = [
-13
pkgs/tools/compression/lzip/mingw-mkdir-one-argument.patch
··· 1 - --- lzip-1.24/main.cc 2024-01-26 00:08:47.000000000 +0100 2 - +++ lzip-1.24.1/src/main.cc 2024-02-06 16:04:00.000000000 +0100 3 - @@ -42,8 +42,10 @@ 4 - #if defined __MSVCRT__ || defined __OS2__ || defined __DJGPP__ 5 - #include <io.h> 6 - #if defined __MSVCRT__ 7 - +#include <direct.h> 8 - #define fchmod(x,y) 0 9 - #define fchown(x,y,z) 0 10 - +#define mkdir(name,mode) _mkdir(name) 11 - #define strtoull std::strtoul 12 - #define SIGHUP SIGTERM 13 - #define S_ISSOCK(x) 0