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

Commits on Nov 17, 2018

  1. skrooge: 2.13.0 -> 2.16.2 (#50498)

    Update to new upstream version.
    Had to re-introduce QtWebkit dependency because it is used in *.ui
    files.
    alapshin authored and timokau committed Nov 17, 2018
    Copy the full SHA
    a1b8fe8 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/applications/office/skrooge/default.nix
8 changes: 4 additions & 4 deletions pkgs/applications/office/skrooge/default.nix
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{ mkDerivation, lib, fetchurl,
cmake, extra-cmake-modules, qtwebengine, qtscript, grantlee,
cmake, extra-cmake-modules, qtwebkit, qtwebengine, qtscript, grantlee,
kxmlgui, kwallet, kparts, kdoctools, kjobwidgets, kdesignerplugin,
kiconthemes, knewstuff, sqlcipher, qca-qt5, kactivities, karchive,
kguiaddons, knotifyconfig, krunner, kwindowsystem, libofx, shared-mime-info
}:

mkDerivation rec {
name = "skrooge-${version}";
version = "2.13.0";
version = "2.16.2";

src = fetchurl {
url = "http://download.kde.org/stable/skrooge/${name}.tar.xz";
sha256 = "1f1k0fkfhism1jyx3yxi8rdf1jrmp2vaphmz7fgh9hk18ndvss7d";
sha256 = "0idvqbra8a71jb5kq9y5v377l7k3shf4z7w71apc3rjvb4l0jkhj";
};

nativeBuildInputs = [
cmake extra-cmake-modules kdoctools shared-mime-info
];

buildInputs = [
qtwebengine qtscript grantlee kxmlgui kwallet kparts
qtwebkit qtwebengine qtscript grantlee kxmlgui kwallet kparts
kjobwidgets kdesignerplugin kiconthemes knewstuff sqlcipher qca-qt5
kactivities karchive kguiaddons knotifyconfig krunner kwindowsystem libofx
];