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

40 lines
1.1 KiB
Nix
Raw Normal View History

2019-07-04 10:34:33 +01:00
{ stdenv, fetchFromGitHub, pkgconfig, which, zlib, openssl_1_1, libarchive }:
2018-05-18 15:05:44 +01:00
stdenv.mkDerivation rec {
2019-07-04 10:34:33 +01:00
pname = "xbps";
version = "0.56";
2018-05-18 15:05:44 +01:00
src = fetchFromGitHub {
owner = "void-linux";
2018-05-18 15:05:44 +01:00
repo = "xbps";
rev = version;
2019-07-04 10:34:33 +01:00
sha256 = "0hqvq6fq62l5sgm4fy3zb0ks889d21mqz4f4my3iifs6c9f50na2";
2018-05-18 15:05:44 +01:00
};
nativeBuildInputs = [ pkgconfig which ];
2019-07-04 10:34:33 +01:00
buildInputs = [ zlib openssl_1_1 libarchive ];
2018-05-18 15:05:44 +01:00
patches = [ ./cert-paths.patch ];
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 15:05:44 +01:00
description = "The X Binary Package System";
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 ];
};
}