mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
95d6191aee
https://gitlab.gnome.org/GNOME/d-spy/-/compare/1.6.0...1.8.0 Fixes in introspection path generation. This forgets to bump symbolic_version. Changelog-reviewed-by: Bobby Rong <rjl931189261@126.com> Changelog-reviewed-by: Jan Tojnar <jtojnar@gmail.com>
60 lines
998 B
Nix
60 lines
998 B
Nix
{ stdenv
|
|
, lib
|
|
, desktop-file-utils
|
|
, fetchurl
|
|
, glib
|
|
, gettext
|
|
, gtk4
|
|
, libadwaita
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, wrapGAppsHook4
|
|
, gnome
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "d-spy";
|
|
version = "1.8.0";
|
|
|
|
outputs = [ "out" "lib" "dev" ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/d-spy/${lib.versions.majorMinor version}/d-spy-${version}.tar.xz";
|
|
sha256 = "+J15XQaG2C2h3OsjYUj3zlTVynjwuY4PEzayY6WvzqE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
desktop-file-utils
|
|
wrapGAppsHook4
|
|
gettext
|
|
glib
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
gtk4
|
|
libadwaita
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = "d-spy";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "D-Bus exploration tool";
|
|
homepage = "https://gitlab.gnome.org/GNOME/d-spy";
|
|
license = with licenses; [
|
|
lgpl3Plus # library
|
|
gpl3Plus # app
|
|
];
|
|
maintainers = teams.gnome.members;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|