Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c7a51a7499e7
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1a4f962c0d96
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 29, 2018

  1. dfeet: add updateScript

    jtojnar committed Mar 29, 2018
    Copy the full SHA
    1a4f962 View commit details
Showing with 13 additions and 5 deletions.
  1. +13 −5 pkgs/development/tools/misc/d-feet/default.nix
18 changes: 13 additions & 5 deletions pkgs/development/tools/misc/d-feet/default.nix
Original file line number Diff line number Diff line change
@@ -2,14 +2,14 @@
, python3Packages, wrapGAppsHook, gnome3, libwnck3, gobjectIntrospection }:

let
version = "${major}.13";
major = "0.3";
pname = "d-feet";
version = "0.3.13";
in python3Packages.buildPythonApplication rec {
name = "d-feet-${version}";
name = "${pname}-${version}";
format = "other";

src = fetchurl {
url = "mirror://gnome/sources/d-feet/${major}/d-feet-${version}.tar.xz";
url = "mirror://gnome/sources/d-feet/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
sha256 = "1md3lzs55sg04ds69dbginpxqvgg3qnf1lfx3vmsxph6bbd2y6ll";
};

@@ -18,6 +18,14 @@ in python3Packages.buildPythonApplication rec {

propagatedBuildInputs = with python3Packages; [ pygobject3 pep8 ];

passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
attrPath = "dfeet";
versionPolicy = "none";
};
};

meta = {
description = "D-Feet is an easy to use D-Bus debugger";

@@ -26,7 +34,7 @@ in python3Packages.buildPythonApplication rec {
and invoke methods on those interfaces.
'';

homepage = https://wiki.gnome.org/action/show/Apps/DFeet;
homepage = https://wiki.gnome.org/Apps/DFeet;
platforms = stdenv.lib.platforms.all;
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ ktosiek ];