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: 2c5b9702ef86
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: 946c5fb8f764
Choose a head ref
  • 16 commits
  • 15 files changed
  • 12 contributors

Commits on Dec 2, 2019

  1. nixos/version: PRETTY_NAME in /etc/os-release uses the release now in…

    …stead of full version
    
    to be more suitable for presentation to the user
    davidak committed Dec 2, 2019
    Copy the full SHA
    0ba3761 View commit details
  2. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    marsam Mario Rodas
    Copy the full SHA
    7116a3d View commit details

Commits on Dec 3, 2019

  1. python: spectral-cube: 0.4.4 -> 0.4.5

    Co-Authored-By: Mario Rodas <marsam@users.noreply.github.com>
    smaret and marsam committed Dec 3, 2019

    Unverified

    The key that signed this doesn't have usage flags that allow signing.
    Copy the full SHA
    efd657f View commit details
  2. Copy the full SHA
    d8ab6c9 View commit details
  3. Merge pull request #74826 from smaret/spectral-cube-0.4.5

    python: spectral-cube: 0.4.4 -> 0.4.5
    marsam authored Dec 3, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0e03637 View commit details
  4. Merge pull request #74872 from marsam/update-flow

    flow: 0.112.0 -> 0.113.0
    marsam authored Dec 3, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    93223f5 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
    7d8205b View commit details
  6. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Ma27 Maximilian Bosch
    Copy the full SHA
    f0c0be4 View commit details
  7. caddy2: init at 2.0.0-beta10 (#74843)

    Co-Authored-By: Konrad Borowski <konrad@borowski.pw>
    2 people authored and zimbatm committed Dec 3, 2019
    Copy the full SHA
    0ff3121 View commit details
  8. kops_1_15: init at 1.15.0 (#73809)

    kampka authored and zimbatm committed Dec 3, 2019
    Copy the full SHA
    a951af1 View commit details
  9. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Ma27 Maximilian Bosch
    Copy the full SHA
    09c7ecc View commit details
  10. coq_8_10: 8.10.1 → 8.10.2

    vbgl committed Dec 3, 2019
    Copy the full SHA
    3806eff View commit details
  11. lazygit 0.8 -> 0.11.3

    equirosa authored and Matthieu Coudron committed Dec 3, 2019
    Copy the full SHA
    8e72ad4 View commit details
  12. prusa-slicer: use wxGTK31 instead of wxGTK30

    With wxGTK31 3.1.0 there was a bug causing crashes. With the recently
    merged version 3.1.2 this bug has been fixed.
    
    See NixOS/nixpkgs#55475 for details.
    Moredread authored and Lassulus committed Dec 3, 2019
    Copy the full SHA
    ba917b2 View commit details
  13. Merge pull request #74850 from davidak/PRETTY_NAME

    nixos/version: PRETTY_NAME in /etc/os-release uses the release now
    edolstra authored Dec 3, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    56588e9 View commit details
  14. Tweag releaase notes

    edolstra committed Dec 3, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    edolstra Eelco Dolstra
    Copy the full SHA
    946c5fb View commit details
6 changes: 6 additions & 0 deletions nixos/doc/manual/release-notes/rl-2003.xml
Original file line number Diff line number Diff line change
@@ -236,6 +236,12 @@
release announcement</link> for more information.
</para>
</listitem>
<listitem>
<para>
<literal>PRETTY_NAME</literal> in <literal>/etc/os-release</literal>
now uses the short rather than full version string.
</para>
</listitem>
</itemizedlist>
</section>
</section>
2 changes: 1 addition & 1 deletion nixos/modules/misc/version.nix
Original file line number Diff line number Diff line change
@@ -92,7 +92,7 @@ in
VERSION="${cfg.version} (${cfg.codeName})"
VERSION_CODENAME=${toLower cfg.codeName}
VERSION_ID="${cfg.version}"
PRETTY_NAME="NixOS ${cfg.version} (${cfg.codeName})"
PRETTY_NAME="NixOS ${cfg.release} (${cfg.codeName})"
LOGO="nix-snowflake"
HOME_URL="https://nixos.org/"
DOCUMENTATION_URL="https://nixos.org/nixos/manual/index.html"
5 changes: 2 additions & 3 deletions pkgs/applications/misc/prusa-slicer/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ stdenv, lib, fetchFromGitHub, makeWrapper, cmake, pkgconfig
, boost, cereal, curl, eigen, expat, glew, libpng, tbb, wxGTK30
, boost, cereal, curl, eigen, expat, glew, libpng, tbb, wxGTK31
, gtest, nlopt, xorg, makeDesktopItem
}:
let
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
glew
libpng
tbb
wxGTK30
wxGTK31
xorg.libX11
] ++ checkInputs;

@@ -65,7 +65,6 @@ stdenv.mkDerivation rec {

cmakeFlags = [
"-DSLIC3R_FHS=1"
"-DSLIC3R_WX_STABLE=1" # necessary when compiling against wxGTK 3.0
];

postInstall = ''
5 changes: 5 additions & 0 deletions pkgs/applications/networking/cluster/kops/default.nix
Original file line number Diff line number Diff line change
@@ -65,4 +65,9 @@ in rec {
version = "1.14.1";
sha256 = "0ikd8qwrjh8s1sc95g18sm0q6p33swz2m1rjd8zw34mb2w9jv76n";
};

kops_1_15 = mkKops {
version = "1.15.0";
sha256 = "0sjas8pn0njl767b1y15g7cci2q3kxkxwmgr0wvs7vi3n1s1sf9d";
};
}
1 change: 1 addition & 0 deletions pkgs/applications/science/logic/coq/default.nix
Original file line number Diff line number Diff line change
@@ -31,6 +31,7 @@ let
"8.9.1" = "1xrq6mkhpq994bncmnijf8jwmwn961kkpl4mwwlv7j3dgnysrcv2";
"8.10.0" = "138jw94wp4mg5dgjc2asn8ng09ayz1mxdznq342n0m469j803gzg";
"8.10.1" = "072v2zkjzf7gj48137wpr3c9j0hg9pdhlr5l8jrgrwynld8fp7i4";
"8.10.2" = "0znxmpy71bfw0p6x47i82jf5k7v41zbz9bdpn901ysn3ir8l3wrz";
}.${version};
coq-version = stdenv.lib.versions.majorMinor version;
versionAtLeast = stdenv.lib.versionAtLeast coq-version;
4 changes: 2 additions & 2 deletions pkgs/applications/virtualization/docker/distribution.nix
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

buildGoPackage rec {
pname = "distribution";
version = "2.6.2";
version = "2.7.1";
rev = "v${version}";

goPackagePath = "github.com/docker/distribution";
@@ -11,7 +11,7 @@ buildGoPackage rec {
owner = "docker";
repo = "distribution";
inherit rev;
sha256 = "0nj4xd72mik4pj8g065cqb0yjmgpj5ppsqf2k5ibz9f68c39c00b";
sha256 = "1nx8b5a68rn81alp8wkkw6qd5v32mgf0fk23mxm60zdf63qk1nzw";
};

meta = with stdenv.lib; {
1 change: 1 addition & 0 deletions pkgs/development/haskell-modules/configuration-common.nix
Original file line number Diff line number Diff line change
@@ -1080,6 +1080,7 @@ self: super: {

# The test suite is broken. Break out of "base-compat >=0.9.3 && <0.10, hspec >=2.4.4 && <2.5".
haddock-library = doJailbreak (dontCheck super.haddock-library);
haddock-library_1_8_0 = doJailbreak super.haddock-library_1_8_0;

# Generate shell completion.
cabal2nix = generateOptparseApplicativeCompletion "cabal2nix" super.cabal2nix;
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/gpapi/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{ stdenv, buildPythonPackage, fetchPypi, requests, protobuf, pycryptodome }:

buildPythonPackage rec {
version = "0.4.3";
version = "0.4.4";
pname = "gpapi";

src = fetchPypi {
inherit version pname;
sha256 = "9fd1351eb29c4da92d3a0ed2cd4e3c1634ea16afddbca133f6acc54766d61b02";
sha256 = "0ampvsv97r3hy1cakif4kmyk1ynf3scbvh4fbk02x7xrxn4kl38w";
};

propagatedBuildInputs = [ requests protobuf pycryptodome ];
17 changes: 9 additions & 8 deletions pkgs/development/python-modules/spectral-cube/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ lib
, fetchPypi
, fetchFromGitHub
, buildPythonPackage
, astropy
, radio_beam
@@ -10,11 +10,14 @@

buildPythonPackage rec {
pname = "spectral-cube";
version = "0.4.4";

src = fetchPypi {
inherit pname version;
sha256 = "9051ede204b1e25b6358b5e0e573b624ec0e208c24eb03a7ed4925b745c93b5e";
version = "0.4.5";

# Fetch from GitHub instead of PyPi, as 0.4.5 isn't available in PyPi
src = fetchFromGitHub {
owner = "radio-astro-tools";
repo = pname;
rev = "v${version}";
sha256 = "1xc1m6vpl0bm600fx9vypa7zcvwg7yvhgn0w89y6v9d1vl0qcs7z";
};

propagatedBuildInputs = [ astropy radio_beam ];
@@ -40,8 +43,6 @@ buildPythonPackage rec {
license = lib.licenses.bsd3;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ smaret ];
broken = true;
};
}


4 changes: 2 additions & 2 deletions pkgs/development/tools/analysis/flow/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
pname = "flow";
version = "0.112.0";
version = "0.113.0";

src = fetchFromGitHub {
owner = "facebook";
repo = "flow";
rev = "refs/tags/v${version}";
sha256 = "1l8aahvlj9hk93snvrqm7r0mxj5iw244q72s6wallsqm7j4g967h";
sha256 = "1z7zy2ma1rmx2jjrsrnlrv2j5ff4zlzzlqvlmv7fc7dds3wlz6ia";
};

installPhase = ''
6 changes: 3 additions & 3 deletions pkgs/development/tools/lazygit/default.nix
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

buildGoPackage rec {
pname = "lazygit";
version = "0.8";
version = "0.11.3";

goPackagePath = "github.com/jesseduffield/lazygit";

@@ -12,13 +12,13 @@ buildGoPackage rec {
owner = "jesseduffield";
repo = pname;
rev = "v${version}";
sha256 = "0zynw5gr96a59x1qshzhhvld883ndf1plnw6l9dbhmff0wcfv6l1";
sha256 = "0v765f93hkq94bmzfwkkb9ndbfka415sxyi01679fg860746rl6l";
};

meta = with stdenv.lib; {
description = "Simple terminal UI for git commands";
homepage = "https://github.com/jesseduffield/lazygit";
license = licenses.mit;
maintainers = with maintainers; [ fpletz ];
maintainers = with maintainers; [ fpletz equirosa ];
};
}
4 changes: 2 additions & 2 deletions pkgs/servers/amqp/qpid-cpp/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

let
name = "qpid-cpp-${version}";
version = "1.37.0";
version = "1.38.0";

src = fetchurl {
url = "mirror://apache/qpid/cpp/${version}/${name}.tar.gz";
sha256 = "1s4hyi867i0lqn81c1crrk6fga1gmsv61675vjv5v41skz56lrsb";
sha256 = "1q7nsl9g8xv81ymhpkdp9mlw3gkzba62gggp3b72f0ywpc3kc3cz";
};

meta = with stdenv.lib; {
25 changes: 25 additions & 0 deletions pkgs/servers/caddy/v2.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ stdenv, callPackage, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
pname = "caddy";
version = "2.0.0-beta10";

goPackagePath = "github.com/caddyserver/caddy";

subPackages = [ "cmd/caddy" ];

src = fetchFromGitHub {
owner = "caddyserver";
repo = pname;
rev = "v${version}";
sha256 = "1vagcw6ibri4nbx1n60xp7rffcfr64a2202hjaijyjzc8wcl80na";
};
modSha256 = "1sb8w6n84cpya2rjm0zm798kzf5vjpkr5440j1gfnnnr07jl2aqn";

meta = with stdenv.lib; {
homepage = "https://caddyserver.com";
description = "Fast, cross-platform HTTP/2 web server with automatic HTTPS";
license = licenses.asl20;
maintainers = with maintainers; [ filalex77 ];
};
}
4 changes: 3 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -1312,6 +1312,7 @@ in
});

caddy = callPackage ../servers/caddy { };
caddy2 = callPackage ../servers/caddy/v2.nix { };
traefik = callPackage ../servers/traefik { };

calamares = libsForQt5.callPackage ../tools/misc/calamares {
@@ -24543,8 +24544,9 @@ in
kops_1_12
kops_1_13
kops_1_14
kops_1_15
;
kops = kops_1_14;
kops = kops_1_15;

lguf-brightness = callPackage ../misc/lguf-brightness { };

2 changes: 1 addition & 1 deletion pkgs/top-level/coq-packages.nix
Original file line number Diff line number Diff line change
@@ -128,7 +128,7 @@ in rec {
version = "8.9.1";
};
coq_8_10 = callPackage ../applications/science/logic/coq {
version = "8.10.1";
version = "8.10.2";
};

coqPackages_8_5 = mkCoqPackages coq_8_5;