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: 77cb7ad618a9
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: 9b20a24d4d59
Choose a head ref
  • 12 commits
  • 11 files changed
  • 8 contributors

Commits on Apr 16, 2020

  1. Copy the full SHA
    a6f776b View commit details

Commits on Apr 21, 2020

  1. nixos/tools: adapt for renamed console options

    Milan Pässler committed Apr 21, 2020
    Copy the full SHA
    d19089e View commit details
  2. git: Fix the update.sh script and use HTTPS

    The syntax is ${parameter:-word} (i.e. previously this used
    "latestTag" instead of the actual value).
    (Fixes a regression from #85278.)
    
    Also: Even though getting the latest tag isn't really security critical
    (as long as Git itself is secure against untrusted input), I'd prefer to
    switch from the Git to the HTTPS protocol (for authentication of the
    server and encryption + uses a standard port).
    primeos committed Apr 21, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    eadwu Edmund Wu
    Copy the full SHA
    6660421 View commit details
  3. Merge pull request #85411 from anmonteiro/anmonteiro/bs-platform-7.3.1

    bs-platform: 7.2.0 -> 7.3.1
    marsam authored Apr 21, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    eadwu Edmund Wu
    Copy the full SHA
    6a03fa9 View commit details
  4. opam: 2.0.6 -> 2.0.7

    marsam authored and vbgl committed Apr 21, 2020
    Copy the full SHA
    05cfa5f View commit details
  5. opam: add marsam to maintainers

    marsam authored and vbgl committed Apr 21, 2020
    Copy the full SHA
    9d81c54 View commit details
  6. release-combined: Remove unused value allSupportedNixpkgs.

    It was made obsolete by commit
    
        2de3caf -  nixos/release-combined.nix: List constituents of the 'tested' job by name
    
    see also NixOS/nixpkgs@f996744#r38642487.
    nh2 committed Apr 21, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    vbgl Vincent Laporte
    Copy the full SHA
    1da6613 View commit details
  7. Merge pull request #85685 from nh2/remove-unused-allSupportedNixpkgs

    release-combined: Remove unused value `allSupportedNixpkgs`
    domenkozar authored Apr 21, 2020
    Copy the full SHA
    a85868f View commit details
  8. Copy the full SHA
    c844633 View commit details
  9. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    68684b6 View commit details
  10. mongodb_3_4: fix license

    As noted in #83433, the 3.4 branch of `mongodb` is still licensed under
    AGPL[1].
    
    [1] https://github.com/mongodb/mongo/blob/r3.4.24/README
    Ma27 committed Apr 21, 2020
    Copy the full SHA
    25b9bca View commit details
  11. Merge pull request #85643 from petabyteboy/feature/generate-config

    nixos/tools: adapt for renamed console options
    worldofpeace authored Apr 21, 2020
    Copy the full SHA
    9b20a24 View commit details
8 changes: 4 additions & 4 deletions nixos/modules/installer/tools/tools.nix
Original file line number Diff line number Diff line change
@@ -111,10 +111,10 @@ in
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Select internationalisation properties.
# i18n = {
# consoleFont = "Lat2-Terminus16";
# consoleKeyMap = "us";
# defaultLocale = "en_US.UTF-8";
# i18n.defaultLocale = "en_US.UTF-8";
# console = {
# font = "Lat2-Terminus16";
# keyMap = "us";
# };
# Set your time zone.
5 changes: 0 additions & 5 deletions nixos/release-combined.nix
Original file line number Diff line number Diff line change
@@ -20,11 +20,6 @@ let
else pkgs.lib.mapAttrs (n: v: removeMaintainers v) set
else set;

allSupportedNixpkgs = builtins.removeAttrs (removeMaintainers (import ../pkgs/top-level/release.nix {
supportedSystems = supportedSystems ++ limitedSupportedSystems;
nixpkgs = nixpkgsSrc;
})) [ "unstable" ];

in rec {

nixos = removeMaintainers (import ./release.nix {
4 changes: 2 additions & 2 deletions pkgs/applications/science/astronomy/stellarium/default.nix
Original file line number Diff line number Diff line change
@@ -6,13 +6,13 @@

mkDerivation rec {
pname = "stellarium";
version = "0.20.0";
version = "0.20.1";

src = fetchFromGitHub {
owner = "Stellarium";
repo = "stellarium";
rev = "v${version}";
sha256 = "1732dxkgyqd4xf0ry7v930vcbv60l8iry596869z1d47j2piibs4";
sha256 = "1x8svan03k1x9jwqflimbpj7jpg6mjrbz26bg1sbhsqdlc8rbhky";
};

nativeBuildInputs = [ cmake perl wrapQtAppsHook ];
Original file line number Diff line number Diff line change
@@ -4,8 +4,8 @@
set -eu -o pipefail

oldVersion="$(nix-instantiate --eval -E "with import ./. {}; lib.getVersion git" | tr -d '"')"
latestTag="$(git ls-remote --tags --sort="v:refname" git://github.com/git/git.git | grep -v '\{\}' | grep -v '\-rc' | tail -1 | sed 's|^.*/v\(.*\)|\1|')"
targetVersion="${1:-latestTag}"
latestTag="$(git ls-remote --tags --sort="v:refname" https://github.com/git/git.git | grep -v '\{\}' | grep -v '\-rc' | tail -1 | sed 's|^.*/v\(.*\)|\1|')"
targetVersion="${1:-$latestTag}"

if [ ! "${oldVersion}" = "${targetVersion}" ]; then
update-source-version git "${targetVersion}"
Original file line number Diff line number Diff line change
@@ -52,7 +52,7 @@ stdenv.mkDerivation rec {
installPhase = ''
mkdir -p $out/bin
cp -rf jscomp lib ${bin_folder} vendor odoc_gen native bsb bsc bsrefmt $out
mkdir $out/lib/ocaml
mkdir -p $out/lib/ocaml
cp jscomp/runtime/js.* jscomp/runtime/*.cm* $out/lib/ocaml
cp jscomp/others/*.ml jscomp/others/*.mli jscomp/others/*.cm* $out/lib/ocaml
cp jscomp/stdlib-406/*.ml jscomp/stdlib-406/*.mli jscomp/stdlib-406/*.cm* $out/lib/ocaml
4 changes: 2 additions & 2 deletions pkgs/development/compilers/bs-platform/default.nix
Original file line number Diff line number Diff line change
@@ -4,14 +4,14 @@ let
in
(build-bs-platform rec {
inherit stdenv runCommand fetchFromGitHub ninja nodejs python3;
version = "7.2.0";
version = "7.3.1";
ocaml-version = "4.06.1";

src = fetchFromGitHub {
owner = "BuckleScript";
repo = "bucklescript";
rev = version;
sha256 = "1fsx7gvcp6rbqd0qf5fix02mbbmk9rgm09zbwjrx0lp5cjv3n2s4";
sha256 = "14vp6cl5ml7xb3pd0paqajb50qv62l8j5m8hi3b6fh0pm68j1yxd";
fetchSubmodules = true;
};
}).overrideAttrs (attrs: {
10 changes: 5 additions & 5 deletions pkgs/development/tools/ocaml/opam/default.nix
Original file line number Diff line number Diff line change
@@ -55,13 +55,13 @@ let
sha256 = "02lb2d9i12bxrz2ba5wygk2bycan316skqlyri0597q7j9210g8r";
};
opam = fetchurl {
url = "https://github.com/ocaml/opam/archive/2.0.6.zip";
sha256 = "076070qwf7rqp5bh0mmgc5b3vyihgp4qpkd6fscxzya4in66bzf8";
url = "https://github.com/ocaml/opam/archive/2.0.7.zip";
sha256 = "03yxj4hw9p5dh34b1yzl3xd0l1v2l2az0n7ix453yjrkn0wn0xic";
};
};
in stdenv.mkDerivation {
pname = "opam";
version = "2.0.6";
version = "2.0.7";

buildInputs = [ unzip curl ncurses ocaml makeWrapper getconf ] ++ lib.optional stdenv.isLinux bubblewrap;

@@ -113,8 +113,8 @@ in stdenv.mkDerivation {
meta = with stdenv.lib; {
description = "A package manager for OCaml";
homepage = "https://opam.ocaml.org/";
maintainers = [ maintainers.henrytill ];
maintainers = [ maintainers.henrytill maintainers.marsam ];
platforms = platforms.all;
};
}
# Generated by: ./opam.nix.pl -v 2.0.6 -p opam-shebangs.patch
# Generated by: ./opam.nix.pl -v 2.0.7 -p opam-shebangs.patch
2 changes: 1 addition & 1 deletion pkgs/development/tools/ocaml/opam/opam.nix.pl
Original file line number Diff line number Diff line change
@@ -123,7 +123,7 @@
meta = with stdenv.lib; {
description = "A package manager for OCaml";
homepage = "https://opam.ocaml.org/";
maintainers = [ maintainers.henrytill ];
maintainers = [ maintainers.henrytill maintainers.marsam ];
platforms = platforms.all;
};
}
8 changes: 4 additions & 4 deletions pkgs/servers/mautrix-whatsapp/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

buildGoModule {
pname = "mautrix-whatsapp-unstable";
version = "2020-04-12";
version = "2020-04-21";

src = fetchFromGitHub {
owner = "tulir";
repo = "mautrix-whatsapp";
rev = "44bb623e7a7486a0cdd13fd67b2aaca2ddba20ce";
sha256 = "1fwxn6511pq9fdc8d2jp4vgkm1zag55pig75qdxfn63hl3i2607k";
rev = "53fe1b18184fc0967658805abc8560641f8d2cb0";
sha256 = "0rahj9v7cgvk4w3m41jbs8vnya37dhq5wxyhyg74kwrv8a2nqxra";
};

modSha256 = "04pdap1q7zsa1wv2h0j9104fawn95g37yqslmp2mq7722hiqhp9x";
modSha256 = "0jn88a4hagwfkw9bv8cg12ywsg35znmfkmhi1v7k2qpj5qzi81w6";

meta = with stdenv.lib; {
homepage = "https://github.com/tulir/mautrix-whatsapp";
6 changes: 4 additions & 2 deletions pkgs/servers/nosql/mongodb/mongodb.nix
Original file line number Diff line number Diff line change
@@ -6,7 +6,9 @@

with stdenv.lib;

{ version, sha256, patches ? [] }@args:
{ version, sha256, patches ? []
, license ? stdenv.lib.licenses.sspl
}@args:

let
python = python27.withPackages (ps: with ps; [ pyyaml typing cheetah ]);
@@ -109,7 +111,7 @@ in stdenv.mkDerivation rec {
meta = {
description = "A scalable, high-performance, open source NoSQL database";
homepage = "http://www.mongodb.org";
license = licenses.sspl;
inherit license;

maintainers = with maintainers; [ bluescreen303 offline cstrahan ];
platforms = subtractLists systems.doubles.i686 systems.doubles.unix;
1 change: 1 addition & 0 deletions pkgs/servers/nosql/mongodb/v3_4.nix
Original file line number Diff line number Diff line change
@@ -12,4 +12,5 @@ in buildMongoDB {
version = "3.4.24";
sha256 = "0j6mvgv0jnsnvgkl8505bl88kbxkba66qijlpi1la0dd5pd1imfr";
patches = [ ./forget-build-dependencies-3-4.patch ];
license = stdenv.lib.licenses.agpl3;
}