mirror of
https://github.com/JakeHillion/object-introspection.git
synced 2024-11-09 21:24:14 +00:00
134 lines
3.2 KiB
Nix
134 lines
3.2 KiB
Nix
{
|
|
description = "Object level memory profiler for C++";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
treefmt-nix.url = "github:numtide/treefmt-nix";
|
|
treefmt-nix.inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
outputs =
|
|
{
|
|
self,
|
|
nixpkgs,
|
|
flake-utils,
|
|
treefmt-nix,
|
|
...
|
|
}@inputs:
|
|
flake-utils.lib.eachSystem [ flake-utils.lib.system.x86_64-linux ] (
|
|
system:
|
|
let
|
|
pkgs = import nixpkgs { inherit system; };
|
|
|
|
drgnSrc = pkgs.fetchFromGitHub {
|
|
owner = "JakeHillion";
|
|
repo = "drgn";
|
|
rev = "b1f8c3e8526611b6720800250ba858a713dd9e4f";
|
|
hash = "sha256-5WhMHgx/RKtqjxGx4AyiqVKMot5xulr+6c8i2E9IxiA=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
mkOidPackage =
|
|
llvmPackages:
|
|
with pkgs;
|
|
pkgs.llvmPackages.stdenv.mkDerivation rec {
|
|
name = "oid";
|
|
|
|
src = self;
|
|
|
|
nativeBuildInputs = [
|
|
autoconf
|
|
automake
|
|
bison
|
|
cmake
|
|
flex
|
|
gettext
|
|
git
|
|
hexdump
|
|
libtool
|
|
ninja
|
|
pkgconf
|
|
python312
|
|
python312Packages.setuptools
|
|
python312Packages.toml
|
|
glibcLocales
|
|
];
|
|
|
|
buildInputs = [
|
|
llvmPackages.libclang
|
|
llvmPackages.llvm
|
|
|
|
boost
|
|
bzip2
|
|
curl
|
|
double-conversion
|
|
elfutils
|
|
flex
|
|
folly
|
|
folly.fmt
|
|
gflags
|
|
glog
|
|
gtest
|
|
icu
|
|
jemalloc
|
|
libarchive
|
|
libmicrohttpd
|
|
liburing
|
|
libxml2
|
|
lzma
|
|
msgpack
|
|
range-v3
|
|
rocksdb_8_11
|
|
sqlite
|
|
tomlplusplus
|
|
zstd
|
|
|
|
llvmPackages.openmp # should match the stdenv clang version, see: https://github.com/NixOS/nixpkgs/issues/79818
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-Ddrgn_SOURCE_DIR=${drgnSrc}"
|
|
"-DFORCE_BOOST_STATIC=Off"
|
|
];
|
|
|
|
outputs = [ "out" ];
|
|
};
|
|
in
|
|
{
|
|
packages = rec {
|
|
default = oid-llvm16;
|
|
|
|
oid-llvm15 = mkOidPackage pkgs.llvmPackages_15;
|
|
oid-llvm16 = mkOidPackage pkgs.llvmPackages_16;
|
|
};
|
|
|
|
apps.default = {
|
|
type = "app";
|
|
program = "${self.packages.${system}.default}/bin/oid";
|
|
};
|
|
}
|
|
)
|
|
// flake-utils.lib.eachDefaultSystem (
|
|
system:
|
|
let
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
treefmtEval = treefmt-nix.lib.evalModule pkgs (pkgs: {
|
|
projectRootFile = "flake.nix";
|
|
settings.global.excludes = [ "./extern/**" ];
|
|
|
|
programs.nixfmt.enable = true;
|
|
programs.clang-format.enable = true;
|
|
programs.black.enable = true;
|
|
programs.isort.enable = true;
|
|
});
|
|
in
|
|
{
|
|
formatter = treefmtEval.config.build.wrapper;
|
|
checks.formatting = treefmtEval.config.build.check self;
|
|
}
|
|
);
|
|
}
|