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: 1c6abe023008
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9b605ca04118
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on May 29, 2017

  1. homebank: 5.1.4 -> 5.1.5

    pSub committed May 29, 2017
    Copy the full SHA
    05a82a9 View commit details
  2. fsql: 0.1.0 -> 0.1.1

    pSub committed May 29, 2017
    Copy the full SHA
    9b605ca View commit details
Showing with 5 additions and 5 deletions.
  1. +2 −2 pkgs/applications/office/homebank/default.nix
  2. +3 −3 pkgs/tools/misc/fsql/default.nix
4 changes: 2 additions & 2 deletions pkgs/applications/office/homebank/default.nix
Original file line number Diff line number Diff line change
@@ -2,10 +2,10 @@
, hicolor_icon_theme, libsoup, gnome3 }:

stdenv.mkDerivation rec {
name = "homebank-5.1.4";
name = "homebank-5.1.5";
src = fetchurl {
url = "http://homebank.free.fr/public/${name}.tar.gz";
sha256 = "07zxb9n7d281nfv29gi09fsp7y73fx4w2s48hgdn9s4vij25zwqa";
sha256 = "03rkl4bvi1cmb8rqyvmhxhg63bdmb3nzqa3firfimsbphm3x6gsw";
};

nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
6 changes: 3 additions & 3 deletions pkgs/tools/misc/fsql/default.nix
Original file line number Diff line number Diff line change
@@ -2,14 +2,14 @@

buildGoPackage rec {
name = "fsql-${version}";
version = "0.1.0";
version = "0.1.1";

goPackagePath = "github.com/kshvmdn/fsql";

src = fetchgit {
rev = "v${version}";
rev = "refs/tags/v${version}";
url = "https://github.com/kshvmdn/fsql";
sha256 = "1wkf9rr6x4b5bvxj9zwfw9hd870c831j7mc6fvd448id653wh122";
sha256 = "1zvblhfd15l86dcx0p12yrc2rrmfdpzyd107508pb72r2ar638vh";
};

meta = with stdenv.lib; {