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: e912fb83d215
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: 7db146538e49
Choose a head ref
  • 15 commits
  • 12 files changed
  • 10 contributors

Commits on Jun 28, 2020

  1. Copy the full SHA
    2633167 View commit details
  2. Copy the full SHA
    9c86c74 View commit details

Commits on Jun 29, 2020

  1. Copy the full SHA
    2f52551 View commit details
  2. Copy the full SHA
    3c8762d View commit details
  3. nixos/graphite: ensure graphite-api is properly tested

    Until now, it was failing to start in the test, as it was searching for an
    influxdb database
    JJJollyjim committed Jun 29, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    chris-huxtable Chris Huxtable
    Copy the full SHA
    3f31678 View commit details

Commits on Jun 30, 2020

  1. openafs_1_8: 1.8.5 -> 1.8.6

    Signed-off-by: Anders Kaseorg <andersk@mit.edu>
    andersk committed Jun 30, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    chris-huxtable Chris Huxtable
    Copy the full SHA
    e38494a View commit details
  2. fuse-overlayfs: 1.1.1 -> 1.1.2

    r-ryantm authored and zowoq committed Jun 30, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    chris-huxtable Chris Huxtable
    Copy the full SHA
    9287f06 View commit details
  3. umoci: 0.4.5 -> 0.4.6

    https://github.com/opencontainers/umoci/releases/tag/v0.4.6
    
    umoci has been adopted by the Open Container Initative as a reference
    implementation of the OCI Image Specification.
    zowoq committed Jun 30, 2020
    Copy the full SHA
    3f3f809 View commit details
  4. Copy the full SHA
    4e0164c View commit details
  5. Merge pull request #91756 from JJJollyjim/fix-graphite-web-patch

    graphite-web: fix patch
    lsix authored Jun 30, 2020
    Copy the full SHA
    a3db82f View commit details
  6. framac: 20.0 -> 21.0

    yrashk authored and vbgl committed Jun 30, 2020
    Copy the full SHA
    3774105 View commit details
  7. Copy the full SHA
    0c5e602 View commit details
  8. Copy the full SHA
    74cb17f View commit details
  9. Copy the full SHA
    3e75e51 View commit details
  10. Copy the full SHA
    7db1465 View commit details
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
@@ -283,6 +283,12 @@
githubId = 273837;
name = "Mateusz Czapliński";
};
akamaus = {
email = "dmitryvyal@gmail.com";
github = "akamaus";
githubId = 58955;
name = "Dmitry Vyal";
};
akaWolf = {
email = "akawolf0@gmail.com";
github = "akaWolf";
11 changes: 5 additions & 6 deletions nixos/tests/graphite.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
import ./make-test-python.nix ({ pkgs, ... } :
{
name = "graphite";
meta = {
# Fails on dependency `python-2.7-Twisted`'s test suite
# complaining `ImportError: No module named zope.interface`.
broken = true;
};
nodes = {
one =
{ ... }: {
@@ -21,7 +16,7 @@ import ./make-test-python.nix ({ pkgs, ... } :
api = {
enable = true;
port = 8082;
finders = [ pkgs.python3Packages.influxgraph ];
finders = [ ];
};
carbon.enableCache = true;
seyren.enable = false; # Implicitely requires openssl-1.0.2u which is marked insecure
@@ -41,10 +36,14 @@ import ./make-test-python.nix ({ pkgs, ... } :
# even if they're still in preStart (which takes quite long for graphiteWeb).
# Wait for ports to open so we're sure the services are up and listening.
one.wait_for_open_port(8080)
one.wait_for_open_port(8082)
one.wait_for_open_port(2003)
one.succeed('echo "foo 1 `date +%s`" | nc -N localhost 2003')
one.wait_until_succeeds(
"curl 'http://localhost:8080/metrics/find/?query=foo&format=treejson' --silent | grep foo >&2"
)
one.wait_until_succeeds(
"curl 'http://localhost:8082/metrics/find/?query=foo&format=treejson' --silent | grep foo >&2"
)
'';
})
10 changes: 5 additions & 5 deletions pkgs/applications/virtualization/umoci/default.nix
Original file line number Diff line number Diff line change
@@ -7,13 +7,13 @@

buildGoModule rec {
pname = "umoci";
version = "0.4.5";
version = "0.4.6";

src = fetchFromGitHub {
owner = "openSUSE";
owner = "opencontainers";
repo = "umoci";
rev = "v${version}";
sha256 = "1gzj4nnys73wajdwjn5jsskvnhzh8s2vmyl76ax8drpvw19bd5g3";
sha256 = "0jaar26l940yh77cs31c3zndiycp85m3fz4zivcibzi68g6n6yzg";
};

vendorSha256 = null;
@@ -24,7 +24,7 @@ buildGoModule rec {

postInstall = ''
sed -i '/SHELL =/d' Makefile
make local-doc
make docs
installManPage doc/man/*.[1-9]
'';

@@ -33,6 +33,6 @@ buildGoModule rec {
homepage = "https://umo.ci";
license = licenses.asl20;
maintainers = with maintainers; [ zokrezyl ];
platforms = platforms.linux;
platforms = platforms.unix;
};
}
12 changes: 9 additions & 3 deletions pkgs/development/coq-modules/equations/default.nix
Original file line number Diff line number Diff line change
@@ -33,9 +33,15 @@ let
};

"8.11" = {
version = "1.2.1";
rev = "v1.2.1-8.11";
sha256 = "06k0h7lansxs479is3vj5ikg8s5k4c6svnqcwmxbni4wx8bhmg17";
version = "1.2.2";
rev = "v1.2.2-8.11";
sha256 = "0g2y0s8kb2imbqyrx9hmvjzpwmicid7shv7ma10fnb8dgk2dqkf9";
};

"8.12" = {
version = "1.2.2";
rev = "v1.2.2-8.12";
sha256 = "0fkz78i2gn9x9scfa7n8fl2sq7czppsicy7w5mq919qqfp0w1aj0";
};
};
param = params.${coq.coq-version};
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
diff -Nur a/setup.py b/setup.py
--- a/setup.py 2020-03-12 18:45:34.654296302 +0100
+++ b/setup.py 2020-03-12 18:46:17.476893828 +0100
@@ -115,7 +115,7 @@
diff --git a/setup.py b/setup.py
index a1a21f1..f0d1051 100644
--- a/setup.py
+++ b/setup.py
@@ -117,7 +117,7 @@ try:
['templates/*', 'local_settings.py.example']},
scripts=glob('bin/*'),
data_files=list(webapp_content.items()) + storage_dirs + conf_files + examples,
- install_requires=['Django>=1.8,<2.3', 'django-tagging==0.4.3', 'pytz', 'pyparsing', 'cairocffi', 'urllib3', 'scandir', 'six'],
+ install_requires=['Django>=1.8,<2.3', 'django-tagging==0.4.6', 'pytz', 'pyparsing', 'cairocffi', 'urllib3', 'scandir', 'six'],
- install_requires=['Django>=1.8,<3.1', 'django-tagging==0.4.3', 'pytz',
+ install_requires=['Django>=1.8,<3.1', 'django-tagging==0.5.0', 'pytz',
'pyparsing', 'cairocffi', 'urllib3', 'scandir', 'six'],
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
31 changes: 31 additions & 0 deletions pkgs/development/python-modules/tensorboardx/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{ boto3, buildPythonPackage, crc32c, fetchFromGitHub, lib, matplotlib, moto
, numpy, pillow, pytorch, protobuf, six, pytestCheckHook
, tensorflow-tensorboard, torchvision }:

buildPythonPackage rec {
pname = "tensorboardx";
version = "2.0";

src = fetchFromGitHub {
owner = "lanpa";
repo = "tensorboardX";
rev = "v${version}";
sha256 = "0qqalq0fhbx0wnd8wdwhyhkkv2brvj9qbk3373vk3wjxbribf5c7";
};

checkInputs = [
pytestCheckHook boto3 crc32c matplotlib moto pillow pytorch tensorflow-tensorboard torchvision
];

propagatedBuildInputs = [ numpy protobuf six ];

disabledTests = [ "test_TorchVis" "test_onnx_graph" ];

meta = with lib; {
description = "Library for writing tensorboard-compatible logs";
homepage = "https://github.com/lanpa/tensorboardX";
license = licenses.mit;
maintainers = with maintainers; [ lebastr akamaus ];
platforms = platforms.all;
};
}
6 changes: 3 additions & 3 deletions pkgs/development/tools/analysis/frama-c/default.nix
Original file line number Diff line number Diff line change
@@ -23,12 +23,12 @@ in

stdenv.mkDerivation rec {
pname = "frama-c";
version = "20.0";
slang = "Calcium";
version = "21.0";
slang = "Scandium";

src = fetchurl {
url = "http://frama-c.com/download/frama-c-${version}-${slang}.tar.gz";
sha256 = "03dvn162djylj2skmk6vv75gh87mm4s5cspkzcrlm5x0rlla2yqn";
sha256 = "0xqkyrvkr31r6443zgf4f749a1mf2360v8f0km071a1za767yvf5";
};

preConfigure = lib.optionalString stdenv.cc.isClang "configureFlagsArray=(\"--with-cpp=clang -E -C\")";
4 changes: 2 additions & 2 deletions pkgs/development/tools/git-quick-stats/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "git-quick-stats";
version = "2.1.1";
version = "2.1.2";
src = fetchFromGitHub {
repo = "git-quick-stats";
owner = "arzzen";
rev = version;
sha256 = "1mdja838jxhcasi251fsc3yig3s5vmfqab1wpm34xinr8blii90f";
sha256 = "1q0iy732smad1v25da9vmlk8r5iscjrk678pq6mda9sbmiq693r3";
};
PREFIX = builtins.placeholder "out";
meta = with stdenv.lib; {
16 changes: 0 additions & 16 deletions pkgs/servers/openafs/1.8/module.nix
Original file line number Diff line number Diff line change
@@ -18,22 +18,6 @@ in stdenv.mkDerivation {

buildInputs = [ kerberos ];

patches = [
# openafs 5.6 patches, included in the next release
(fetchpatch {
url = "https://github.com/openafs/openafs/commit/34f1689b7288688550119638ee9959e453fde414.patch";
sha256 = "0rxjqzr8c5ajlk8wrhgjc1qp1934qiriqdi0qxsnk4gj5ibbk4d5";
})
(fetchpatch {
url = "https://github.com/openafs/openafs/commit/355ea43f0d1b7feae1b3af58bc33af12838db7c3.patch";
sha256 = "1f9xn8ql6vnxglpj3dvi30sj8vkncazjab2rc13hbw48nvsvcnhm";
})
(fetchpatch {
url = "https://github.com/openafs/openafs/commit/17d38e31e6f2e237a7fb4dfb46841060296310b6.patch";
sha256 = "14dydxfm0f5fvnj0kmvgm3bgh0ajhh04i3l7l0hr9cpmwl7vrlcg";
})
];

hardeningDisable = [ "pic" ];

configureFlags = [
10 changes: 5 additions & 5 deletions pkgs/servers/openafs/1.8/srcs.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{ fetchurl }:
rec {
version = "1.8.5";
version = "1.8.6";
src = fetchurl {
url = "http://www.openafs.org/dl/openafs/${version}/openafs-${version}-src.tar.bz2";
sha256 = "08w5n803xm75j7daa3mr2ncfmcg0wpm7yasj6zyddqlb4f7xdppf";
url = "https://www.openafs.org/dl/openafs/${version}/openafs-${version}-src.tar.bz2";
sha256 = "0i99klrw00v4bwd942n90xqfn16z6337m89xfm9dgv7ih0qrsklb";
};

srcs = [ src
(fetchurl {
url = "http://www.openafs.org/dl/openafs/${version}/openafs-${version}-doc.tar.bz2";
sha256 = "08mg3n0q2igfas1khj18r9apyrkpbp1jick0ix5nfaal90jbifis";
url = "https://www.openafs.org/dl/openafs/${version}/openafs-${version}-doc.tar.bz2";
sha256 = "1s91kmxfimhdqrz7l6jgjz72j9pyalghrvg4h384fsz0ks6s4kz3";
})];
}
4 changes: 2 additions & 2 deletions pkgs/tools/filesystems/fuse-overlayfs/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
pname = "fuse-overlayfs";
version = "1.1.1";
version = "1.1.2";

src = fetchFromGitHub {
owner = "containers";
repo = pname;
rev = "v${version}";
sha256 = "0zrxq0s3dlgjarn8l519czwffp2s5ibykc00vfrpayg547dgj342";
sha256 = "1ivz65nnyisha3lkk6ywx175f2sdacjz3q5vy9xddr7dixwd2b18";
};

nativeBuildInputs = [ autoreconfHook pkg-config ];
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -7238,6 +7238,8 @@ in {

suseapi = callPackage ../development/python-modules/suseapi { };

tensorboardx = callPackage ../development/python-modules/tensorboardx { };

typed-ast = callPackage ../development/python-modules/typed-ast { };

stripe = callPackage ../development/python-modules/stripe { };