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: 753f58d9a42d
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: 235487585ede
Choose a head ref
  • 4 commits
  • 3 files changed
  • 4 contributors

Commits on Feb 23, 2019

  1. nextcloud: 15.0.2 -> 15.0.4

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/nextcloud/versions
    
    (cherry picked from commit a45b203)
    r-ryantm authored and Lassulus committed Feb 23, 2019
    Copy the full SHA
    af75060 View commit details
  2. Merge pull request #56242 from Lassulus/18.09-nextcloud

    [18.09] nextcloud: 15.0.2 -> 15.0.4
    flokli authored Feb 23, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    48b4e1c View commit details

Commits on Feb 24, 2019

  1. Merge #52833: netatalk: 3.1.11 -> 3.1.12 (security)

    (cherry picked from commit 0cf1580)
    vcunat committed Feb 24, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    Copy the full SHA
    76811bf View commit details
  2. luakit: add HTTPS support (#52865)

    Co-Authored-By: emmanuelrosa <emmanuelrosa@users.noreply.github.com>
    (cherry picked from commit 421dd51)
    Fixes #56266.  I briefly re-tested that on 18.09.
    emmanuelrosa authored and vcunat committed Feb 24, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    Copy the full SHA
    2354875 View commit details
Showing with 7 additions and 6 deletions.
  1. +3 −2 pkgs/applications/networking/browsers/luakit/default.nix
  2. +2 −2 pkgs/servers/nextcloud/default.nix
  3. +2 −2 pkgs/tools/filesystems/netatalk/default.nix
5 changes: 3 additions & 2 deletions pkgs/applications/networking/browsers/luakit/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{stdenv, fetchFromGitHub, pkgconfig, wrapGAppsHook, makeWrapper
,help2man, lua5, luafilesystem, luajit, sqlite
,webkitgtk, gtk3, gst_all_1}:
,webkitgtk, gtk3, gst_all_1, glib-networking}:

let
lualibs = [luafilesystem];
@@ -27,7 +27,8 @@ in stdenv.mkDerivation rec {
gst_all_1.gstreamer gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good gst_all_1.gst-plugins-bad gst_all_1.gst-plugins-ugly
gst_all_1.gst-libav
];
glib-networking # TLS support
];

postPatch =
#Kind of ugly seds here. There must be a better solution.
4 changes: 2 additions & 2 deletions pkgs/servers/nextcloud/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
name = "nextcloud-${version}";
version = "15.0.2";
version = "15.0.4";

src = fetchurl {
url = "https://download.nextcloud.com/server/releases/${name}.tar.bz2";
sha256 = "1shgr81hhxr2k45hqlx06qhyayhbqdi0ndvpcyzdv54rwcrwrx61";
sha256 = "0xwg7p31y1pkjk1pzygh9shpqxnfkafrab52j7in7xblq53v0zgq";
};

installPhase = ''
4 changes: 2 additions & 2 deletions pkgs/tools/filesystems/netatalk/default.nix
Original file line number Diff line number Diff line change
@@ -4,11 +4,11 @@
}:

stdenv.mkDerivation rec{
name = "netatalk-3.1.11";
name = "netatalk-3.1.12";

src = fetchurl {
url = "mirror://sourceforge/netatalk/netatalk/${name}.tar.bz2";
sha256 = "3434472ba96d3bbe3b024274438daad83b784ced720f7662a4c1d0a1078799a6";
sha256 = "1ld5mnz88ixic21m6f0xcgf8v6qm08j6xabh1dzfj6x47lxghq0m";
};

patches = [