mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
xbps: 0.59.1 -> 0.59.2; fix build
treat all warnings as warnings to prevent compile failure due to openssl depereciated api changelog: https://github.com/void-linux/xbps/releases/tag/0.59.2
This commit is contained in:
parent
911ad1e67f
commit
8da26616fd
@ -1,14 +1,14 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, fetchpatch, pkg-config, which, zlib, openssl, libarchive }:
|
{ lib, stdenv, fetchFromGitHub, pkg-config, which, zlib, openssl, libarchive }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "xbps";
|
pname = "xbps";
|
||||||
version = "0.59.1";
|
version = "0.59.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "void-linux";
|
owner = "void-linux";
|
||||||
repo = "xbps";
|
repo = "xbps";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0pab3xf97y4wqlyrb92zxd3cfsrbnlx6pssbw4brgwcxccw9jrhy";
|
hash = "sha256-3+LzFLDZ1zfRPBETMlpEn66zsfHRHQLlgeZPdMtmA14=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config which ];
|
nativeBuildInputs = [ pkg-config which ];
|
||||||
@ -17,16 +17,17 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./cert-paths.patch
|
./cert-paths.patch
|
||||||
# fix openssl 3
|
|
||||||
(fetchpatch {
|
|
||||||
url = "https://github.com/void-linux/xbps/commit/db1766986c4389eb7e17c0e0076971b711617ef9.patch";
|
|
||||||
hash = "sha256-CmyZdsHStPsELdEgeJBWIbXIuVeBhv7VYb2uGYxzUWQ=";
|
|
||||||
})
|
|
||||||
];
|
];
|
||||||
|
|
||||||
env.NIX_CFLAGS_COMPILE = "-Wno-error=unused-result -Wno-error=deprecated-declarations";
|
env.NIX_CFLAGS_COMPILE = "-Wno-error=unused-result -Wno-error=deprecated-declarations";
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
# _BSD_SOURCE causes cpp warning
|
||||||
|
# https://github.com/void-linux/xbps/issues/576
|
||||||
|
substituteInPlace bin/xbps-fbulk/main.c lib/util.c lib/external/dewey.c lib/external/fexec.c \
|
||||||
|
--replace 'define _BSD_SOURCE' 'define _DEFAULT_SOURCE' \
|
||||||
|
--replace '# define _BSD_SOURCE' '#define _DEFAULT_SOURCE'
|
||||||
|
|
||||||
# fix unprefixed ranlib (needed on cross)
|
# fix unprefixed ranlib (needed on cross)
|
||||||
substituteInPlace lib/Makefile \
|
substituteInPlace lib/Makefile \
|
||||||
--replace 'SILENT}ranlib ' 'SILENT}$(RANLIB) '
|
--replace 'SILENT}ranlib ' 'SILENT}$(RANLIB) '
|
||||||
|
Loading…
Reference in New Issue
Block a user