2024-04-07 00:54:41 +02:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitLab
|
2024-07-20 05:15:40 +02:00
|
|
|
, buildPackages
|
2024-04-07 00:54:41 +02:00
|
|
|
, cargo
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, pkg-config
|
|
|
|
, desktop-file-utils
|
|
|
|
, rustPlatform
|
|
|
|
, rustc
|
|
|
|
, wrapGAppsHook4
|
2024-07-20 05:15:40 +02:00
|
|
|
, darwin
|
|
|
|
, gettext
|
2024-04-07 00:54:41 +02:00
|
|
|
, glib
|
|
|
|
, gtk4
|
|
|
|
, libadwaita
|
2024-07-20 05:15:40 +02:00
|
|
|
, libiconv
|
2024-04-07 00:54:41 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
|
|
pname = "bustle";
|
|
|
|
version = "0.9.2";
|
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "gitlab.gnome.org";
|
|
|
|
owner = "World";
|
|
|
|
repo = "bustle";
|
|
|
|
rev = finalAttrs.version;
|
|
|
|
hash = "sha256-/B1rY8epcP0OFv+kVgv4Jx6x/oK3XpNnZcpSGvdIPx0=";
|
|
|
|
};
|
|
|
|
|
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
|
|
inherit (finalAttrs) src;
|
|
|
|
name = "bustle-${finalAttrs.version}";
|
|
|
|
hash = "sha256-r29Z+6P+yuCpOBUE3vkESd15lcGXs5+ZTBiQ9nW6DJ4=";
|
|
|
|
};
|
|
|
|
|
2024-07-20 05:15:40 +02:00
|
|
|
env = lib.optionalAttrs stdenv.isDarwin {
|
|
|
|
# Set the location to gettext to ensure the nixpkgs one on Darwin instead of the vendored one.
|
|
|
|
# The vendored gettext does not build with clang 16.
|
|
|
|
GETTEXT_BIN_DIR = "${lib.getBin buildPackages.gettext}/bin";
|
|
|
|
GETTEXT_INCLUDE_DIR = "${lib.getDev gettext}/include";
|
|
|
|
GETTEXT_LIB_DIR = "${lib.getLib gettext}/lib";
|
|
|
|
};
|
|
|
|
|
2024-04-07 00:54:41 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cargo
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkg-config
|
|
|
|
desktop-file-utils
|
|
|
|
rustPlatform.cargoSetupHook
|
|
|
|
rustc
|
|
|
|
wrapGAppsHook4
|
|
|
|
glib
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
glib
|
|
|
|
gtk4
|
|
|
|
libadwaita
|
2024-07-20 05:15:40 +02:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
darwin.apple_sdk.frameworks.Foundation
|
|
|
|
libiconv
|
2024-04-07 00:54:41 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Graphical D-Bus message analyser and profiler";
|
|
|
|
homepage = "https://gitlab.gnome.org/World/bustle";
|
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
maintainers = with maintainers; [ jtojnar ];
|
|
|
|
mainProgram = "bustle";
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
})
|