2020-05-26 05:08:22 +02:00
|
|
|
{ pkgs ? (import ../.. {}).third_party
|
2020-05-24 18:53:42 +02:00
|
|
|
, buildType ? "release", ... }:
|
2020-05-17 21:46:06 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
aws-s3-cpp = pkgs.aws-sdk-cpp.override {
|
|
|
|
apis = ["s3" "transfer"];
|
|
|
|
customMemoryManagement = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
# TODO(tazjin): this is copied from the original derivation, but what
|
|
|
|
# is it for?
|
|
|
|
largeBoehm = pkgs.boehmgc.override {
|
|
|
|
enableLargeConfig = true;
|
|
|
|
};
|
2020-05-27 23:03:36 +02:00
|
|
|
in pkgs.llvmPackages.libcxxStdenv.mkDerivation {
|
2020-05-24 00:47:45 +02:00
|
|
|
pname = "tazjix";
|
2020-05-17 22:25:50 +02:00
|
|
|
version = "2.3.4";
|
2020-05-17 21:46:06 +02:00
|
|
|
src = ./.;
|
|
|
|
|
2020-05-27 23:03:36 +02:00
|
|
|
# Abseil's sources need to be symlinked into Nix' sources.
|
2020-05-21 00:31:50 +02:00
|
|
|
postUnpack = ''
|
2020-05-29 22:51:29 +02:00
|
|
|
ln -fs ${pkgs.abseil_cpp.drvAttrs.src} nix/abseil_cpp
|
|
|
|
ln -fs ${pkgs.glog.drvAttrs.src} nix/glog
|
2020-05-21 00:31:50 +02:00
|
|
|
'';
|
|
|
|
|
2020-05-17 21:46:06 +02:00
|
|
|
nativeBuildInputs = with pkgs; [
|
|
|
|
bison
|
2020-05-19 21:47:23 +02:00
|
|
|
clang-tools
|
2020-05-20 04:03:08 +02:00
|
|
|
cmake
|
2020-05-17 21:46:06 +02:00
|
|
|
pkgconfig
|
|
|
|
libxml2
|
|
|
|
libxslt
|
2020-05-22 23:58:04 +02:00
|
|
|
(import ./clangd.nix pkgs)
|
2020-05-17 21:46:06 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
# TODO(tazjin): Some of these might only be required for native inputs
|
|
|
|
buildInputs = with pkgs; [
|
|
|
|
aws-s3-cpp
|
|
|
|
brotli
|
|
|
|
bzip2
|
|
|
|
curl
|
|
|
|
editline
|
|
|
|
flex
|
|
|
|
libseccomp
|
|
|
|
libsodium
|
|
|
|
openssl
|
|
|
|
sqlite
|
|
|
|
xz
|
|
|
|
];
|
|
|
|
|
2020-06-21 22:41:46 +02:00
|
|
|
propagatedBuildInputs = with pkgs; [
|
|
|
|
boost
|
|
|
|
largeBoehm
|
|
|
|
];
|
|
|
|
|
2020-05-17 21:46:06 +02:00
|
|
|
# Install the various symlinks to the Nix binary which users expect
|
|
|
|
# to exist.
|
|
|
|
postInstall = ''
|
|
|
|
ln -s $out/bin/nix $out/bin/nix-build
|
|
|
|
ln -s $out/bin/nix $out/bin/nix-channel
|
|
|
|
ln -s $out/bin/nix $out/bin/nix-collect-garbage
|
|
|
|
ln -s $out/bin/nix $out/bin/nix-copy-closure
|
|
|
|
ln -s $out/bin/nix $out/bin/nix-daemon
|
|
|
|
ln -s $out/bin/nix $out/bin/nix-env
|
|
|
|
ln -s $out/bin/nix $out/bin/nix-hash
|
|
|
|
ln -s $out/bin/nix $out/bin/nix-instantiate
|
|
|
|
ln -s $out/bin/nix $out/bin/nix-prefetch-url
|
|
|
|
ln -s $out/bin/nix $out/bin/nix-shell
|
|
|
|
ln -s $out/bin/nix $out/bin/nix-store
|
|
|
|
|
|
|
|
mkdir -p $out/libexec/nix
|
2020-05-17 22:25:50 +02:00
|
|
|
ln -s $out/bin/nix $out/libexec/nix/build-remote
|
2020-05-17 21:46:06 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
# TODO(tazjin): integration test setup?
|
|
|
|
# TODO(tazjin): docs generation?
|
|
|
|
}
|