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: 46b63d7fbc48
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b6b0ccdaf560
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 30, 2019

  1. tilix: 1.8.9 -> 1.9.0

    Dropped removing "DBusActivatable" from the desktop file
    because we just needed to fix the executable path in
    the DBus Service.
    
    https://github.com/gnunn1/tilix/releases/tag/1.9.0
    worldofpeace committed Mar 30, 2019
    Copy the full SHA
    b6b0ccd View commit details
Showing with 7 additions and 3 deletions.
  1. +7 −3 pkgs/applications/misc/tilix/default.nix
10 changes: 7 additions & 3 deletions pkgs/applications/misc/tilix/default.nix
Original file line number Diff line number Diff line change
@@ -4,19 +4,20 @@

stdenv.mkDerivation rec {
pname = "tilix";
version = "1.8.9";
version = "1.9.0";

src = fetchFromGitHub {
owner = "gnunn1";
repo = "tilix";
rev = version;
sha256 = "1l1ib3g01mxiywbwjxc2522qgjy3ymjzy8bxl42k0hprpp95rw9d";
sha256 = "1k8hqpq6bzmn06b4s8c257n37ghgp3fl7l9g6fy0giwk1x0ix735";
};

nativeBuildInputs = [
autoreconfHook dmd desktop-file-utils perlPackages.Po4a pkgconfig xdg_utils
wrapGAppsHook
];

buildInputs = [ gnome3.dconf gettext gsettings-desktop-schemas gtkd dbus libsecret ];

preBuild = ''
@@ -34,7 +35,10 @@ stdenv.mkDerivation rec {
substituteInPlace $out/share/applications/com.gexperts.Tilix.desktop \
--replace "Exec=tilix" "Exec=$out/bin/tilix"
sed -i '/^DBusActivatable=/d' $out/share/applications/com.gexperts.Tilix.desktop
# TODO: Won't be needed after the switch to Meson
substituteInPlace $out/share/dbus-1/services/com.gexperts.Tilix.service \
--replace "/usr/bin/tilix" "$out/bin/tilix"
'';

meta = with stdenv.lib; {