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: 342eaba9ebbc
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: 16477d764f37
Choose a head ref
  • 8 commits
  • 7 files changed
  • 5 contributors

Commits on Apr 16, 2020

  1. Copy the full SHA
    5aad6a3 View commit details
  2. Copy the full SHA
    2b98505 View commit details
  3. Verified

    This commit was signed with the committer’s verified signature.
    etu Elis Hirwing
    Copy the full SHA
    785eba0 View commit details
  4. nixos/doc: fix database-setup example for matrix-synapse

    Closes #85327
    Ma27 committed Apr 16, 2020
    Copy the full SHA
    74d6e86 View commit details
  5. Copy the full SHA
    bcfca55 View commit details
  6. Merge pull request #85361 from zowoq/fd

    fd: 7.5.0 -> 8.0.0
    Ma27 authored Apr 16, 2020
    Copy the full SHA
    7913b6c View commit details
  7. Merge pull request #85304 from romildo/common-updater

    common-updater: add update script to all-packages
    romildo authored Apr 16, 2020
    Copy the full SHA
    4b596ca View commit details
  8. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    16477d7 View commit details
3 changes: 2 additions & 1 deletion nixos/modules/services/misc/matrix-synapse.xml
Original file line number Diff line number Diff line change
@@ -33,6 +33,7 @@
<link xlink:href="https://github.com/matrix-org/synapse#synapse-installation">
installation instructions of Synapse </link>.
<programlisting>
{ pkgs, ... }:
let
fqdn =
let
@@ -46,7 +47,7 @@ in {
<link linkend="opt-networking.firewall.allowedTCPPorts">networking.firewall.allowedTCPPorts</link> = [ 80 443 ];

<link linkend="opt-services.postgresql.enable">services.postgresql.enable</link> = true;
<link linkend="opt-services.postgresql.initialScript">services.postgresql.initialScript</link> = ''
<link linkend="opt-services.postgresql.initialScript">services.postgresql.initialScript</link> = pkgs.writeText "synapse-init.sql" ''
CREATE ROLE "matrix-synapse" WITH LOGIN PASSWORD 'synapse';
CREATE DATABASE "matrix-synapse" WITH OWNER "matrix-synapse"
TEMPLATE template0
Original file line number Diff line number Diff line change
@@ -108,7 +108,7 @@ in stdenv.mkDerivation {
--replace /opt/google/$appname/google-$appname $exe
substituteInPlace $out/share/menu/google-$appname.menu \
--replace /opt $out/share \
--replace $out/share/google/chrome/google-$appname $exe
--replace $out/share/google/$appname/google-$appname $exe
for icon_file in $out/share/google/chrome*/product_logo_*[0-9].png; do
num_and_suffix="''${icon_file##*logo_}"
2 changes: 1 addition & 1 deletion pkgs/desktops/xfce/default.nix
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
lib.makeScope pkgs.newScope (self: with self; {
#### NixOS support

updateScript = callPackage ../../common-updater/update-script.nix { };
updateScript = pkgs.genericUpdater;

gitLister = url:
"${pkgs.common-updater-scripts}/bin/list-git-tags ${url}";
4 changes: 2 additions & 2 deletions pkgs/development/libraries/skalibs/default.nix
Original file line number Diff line number Diff line change
@@ -4,8 +4,8 @@ with skawarePackages;

buildPackage {
pname = "skalibs";
version = "2.9.2.0";
sha256 = "1i9d7w031kh338aq6xdsf8vl5amxbwxbny8lnrxlzydqvn8nxhz4";
version = "2.9.2.1";
sha256 = "0ff551181vv9d1z5sv7yg6n4b88ajcdircs4p4nif4yl7nsrj2r5";

description = "A set of general-purpose C programming libraries";

6 changes: 3 additions & 3 deletions pkgs/tools/misc/fd/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

rustPlatform.buildRustPackage rec {
pname = "fd";
version = "7.5.0";
version = "8.0.0";

src = fetchFromGitHub {
owner = "sharkdp";
repo = "fd";
rev = "v${version}";
sha256 = "029xr7l751dy167hfzrd030llkaiy8j585h1d4l6391fgrsvnav7";
sha256 = "0l18xavkj99cydp1dqrph00yq2px339zs6jcim59iq3zln1yn0n7";
};

cargoSha256 = "0lq6da2f6xywyhzyyrpph96d8b9vpdzakzipci167g6hhh232b5b";
cargoSha256 = "1sdwbnncs1d45x1iqk3jv3r69fpkzrsxm4kjn89jmvd5nk8blvs2";

nativeBuildInputs = [ installShellFiles ];

2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -92,6 +92,8 @@ in

common-updater-scripts = callPackage ../common-updater/scripts.nix { };

genericUpdater = callPackage ../common-updater/generic-updater.nix { };

### Push NixOS tests inside the fixed point

nixosTests = import ../../nixos/tests/all-tests.nix {