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: ef89f7180a19
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: ce961fad160d
Choose a head ref
  • 11 commits
  • 4 files changed
  • 7 contributors

Commits on Mar 5, 2020

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    dasJ Janne Heß
    Copy the full SHA
    2b8ccf0 View commit details

Commits on Mar 9, 2020

  1. next: 1.4.0 -> 1.5.0

    ysengrimm committed Mar 9, 2020
    Copy the full SHA
    ed8692b View commit details
  2. Copy the full SHA
    e95f1f3 View commit details
  3. Copy the full SHA
    a7c53f7 View commit details

Commits on Mar 10, 2020

  1. vttest: 20190710 -> 20200303

    r-ryantm committed Mar 10, 2020
    Copy the full SHA
    3193b63 View commit details
  2. Merge pull request #82216 from r-ryantm/auto-update/vttest

    vttest: 20190710 -> 20200303
    Mic92 authored Mar 10, 2020
    Copy the full SHA
    922fd55 View commit details
  3. Merge pull request #82168 from ysengrimm/update-next

    next: 1.4.0 -> 1.5.0
    nlewo authored Mar 10, 2020
    Copy the full SHA
    d426adf View commit details
  4. Copy the full SHA
    dcd33b7 View commit details
  5. Copy the full SHA
    5ea0258 View commit details
  6. Merge pull request #82179 from nyanloutre/jacket_disable_macos

    jackett: disable macos platform
    nlewo authored Mar 10, 2020
    Copy the full SHA
    6cf9509 View commit details
  7. Merge pull request #81841 from r-ryantm/auto-update/jackett

    jackett: 0.12.1301 -> 0.13.467
    nlewo authored Mar 10, 2020
    Copy the full SHA
    ce961fa View commit details
Showing with 10 additions and 10 deletions.
  1. +1 −1 doc/languages-frameworks/gnome.xml
  2. +2 −2 pkgs/applications/networking/browsers/next/default.nix
  3. +4 −4 pkgs/servers/jackett/default.nix
  4. +3 −3 pkgs/tools/misc/vttest/default.nix
2 changes: 1 addition & 1 deletion doc/languages-frameworks/gnome.xml
Original file line number Diff line number Diff line change
@@ -233,7 +233,7 @@ mkDerivation {
</term>
<listitem>
<para>
You can rely on applications depending on the library set the necessary environment variables but that it often easy to miss. Instead we recommend to patch the paths in the source code whenever possible. Here are some examples:
You can rely on applications depending on the library setting the necessary environment variables but that is often easy to miss. Instead we recommend to patch the paths in the source code whenever possible. Here are some examples:
<itemizedlist>
<listitem xml:id="ssec-gnome-common-issues-unwrappable-package-gnome-shell-ext">
<para>
4 changes: 2 additions & 2 deletions pkgs/applications/networking/browsers/next/default.nix
Original file line number Diff line number Diff line change
@@ -15,13 +15,13 @@ in

stdenv.mkDerivation rec {
pname = "next";
version = "1.4.0";
version = "1.5.0";

src = fetchFromGitHub {
owner = "atlas-engineer";
repo = "next";
rev = version;
sha256 = "1gkmr746rqqg94698a051gv79fblc8n9dq0zg04llba44adhpmjl";
sha256 = "1gqkp185wcwaxr8py90hqk44nqjblrrdwvig19gizrbzr2gx2zhy";
};

nativeBuildInputs = [
8 changes: 4 additions & 4 deletions pkgs/servers/jackett/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
pname = "jackett";
version = "0.12.1301";
version = "0.13.467";

src = fetchurl {
url = "https://github.com/Jackett/Jackett/releases/download/v${version}/Jackett.Binaries.LinuxAMDx64.tar.gz";
sha256 = "03glp5qhyb6bldslbhivywcfbxpv374q9aaybz5f2s0r9il5cb35";
sha256 = "1hjihafb8w9gcqdi2i8dmimbbg17c5hwwqhav3avfizq2drsrv5c";
};

buildInputs = [ makeWrapper ];
@@ -32,9 +32,9 @@ stdenv.mkDerivation rec {

meta = with stdenv.lib; {
description = "API Support for your favorite torrent trackers.";
homepage = https://github.com/Jackett/Jackett/;
homepage = "https://github.com/Jackett/Jackett/";
license = licenses.gpl2;
maintainers = with maintainers; [ edwtjo nyanloutre ];
platforms = platforms.all;
platforms = platforms.linux;
};
}
6 changes: 3 additions & 3 deletions pkgs/tools/misc/vttest/default.nix
Original file line number Diff line number Diff line change
@@ -2,19 +2,19 @@

stdenv.mkDerivation rec {
pname = "vttest";
version = "20190710";
version = "20200303";

src = fetchurl {
urls = [
"https://invisible-mirror.net/archives/${pname}/${pname}-${version}.tgz"
"ftp://ftp.invisible-island.net/${pname}/${pname}-${version}.tgz"
];
sha256 = "00v3a94vpmbdziizdw2dj4bfwzfzfs2lc0ijxv98ln1w01w412q4";
sha256 = "1g27yp37kh57hmwicw3ndnsapsbqzk2cnjccmvyj4zw2z0l5iaj9";
};

meta = with stdenv.lib; {
description = "Tests the compatibility so-called 'VT100-compatible' terminals";
homepage = https://invisible-island.net/vttest/;
homepage = "https://invisible-island.net/vttest/";
license = licenses.mit;
platforms = platforms.all;
};