33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
69 lines
1.5 KiB
Nix
69 lines
1.5 KiB
Nix
{ lib, stdenv
|
|
, build2
|
|
, fetchurl
|
|
, git
|
|
, libbpkg
|
|
, libbutl
|
|
, libodb
|
|
, libodb-sqlite
|
|
, openssl
|
|
, enableShared ? !stdenv.hostPlatform.isStatic
|
|
, enableStatic ? !enableShared
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bpkg";
|
|
version = "0.15.0";
|
|
|
|
outputs = [ "out" "doc" "man" ];
|
|
|
|
src = fetchurl {
|
|
url = "https://pkg.cppget.org/1/alpha/build2/bpkg-${version}.tar.gz";
|
|
sha256 = "sha256-3F4Pv8YX++cNa6aKhPM67mrt/5oE1IeoZUSmljHqBfI=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
nativeBuildInputs = [
|
|
build2
|
|
];
|
|
buildInputs = [
|
|
build2
|
|
libbpkg
|
|
libbutl
|
|
libodb
|
|
libodb-sqlite
|
|
];
|
|
nativeCheckInputs = [
|
|
git
|
|
openssl
|
|
];
|
|
|
|
doCheck = !stdenv.isDarwin; # tests hang
|
|
|
|
# Failing test
|
|
postPatch = ''
|
|
rm tests/rep-create.testscript
|
|
'';
|
|
|
|
build2ConfigureFlags = [
|
|
"config.bin.lib=${build2.configSharedStatic enableShared enableStatic}"
|
|
];
|
|
|
|
postInstall = lib.optionalString stdenv.isDarwin ''
|
|
install_name_tool -add_rpath '${lib.getLib build2}/lib' "''${!outputBin}/bin/bpkg"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "build2 package dependency manager";
|
|
# https://build2.org/bpkg/doc/bpkg.xhtml
|
|
longDescription = ''
|
|
The build2 package dependency manager is used to manipulate build
|
|
configurations, packages, and repositories.
|
|
'';
|
|
homepage = "https://build2.org/";
|
|
changelog = "https://git.build2.org/cgit/bpkg/tree/NEWS";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ r-burns ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|