nixpkgs/pkgs/tools/package-management/xbps/default.nix

42 lines
1.1 KiB
Nix
Raw Normal View History

2019-07-30 01:41:32 +00:00
{ stdenv, fetchFromGitHub, pkgconfig, which, zlib, openssl, libarchive }:
2018-05-18 14:05:44 +00:00
stdenv.mkDerivation rec {
2019-07-04 09:34:33 +00:00
pname = "xbps";
2019-11-09 14:54:31 +00:00
version = "0.57.1";
2018-05-18 14:05:44 +00:00
src = fetchFromGitHub {
owner = "void-linux";
2018-05-18 14:05:44 +00:00
repo = "xbps";
rev = version;
2019-11-09 14:54:31 +00:00
sha256 = "0adxhhvn5r6hwwqp42iwwfrslmps30ycndi6v39934v38rf0wx9s";
2018-05-18 14:05:44 +00:00
};
nativeBuildInputs = [ pkgconfig which ];
2019-07-30 01:41:32 +00:00
buildInputs = [ zlib openssl libarchive ];
2018-05-18 14:05:44 +00:00
patches = [ ./cert-paths.patch ];
NIX_CFLAGS_COMPILE = [ "-Wno-error=unused-result" ];
2018-05-18 14:05:44 +00: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; {
homepage = https://github.com/void-linux/xbps;
2018-05-18 14:05:44 +00:00
description = "The X Binary Package System";
platforms = platforms.linux; # known to not work on Darwin, at least
2018-05-18 14:05:44 +00:00
license = licenses.bsd2;
maintainers = with maintainers; [ dtzWill ];
};
}