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: 0322870203cc
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: a7aa5dbb194e
Choose a head ref
  • 7 commits
  • 6 files changed
  • 4 contributors

Commits on Dec 5, 2019

  1. androidndkPkgs: fix typo in propagatedBuildInputs (#75045)

    (cherry picked from commit ec9fb62)
    Pedro Pombeiro authored and veprbl committed Dec 5, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    veprbl Dmitry Kalinkin
    Copy the full SHA
    a1faed7 View commit details
  2. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Ma27 Maximilian Bosch
    Copy the full SHA
    46c4afa View commit details
  3. vdirsyncer: apply patch to fix sync with google calendar

    See pimutils/vdirsyncer#765 for further
    reference.
    
    (cherry picked from commit 2fa839d)
    Ma27 committed Dec 5, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Ma27 Maximilian Bosch
    Copy the full SHA
    a9ef06b View commit details
  4. grafana-loki: 1.0.0 -> 1.1.0

    (cherry picked from commit f659187)
    WilliButz authored and Ma27 committed Dec 5, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Ma27 Maximilian Bosch
    Copy the full SHA
    c0298e3 View commit details
  5. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Ma27 Maximilian Bosch
    Copy the full SHA
    666a761 View commit details
  6. documize-community: 3.5.0 -> 3.5.1

    https://github.com/documize/community/releases/tag/v3.5.1
    
    This patch also switches to a `go.mod`-based build as upstream already
    switched to it a while ago[1].
    
    [1] documize/community@b826852
    
    (cherry picked from commit 8331ba3)
    Ma27 committed Dec 5, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Ma27 Maximilian Bosch
    Copy the full SHA
    51f55f3 View commit details
  7. rivet: fix bug in make-plots

    (cherry picked from commit 5af3071)
    veprbl committed Dec 5, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    veprbl Dmitry Kalinkin
    Copy the full SHA
    a7aa5db View commit details
2 changes: 1 addition & 1 deletion pkgs/development/androidndk-pkgs/androidndk-pkgs.nix
Original file line number Diff line number Diff line change
@@ -56,7 +56,7 @@ rec {
binaries = runCommand "ndk-gcc-binutils" {
isClang = true; # clang based cc, but bintools ld
nativeBuildInputs = [ makeWrapper ];
propgatedBuildInputs = [ androidndk ];
propagatedBuildInputs = [ androidndk ];
} ''
mkdir -p $out/bin
6 changes: 5 additions & 1 deletion pkgs/development/libraries/physics/rivet/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, fastjet, ghostscript, gsl, hepmc2, imagemagick, less, python2, texlive, yoda, which, makeWrapper }:
{ stdenv, fetchurl, fetchpatch, fastjet, ghostscript, gsl, hepmc2, imagemagick, less, python2, texlive, yoda, which, makeWrapper }:

stdenv.mkDerivation rec {
pname = "rivet";
@@ -11,6 +11,10 @@ stdenv.mkDerivation rec {

patches = [
./darwin.patch # configure relies on impure sw_vers to -Dunix
(fetchpatch {
url = "https://phab-files.hepforge.org/file/data/j3ja4jirrdyrovrmnbuh/PHID-FILE-6vnor4aoz3s2ejruisrg/file";
sha256 = "0flxv08wcd0m5di75s2zvm015k2k70nqgpcgcbq7m604z26pd6ab";
})
];

latex = texlive.combine { inherit (texlive)
31 changes: 10 additions & 21 deletions pkgs/servers/documize-community/default.nix
Original file line number Diff line number Diff line change
@@ -1,37 +1,26 @@
{ lib, buildGoPackage, fetchFromGitHub, go-bindata, go-bindata-assetfs }:
{ lib, buildGoModule, fetchFromGitHub, go-bindata, go-bindata-assetfs }:

buildGoPackage rec {
buildGoModule rec {
pname = "documize-community";
version = "3.4.2";
version = "3.5.1";

src = fetchFromGitHub {
owner = "documize";
repo = "community";
rev = "v${version}";
sha256 = "17dzj24dc3f6bw8v4fsj578gfz0fcvh42a2srci580s41mq2kjy4";
sha256 = "1dnb5b24x50c258fk47i7vngv28gai0mywns6nvgm3q59zyzphbj";
};

goPackagePath = "github.com/documize/community";
modSha256 = "08f1116a3w3j53z34l5xdg4hrfhqf6glz4mh0zgk70w5vdqzjr7r";

buildInputs = [ go-bindata-assetfs go-bindata ];

buildPhase = ''
runHook preBuild
subPackages = [ "edition/community.go" ];

pushd go/src/github.com/documize/community
go build -gcflags="all=-trimpath=$GOPATH" -o bin/documize ./edition/community.go
popd
runHook postBuild
'';

installPhase = ''
runHook preInstall
mkdir -p $bin/bin
cp go/src/github.com/documize/community/bin/documize $bin/bin
runHook postInstall
postInstall = ''
# `buildGoModule` calls `go install` (without `go build` first), so
# `-o bin/documize` doesn't work.
mv $out/bin/community $out/bin/documize
'';

meta = with lib; {
4 changes: 2 additions & 2 deletions pkgs/servers/matrix-synapse/default.nix
Original file line number Diff line number Diff line change
@@ -23,11 +23,11 @@ let

in buildPythonApplication rec {
pname = "matrix-synapse";
version = "1.5.0";
version = "1.6.1";

src = fetchPypi {
inherit pname version;
sha256 = "0skhzbwzq2985frnd86fn2hxhsmy0q1l5p9aich8l2gyg1dd3wb8";
sha256 = "184d7qd76bb2714pfkx9p4zzn4akb6xkx2iw86cpn7aqmccxysld";
};

patches = [
4 changes: 2 additions & 2 deletions pkgs/servers/monitoring/loki/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ stdenv, buildGoPackage, fetchFromGitHub, makeWrapper, systemd }:

buildGoPackage rec {
version = "0.4.0";
version = "1.1.0";
pname = "grafana-loki";
goPackagePath = "github.com/grafana/loki";

@@ -11,7 +11,7 @@ buildGoPackage rec {
rev = "v${version}";
owner = "grafana";
repo = "loki";
sha256 = "1anwq5dbh29dma18hnialbb253ciazzxmnqvympbh29ricldcf8p";
sha256 = "1c9bw5bib577pgjd71skncxf3cdcyj1ab36j6ag7szl2kym62j6x";
};

nativeBuildInputs = [ makeWrapper ];
7 changes: 7 additions & 0 deletions pkgs/tools/misc/vdirsyncer/default.nix
Original file line number Diff line number Diff line change
@@ -37,6 +37,13 @@ python3Packages.buildPythonApplication rec {

checkInputs = with python3Packages; [ hypothesis pytest pytest-localserver pytest-subtesthack ];

patches = [
(fetchpatch {
url = "https://github.com/pimutils/vdirsyncer/commit/7b636e8e40d69c495901f965b9c0686513659e44.patch";
sha256 = "0vl942ii5iad47y63v0ngmhfp37n30nxyk4j7h64b95fk38vfwx9";
})
];

postPatch = ''
# see https://github.com/pimutils/vdirsyncer/pull/805
substituteInPlace setup.cfg --replace --duration --durations