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

Commits on Jan 2, 2020

  1. Copy the full SHA
    0e31950 View commit details
Showing with 4 additions and 4 deletions.
  1. +2 −2 pkgs/servers/gotify/default.nix
  2. +2 −2 pkgs/servers/gotify/ui.nix
4 changes: 2 additions & 2 deletions pkgs/servers/gotify/default.nix
Original file line number Diff line number Diff line change
@@ -12,13 +12,13 @@ buildGoModule rec {
pname = "gotify-server";
# Note that when this is updated, along with the hash, the `ui.nix` file
# should include the same changes to the version and the sha256.
version = "2.0.12";
version = "2.0.13";

src = fetchFromGitHub {
owner = "gotify";
repo = "server";
rev = "v${version}";
sha256 = "0pkws83ymmlxcdxadb1w6rmibw84vzhx9xrhxc6b1rjncb80l0kk";
sha256 = "11ycs1ci1z8wm4fjgk4454kgszr4s8q9dc96pl77yvlngi4dk46d";
};

modSha256 = "1awhbc8qs2bwv6y2vwd92r4ys0l1bzymrb36iamr040x961682wv";
4 changes: 2 additions & 2 deletions pkgs/servers/gotify/ui.nix
Original file line number Diff line number Diff line change
@@ -8,13 +8,13 @@ yarn2nix-moretea.mkYarnPackage rec {
packageJSON = ./package.json;
yarnNix = ./yarndeps.nix;

version = "2.0.12";
version = "2.0.13";

src_all = fetchFromGitHub {
owner = "gotify";
repo = "server";
rev = "v${version}";
sha256 = "0pkws83ymmlxcdxadb1w6rmibw84vzhx9xrhxc6b1rjncb80l0kk";
sha256 = "11ycs1ci1z8wm4fjgk4454kgszr4s8q9dc96pl77yvlngi4dk46d";
};
src = "${src_all}/ui";