2019-07-30 02:41:32 +01:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, which, zlib, openssl, libarchive }:
|
2018-05-18 15:05:44 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-07-04 10:34:33 +01:00
|
|
|
pname = "xbps";
|
2020-04-07 21:58:29 +01:00
|
|
|
version = "0.59.1";
|
2018-05-18 15:05:44 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-10-19 13:38:53 +01:00
|
|
|
owner = "void-linux";
|
2018-05-18 15:05:44 +01:00
|
|
|
repo = "xbps";
|
|
|
|
rev = version;
|
2020-04-07 21:58:29 +01:00
|
|
|
sha256 = "0pab3xf97y4wqlyrb92zxd3cfsrbnlx6pssbw4brgwcxccw9jrhy";
|
2018-05-18 15:05:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig which ];
|
|
|
|
|
2019-07-30 02:41:32 +01:00
|
|
|
buildInputs = [ zlib openssl libarchive ];
|
2018-05-18 15:05:44 +01:00
|
|
|
|
|
|
|
patches = [ ./cert-paths.patch ];
|
|
|
|
|
2019-10-30 11:34:47 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=unused-result";
|
2019-09-05 02:45:18 +01:00
|
|
|
|
2018-05-18 15:05:44 +01:00
|
|
|
postPatch = ''
|
|
|
|
# fix unprefixed ranlib (needed on cross)
|
|
|
|
substituteInPlace lib/Makefile \
|
|
|
|
--replace 'SILENT}ranlib ' 'SILENT}$(RANLIB) '
|
|
|
|
|
|
|
|
# Don't try to install keys to /var/db/xbps, put in $out/share for now
|
|
|
|
substituteInPlace data/Makefile \
|
|
|
|
--replace '$(DESTDIR)/$(DBDIR)' '$(DESTDIR)/$(SHAREDIR)'
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-10 01:29:56 +00:00
|
|
|
homepage = "https://github.com/void-linux/xbps";
|
2018-05-18 15:05:44 +01:00
|
|
|
description = "The X Binary Package System";
|
2018-05-18 18:42:00 +01:00
|
|
|
platforms = platforms.linux; # known to not work on Darwin, at least
|
2018-05-18 15:05:44 +01:00
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ dtzWill ];
|
|
|
|
};
|
|
|
|
}
|