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: 0ecc8b9a56a6
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: 3c0e3697520c
Choose a head ref
  • 14 commits
  • 8 files changed
  • 9 contributors

Commits on Sep 7, 2020

  1. Verified

    This commit was signed with the committer’s verified signature.
    bagder Daniel Stenberg
    Copy the full SHA
    6ed06dc View commit details
  2. Copy the full SHA
    02e6ed4 View commit details
  3. vultr-cli: 0.3.2 -> 0.4.0

    r-ryantm committed Sep 7, 2020
    Copy the full SHA
    8532b0a View commit details
  4. proverif: 2.01 → 2.02pl1

    vbgl committed Sep 7, 2020
    Copy the full SHA
    2a82f71 View commit details
  5. nixos/prometheus-exporters: fix default firewall filter

    Instead of always using the default port of one exporter for its default
    firewall filter, the port from the current service configuration is used.
    WilliButz committed Sep 7, 2020
    Copy the full SHA
    5d51096 View commit details
  6. exa: remove maintainer

    zowoq committed Sep 7, 2020
    Copy the full SHA
    7b537f9 View commit details
  7. Merge pull request #97321 from vbgl/proverif-2.02pl1

    proverif: 2.01 → 2.02pl1
    gebner authored Sep 7, 2020
    Copy the full SHA
    5b0812f View commit details
  8. Merge pull request #97324 from zowoq/scc

    scc: 2.12.0 -> 2.13.0
    Br1ght0ne authored Sep 7, 2020
    Copy the full SHA
    2ff0bdf View commit details
  9. Merge pull request #97338 from WilliButz/exporters/fix-firewall-filter

    nixos/prometheus-exporters: fix default firewall filter
    elseym authored Sep 7, 2020
    Copy the full SHA
    b0a8a74 View commit details
  10. Merge pull request #97320 from r-ryantm/auto-update/terragrunt

    terragrunt: 0.23.33 -> 0.23.40
    marsam authored Sep 7, 2020
    Copy the full SHA
    d3b47f1 View commit details
  11. dune_2: fix hash

    marsam authored and vbgl committed Sep 7, 2020
    Copy the full SHA
    1d2c243 View commit details
  12. liferea: 1.12.6 → 1.12.9

    vbgl committed Sep 7, 2020
    Copy the full SHA
    d7fa5b6 View commit details
  13. Merge pull request #97328 from r-ryantm/auto-update/vultr-cli

    vultr-cli: 0.3.2 -> 0.4.0
    Br1ght0ne authored Sep 7, 2020
    Copy the full SHA
    243d860 View commit details
  14. liferea: remove myself from meta.maintainers

    I haven't been really using it anymore recently, and fortunately we have
    another active maintainer :-)
    vcunat committed Sep 7, 2020
    Copy the full SHA
    3c0e369 View commit details
3 changes: 2 additions & 1 deletion nixos/modules/services/monitoring/prometheus/exporters.nix
Original file line number Diff line number Diff line change
@@ -84,7 +84,8 @@ let
};
firewallFilter = mkOption {
type = types.str;
default = "-p tcp -m tcp --dport ${toString port}";
default = "-p tcp -m tcp --dport ${toString cfg.${name}.port}";
defaultText = "-p tcp -m tcp --dport ${toString port}";
example = literalExample ''
"-i eth0 -p tcp -m tcp --dport ${toString port}"
'';
6 changes: 3 additions & 3 deletions pkgs/applications/networking/cluster/terragrunt/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

buildGoModule rec {
pname = "terragrunt";
version = "0.23.33";
version = "0.23.40";

src = fetchFromGitHub {
owner = "gruntwork-io";
repo = pname;
rev = "v${version}";
sha256 = "0fsyvmdg2llnzy0yzmiihnb865ccq2sn6d3i935dflppnjyp01p4";
sha256 = "0gd2g1nl8dgj24mzk4qymcwnp6prbi3qxj863rkpi3k32zy2iw4k";
};

vendorSha256 = "05p72l724qqf61dn0frahf4awvkkcw8cpl6nhwlacd1jw8c14fjl";
vendorSha256 = "0f466qn5vp74mwx9s4rcbw1x793w8hr5dcf2c12sgshya1bxs4nl";

doCheck = false;

8 changes: 4 additions & 4 deletions pkgs/applications/networking/newsreaders/liferea/default.nix
Original file line number Diff line number Diff line change
@@ -23,11 +23,11 @@

stdenv.mkDerivation rec {
pname = "liferea";
version = "1.12.6";
version = "1.12.9";

src = fetchurl {
url = "https://github.com/lwindolf/${pname}/releases/download/v${version}/${pname}-${version}b.tar.bz2";
sha256 = "03pr1gmiv5y0i92bkhcxr8s311ll91chz19wb96jkixx32xav91d";
url = "https://github.com/lwindolf/${pname}/releases/download/v${version}/${pname}-${version}.tar.bz2";
sha256 = "06ybr1wjlfir8iqjx6x0v1knd4b2hsy30qmkk4kssy6ky2ahc66q";
};

nativeBuildInputs = [
@@ -73,7 +73,7 @@ stdenv.mkDerivation rec {
description = "A GTK-based news feed aggregator";
homepage = "http://lzone.de/liferea/";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ vcunat romildo ];
maintainers = with maintainers; [ romildo ];
platforms = platforms.linux;

longDescription = ''
4 changes: 2 additions & 2 deletions pkgs/applications/science/logic/proverif/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
pname = "proverif";
version = "2.01";
version = "2.02pl1";

src = fetchurl {
url = "http://prosecco.gforge.inria.fr/personal/bblanche/proverif/proverif${version}.tar.gz";
sha256 = "01wp5431c77z0aaa99h8bnm5yhr6jslpqc8iyg0a7gxfqnb19gxi";
sha256 = "1jmzfpx0hdgfmkq0jp6i3k5av9xxgndjaj743wfy37svn0ga4jjx";
};

buildInputs = with ocamlPackages; [ ocaml findlib lablgtk ];
12 changes: 6 additions & 6 deletions pkgs/development/tools/misc/scc/default.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
{ stdenv, buildGoModule, fetchFromGitHub }:

buildGoPackage rec {
buildGoModule rec {
pname = "scc";
version = "2.12.0";
version = "2.13.0";

src = fetchFromGitHub {
owner = "boyter";
repo = "scc";
rev = "v${version}";
sha256 = "0hbcq5qn97kr9d4q9m2p1mj3ijn8zmwycrs5bgf1kfiwr09wg2yh";
sha256 = "16p5g20n5jsbisbgikk9xny94xx6c0dxf19saa686ghh31jr2hh3";
};

goPackagePath = "github.com/boyter/scc";
vendorSha256 = null;

# scc has a scripts/ sub-package that's for testing.
subPackages = [ "./" ];
excludedPackages = [ "scripts" ];

meta = with stdenv.lib; {
homepage = "https://github.com/boyter/scc";
2 changes: 1 addition & 1 deletion pkgs/development/tools/ocaml/dune/2.nix
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {

src = fetchurl {
url = "https://github.com/ocaml/dune/releases/download/${version}/dune-${version}.tbz";
sha256 = "0lnfmc06yhbdiv6mmp0aksnnvzz4aw4zabrdg89p5msyzir3qrvn";
sha256 = "0pcjf209gynjwipnpplaqyvyivnawqiwhvqnivhkybisicpqyln3";
};

buildInputs = [ ocaml findlib ];
4 changes: 2 additions & 2 deletions pkgs/development/tools/vultr-cli/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

buildGoModule rec {
pname = "vultr-cli";
version = "0.3.2";
version = "0.4.0";

src = fetchFromGitHub {
owner = "vultr";
repo = pname;
rev = "v${version}";
sha256 = "1gqc4w5j9x7vxvxah6hmqd5i1lxyybpml7yfzzcbngwgwm3y5ym0";
sha256 = "0gp1v62iqh3hk46cc5sh8a1nw5nf98m969fdhgxdppwr5dhj9isp";
};

vendorSha256 = null;
2 changes: 1 addition & 1 deletion pkgs/tools/misc/exa/default.nix
Original file line number Diff line number Diff line change
@@ -57,6 +57,6 @@ buildRustPackage rec {
'';
homepage = "https://the.exa.website";
license = licenses.mit;
maintainers = with maintainers; [ ehegnes lilyball globin zowoq ];
maintainers = with maintainers; [ ehegnes lilyball globin ];
};
}