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";
2020-03-10 01:29:56 +00:00
version = "0.59";
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;
2020-03-10 01:29:56 +00:00
sha256 = "0m00h1f004gsa998cr93b4zmsn4162983d360pzpd3hfi3qzan5d";
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 ];
2019-10-30 11:34:47 +00:00
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; {
2020-03-10 01:29:56 +00:00
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 ];
};
}