nixpkgs/pkgs/development/tools/misc/d-feet/default.nix

35 lines
1.1 KiB
Nix
Raw Normal View History

2014-01-05 03:55:34 -08:00
{ stdenv, pkgconfig, fetchurl, itstool, intltool, libxml2, glib, gtk3
2017-11-27 17:27:42 -08:00
, python3Packages, wrapGAppsHook, gnome3, libwnck3 }:
2014-01-05 03:55:34 -08:00
let
2017-11-06 06:40:12 -08:00
version = "${major}.12";
2014-01-05 03:55:34 -08:00
major = "0.3";
2017-11-27 17:27:42 -08:00
in python3Packages.buildPythonApplication rec {
2014-01-05 03:55:34 -08:00
name = "d-feet-${version}";
format = "other";
2014-01-05 03:55:34 -08:00
src = fetchurl {
url = "mirror://gnome/sources/d-feet/${major}/d-feet-${version}.tar.xz";
2017-11-06 06:40:12 -08:00
sha256 = "054hl56rii9ff7rzl42h7993ywjbxmhlcd7bk8fi1c2bx98c6s68";
2014-01-05 03:55:34 -08:00
};
2017-11-27 17:26:59 -08:00
nativeBuildInputs = [ pkgconfig itstool intltool wrapGAppsHook libxml2 ];
buildInputs = [ glib gtk3 gnome3.defaultIconTheme libwnck3 ];
2014-01-05 03:55:34 -08:00
2017-11-27 17:27:42 -08:00
propagatedBuildInputs = with python3Packages; [ pygobject3 pep8 ];
2014-01-05 03:55:34 -08:00
meta = {
description = "D-Feet is an easy to use D-Bus debugger";
longDescription = ''
D-Feet can be used to inspect D-Bus interfaces of running programs
and invoke methods on those interfaces.
'';
homepage = https://wiki.gnome.org/action/show/Apps/DFeet;
platforms = stdenv.lib.platforms.all;
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ ktosiek ];
2014-01-05 03:55:34 -08:00
};
}