Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8496f9556c37
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5e70be026ee4
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Nov 9, 2019

  1. fluxctl: 1.13.3 -> 1.15.0

    groodt authored and Jon committed Nov 9, 2019
    Copy the full SHA
    2991ba6 View commit details
  2. libco-canonical: v19.1 -> v20

    lodi authored and Jon committed Nov 9, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    5e70be0 View commit details
Showing with 6 additions and 6 deletions.
  1. +4 −4 pkgs/applications/networking/cluster/fluxctl/default.nix
  2. +2 −2 pkgs/development/libraries/libco-canonical/default.nix
8 changes: 4 additions & 4 deletions pkgs/applications/networking/cluster/fluxctl/default.nix
Original file line number Diff line number Diff line change
@@ -2,22 +2,22 @@

buildGoModule rec {
pname = "fluxctl";
version = "1.13.3";
version = "1.15.0";

src = fetchFromGitHub {
owner = "weaveworks";
repo = "flux";
rev = version;
sha256 = "0l2gc9p2jz1zyl527rr0r3qklm4j86d4biviq8a30jl9rsx6z4cy";
sha256 = "1aqcamhiivy733l2avc18b0k72sg0d8iqbsqvnj1344kqx6jgxf6";
};

modSha256 = "1q5g9hd0ansdc2acpysf6wi74q50w0psrpyhk4y6mm6kjvhlcn87";
modSha256 = "1dz1cb2513drb2lr5gbl7w05ksrq5rvkqdcjnlkdc00mypjb2ms5";

subPackages = [ "cmd/fluxctl" ];

meta = with stdenv.lib; {
description = "CLI client for Flux, the GitOps Kubernetes operator";
homepage = https://github.com/weaveworks/flux;
homepage = https://github.com/fluxcd/flux;
license = licenses.asl20;
maintainers = with maintainers; [ Gonzih ];
};
4 changes: 2 additions & 2 deletions pkgs/development/libraries/libco-canonical/default.nix
Original file line number Diff line number Diff line change
@@ -4,13 +4,13 @@ with stdenv.lib;

stdenv.mkDerivation rec {
pname = "libco-canonical";
version = "19.1";
version = "20";

src = fetchFromGitHub {
owner = "canonical";
repo = "libco";
rev = "v${version}";
sha256 = "03a0fq8f8gc4hjzcf0zsjib4mzag47rxrrg9b5r6bx53vj5rhj78";
sha256 = "0r5b1r0sxngx349s5a3zkkvfw5by9y492kr34b25gjspzvjchlxq";
};

nativeBuildInputs = [ pkgconfig ];