Skip to content
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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 901fb5e64e9f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7507aed4e17f
Choose a head ref
  • 20 commits
  • 18 files changed
  • 7 contributors

Commits on May 20, 2021

  1. Copy the full SHA
    04e1872 View commit details
  2. Copy the full SHA
    99a856c View commit details

Commits on May 22, 2021

  1. bazelisk: 1.8.1 -> 1.9.0

    r-ryantm committed May 22, 2021
    Copy the full SHA
    4596f60 View commit details
  2. gpt2tc: 2020-12-30 -> 2021-04-24, fix build

    Jonathan Ringer committed May 22, 2021
    Copy the full SHA
    3f32731 View commit details
  3. Merge pull request #123947 from r-ryantm/auto-update/bazelisk

    bazelisk: 1.8.1 -> 1.9.0
    marsam authored May 22, 2021

    Verified

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

    grpc: 1.37.1 -> 1.38.0
    marsam authored May 22, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6bf9e13 View commit details
  5. calibre-web: Update dependency version

    Babel requirement is <2.9 and nixpkgs provides 2.9.0
    Updated the requirement definition. Upstream did this as well and
    according to the Babel changelogs, there were no breaking changes
    between 2.8 and 2.9. Server started up properly, no functionality
    test, though.
    polygon authored and Jonathan Ringer committed May 22, 2021
    Copy the full SHA
    b74dbf1 View commit details
  6. vimPlugins: update

    notusknot authored and Jonathan Ringer committed May 22, 2021
    Copy the full SHA
    07ae0b4 View commit details
  7. vimPlugins.bracey-vim: init at 2021-05-11

    notusknot authored and Jonathan Ringer committed May 22, 2021
    Copy the full SHA
    1c4571c View commit details
  8. hobbes: fix build error

    sophrosyne97 authored and Jonathan Ringer committed May 22, 2021
    Copy the full SHA
    f55c2cd View commit details
  9. ardour: 6.5 -> 6.7

    magnetophon authored and Jonathan Ringer committed May 22, 2021

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    8c9a799 View commit details
  10. burpsuite: 2021.4.2 -> 2021.5.1

    r-ryantm authored and Jonathan Ringer committed May 22, 2021
    Copy the full SHA
    24fda1e View commit details
  11. cni: 0.8.0 -> 0.8.1

    r-ryantm authored and Jonathan Ringer committed May 22, 2021
    Copy the full SHA
    3b8e46b View commit details
  12. kubelogin-oidc: 1.23.1 -> 1.23.2

    r-ryantm authored and Jonathan Ringer committed May 22, 2021
    Copy the full SHA
    f4106db View commit details
  13. cargo-expand: 1.0.6 -> 1.0.7

    r-ryantm authored and Jonathan Ringer committed May 22, 2021
    Copy the full SHA
    debd4a4 View commit details
  14. blflash: 0.3.2 -> 0.3.3

    r-ryantm authored and Jonathan Ringer committed May 22, 2021
    Copy the full SHA
    dac51df View commit details
  15. ckan: 1.30.0 -> 1.30.2

    r-ryantm authored and Jonathan Ringer committed May 22, 2021
    Copy the full SHA
    c7be0f9 View commit details
  16. linuxsampler: 2.1.1 -> 2.2.0

    r-ryantm authored and Jonathan Ringer committed May 22, 2021
    Copy the full SHA
    c563a3c View commit details
  17. brave: 1.24.85 -> 1.24.86

    r-ryantm authored and Jonathan Ringer committed May 22, 2021
    Copy the full SHA
    422e6e5 View commit details
  18. Merge remote-tracking branch 'origin/master' into staging-next

    Conflicts:
     pkgs/development/tools/rust/cargo-expand/default.nix
     pkgs/tools/misc/blflash/default.nix
    Jonathan Ringer committed May 22, 2021

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    jonringer Jonathan Ringer
    Copy the full SHA
    7507aed View commit details
12 changes: 6 additions & 6 deletions pkgs/applications/audio/ardour/default.nix
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@
, curl
, dbus
, doxygen
, ffmpeg_3
, ffmpeg
, fftw
, fftwSinglePrec
, flac
@@ -56,13 +56,13 @@
}:
stdenv.mkDerivation rec {
pname = "ardour";
version = "6.5";
version = "6.7";

# don't fetch releases from the GitHub mirror, they are broken
src = fetchgit {
url = "git://git.ardour.org/ardour/ardour.git";
rev = version;
sha256 = "0sd38hchyr16biq9hcxha4ljy3pf0yhcgn90i5zfqcznnc57ildx";
sha256 = "19jc29fjwgvqbg3gnmy50mrz8mh5x4nwddglasvwx83nc87qwllx";
};

patches = [
@@ -89,7 +89,7 @@ stdenv.mkDerivation rec {
cppunit
curl
dbus
ffmpeg_3
ffmpeg
fftw
fftwSinglePrec
flac
@@ -148,8 +148,8 @@ stdenv.mkDerivation rec {
sed 's|/usr/include/libintl.h|${glibc.dev}/include/libintl.h|' -i wscript
patchShebangs ./tools/
substituteInPlace libs/ardour/video_tools_paths.cc \
--replace 'ffmpeg_exe = X_("");' 'ffmpeg_exe = X_("${ffmpeg_3}/bin/ffmpeg");' \
--replace 'ffprobe_exe = X_("");' 'ffprobe_exe = X_("${ffmpeg_3}/bin/ffprobe");'
--replace 'ffmpeg_exe = X_("");' 'ffmpeg_exe = X_("${ffmpeg}/bin/ffmpeg");' \
--replace 'ffprobe_exe = X_("");' 'ffprobe_exe = X_("${ffmpeg}/bin/ffprobe");'
'';

postInstall = ''
4 changes: 2 additions & 2 deletions pkgs/applications/audio/linuxsampler/default.nix
Original file line number Diff line number Diff line change
@@ -3,11 +3,11 @@

stdenv.mkDerivation rec {
pname = "linuxsampler";
version = "2.1.1";
version = "2.2.0";

src = fetchurl {
url = "https://download.linuxsampler.org/packages/${pname}-${version}.tar.bz2";
sha256 = "1gijf50x5xbpya5dj3v2mzj7azx4qk9p012csgddp73f0qi0n190";
sha256 = "sha256-xNFjxrrC0B8Oj10HIQ1AmI7pO34HuYRyyUaoB2MDmYw=";
};

preConfigure = ''
4 changes: 2 additions & 2 deletions pkgs/applications/networking/browsers/brave/default.nix
Original file line number Diff line number Diff line change
@@ -90,11 +90,11 @@ in

stdenv.mkDerivation rec {
pname = "brave";
version = "1.24.85";
version = "1.24.86";

src = fetchurl {
url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb";
sha256 = "jE9INGYz78Vyvps4ESimtH1rL4GdboAUtMx1p31XQGk=";
sha256 = "VKUs8PPyAbuH91Zck0QTiFCEUOMDlLT4Itv4MXi4Ygg=";
};

dontConfigure = true;
4 changes: 2 additions & 2 deletions pkgs/applications/networking/cluster/cni/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

buildGoPackage rec {
pname = "cni";
version = "0.8.0";
version = "0.8.1";

src = fetchFromGitHub {
owner = "containernetworking";
repo = pname;
rev = "v${version}";
sha256 = "16i59dhiq7pc7qs32cdk4yv4w9rjx4vvlw7fb6a6jhq6hxxjrgiw";
sha256 = "sha256-vxwNHIc3rFi7HKIEZrBcr7Oxs2iUtFYcfJK7aXDUv3k=";
};

goPackagePath = "github.com/containernetworking/cni";
Original file line number Diff line number Diff line change
@@ -2,18 +2,18 @@

buildGoModule rec {
pname = "kubelogin";
version = "1.23.1";
version = "1.23.2";

src = fetchFromGitHub {
owner = "int128";
repo = pname;
rev = "v${version}";
sha256 = "sha256-YK/QGx6QzSeyeZ61KgdYO3POJQFK1F6yJayd2gcRWS4=";
sha256 = "sha256-Vj7qk1x4d94GgthmHhWbQvsfnZE1UL3Bdk5zjAb3vWs=";
};

subPackages = ["."];

vendorSha256 = "sha256-tnjgs8Ziqdo1ciVOWtL0D8puv2SZGqSHgo2SV7N8F0M=";
vendorSha256 = "sha256-JsBseRIbStsX44rLsGAERFUSWUuLcNycRDAcOMconnE=";

# Rename the binary instead of symlinking to avoid conflict with the
# Azure version of kubelogin
4 changes: 2 additions & 2 deletions pkgs/development/libraries/grpc/default.nix
Original file line number Diff line number Diff line change
@@ -3,13 +3,13 @@
}:

stdenv.mkDerivation rec {
version = "1.37.1"; # N.B: if you change this, change pythonPackages.grpcio-tools to a matching version too
version = "1.38.0"; # N.B: if you change this, change pythonPackages.grpcio-tools to a matching version too
pname = "grpc";
src = fetchFromGitHub {
owner = "grpc";
repo = "grpc";
rev = "v${version}";
sha256 = "0mjlz2cax5v37g7xnrbf5px88bm7xzl4a5pds112yk096d7wmxm5";
sha256 = "0an903nh8lz3xlf79zsh2v55nrwnjzzavkjlrsl7j9aysgwmgn4r";
fetchSubmodules = true;
};
patches = [
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/grpcio-tools/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

buildPythonPackage rec {
pname = "grpcio-tools";
version = "1.37.1";
version = "1.38.0";

src = fetchPypi {
inherit pname version;
sha256 = "d775fb07cc6561174d6c86d11727a156c4ade969f7bf5edf623ffe2a428bee4e";
sha256 = "c609678cf6faf4b467259757f848de4fbc7baca3c1e3f7b0e55c701c50fd94ae";
};

outputs = [ "out" "dev" ];
6 changes: 3 additions & 3 deletions pkgs/development/tools/bazelisk/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

buildGoModule rec {
pname = "bazelisk";
version = "1.8.1";
version = "1.9.0";

src = fetchFromGitHub {
owner = "bazelbuild";
repo = pname;
rev = "v${version}";
sha256 = "sha256-w2YCqFkZLsTddj9OPOIdFPgXcXapCGWkc5RaH7RHg24=";
sha256 = "sha256-APHRNCJNQ4cheY+wBB8q4fcOOL6SFeg5SflvnrxjYhI=";
};

vendorSha256 = "sha256-IkW13y51NhKflAeHLu8k7DxRqYVnfMHSnfFuT6H/flo=";
vendorSha256 = "sha256-+B+5GQTEiCwLCoGB5uIIJEWJRjylgt9txcsJCXcOAQs=";

doCheck = false;

3 changes: 2 additions & 1 deletion pkgs/development/tools/hobbes/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, cmake, llvm_6, ncurses, readline, zlib }:
{ lib, stdenv, fetchFromGitHub, cmake, llvm_6, ncurses, readline, zlib, libxml2 }:

stdenv.mkDerivation {
name = "hobbes";
@@ -20,6 +20,7 @@ stdenv.mkDerivation {
ncurses
readline
zlib
libxml2
];

doCheck = false; # Running tests in NixOS hangs. See https://git.io/JvK7R.
6 changes: 3 additions & 3 deletions pkgs/development/tools/rust/cargo-expand/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

rustPlatform.buildRustPackage rec {
pname = "cargo-expand";
version = "1.0.6";
version = "1.0.7";

src = fetchFromGitHub {
owner = "dtolnay";
repo = pname;
rev = version;
sha256 = "sha256-6FjFG4RYvmsV/W7OMxj1ZWvruwUeP9Nvsdiv8toZmTk=";
sha256 = "sha256-8YppfgYa5Sd/3nPCMCgaM3A93ND0vU5eUoCW02uDkiM=";
};

cargoSha256 = "sha256-C9lpA2n7EI7Ga3Nnj80dkvbZmqjuxf0wjoQUEr0N8FE=";
cargoSha256 = "sha256-0lrz8awAtLuLWE6Prmi07iGfYVmNZIETv3QL55CPYHQ=";

buildInputs = lib.optional stdenv.isDarwin libiconv;

4 changes: 2 additions & 2 deletions pkgs/games/ckan/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
pname = "ckan";
version = "1.30.0";
version = "1.30.2";

src = fetchurl {
url = "https://github.com/KSP-CKAN/CKAN/releases/download/v${version}/ckan.exe";
sha256 = "sha256-wih5NRzeOy4WMXQ3yV9W/m2x7B2C5T0F78TbpsngigQ=";
sha256 = "sha256-ggmUsJb3xKpI3ygTmzR5f3na/oU4OEa3r3edjlN5R+Q=";
};

dontUnpack = true;
42 changes: 27 additions & 15 deletions pkgs/misc/vim-plugins/generated.nix
Original file line number Diff line number Diff line change
@@ -327,6 +327,18 @@ final: prev:
meta.homepage = "https://github.com/euclidianAce/BetterLua.vim/";
};

bracey-vim = buildVimPluginFrom2Nix {
pname = "bracey-vim";
version = "2021-05-11";
src = fetchFromGitHub {
owner = "turbio";
repo = "bracey.vim";
rev = "457933c107db65ff7e2695e07209a9a2934544b7";
sha256 = "1x8c8l9x4i9n2rlh3a8zha0ni85v04p32w7yciwxp7ddlwzf3lwh";
};
meta.homepage = "https://github.com/turbio/bracey.vim/";
};

brainfuck-vim = buildVimPluginFrom2Nix {
pname = "brainfuck-vim";
version = "2021-01-28";
@@ -405,8 +417,8 @@ final: prev:
src = fetchFromGitHub {
owner = "ms-jpq";
repo = "chadtree";
rev = "a54a87e651ca985b0d10e293f824f3493778b64e";
sha256 = "1cn1knxldl0qqv8p125fqa1fpn3n7cfq7lw9nfj8giaxpr8bag7f";
rev = "6769987c13e313497e0fe98a59ccee0e70388927";
sha256 = "1xaddhij0f652rx2k5iar8892ly84nslw8j74l7srfxs7l91kpyi";
};
meta.homepage = "https://github.com/ms-jpq/chadtree/";
};
@@ -1895,12 +1907,12 @@ final: prev:

hologram-nvim = buildVimPluginFrom2Nix {
pname = "hologram-nvim";
version = "2021-05-20";
version = "2021-05-21";
src = fetchFromGitHub {
owner = "edluffy";
repo = "hologram.nvim";
rev = "7466e360040f14a828fe07cfa7fb6089d50f618e";
sha256 = "1gjns7dkyzl8yj0vq3103r0f6wjk1fjryz7xa8gi67rchbrxrls4";
rev = "593a458d04f7457669280373d98e41195c106d13";
sha256 = "0diq42zdr9l8qw198c5y4jy5siab3cwh4ncsb5z111m28n6a6i5c";
};
meta.homepage = "https://github.com/edluffy/hologram.nvim/";
};
@@ -2628,12 +2640,12 @@ final: prev:

mkdx = buildVimPluginFrom2Nix {
pname = "mkdx";
version = "2021-05-01";
version = "2021-05-21";
src = fetchFromGitHub {
owner = "SidOfc";
repo = "mkdx";
rev = "84c9a59087e74d6bd7761cd4a920d9390c2a65f9";
sha256 = "0qf4q5yh5f9kzxc96aq925ppj304hjnb4xxzjijc38jpvsmchjba";
rev = "b45099a18e88cd61c93a073e2b15cc6025e4774e";
sha256 = "0yawlfnghbkr3bcqqcf3znsdjjbh13a46dhkn4sj108adc9c4y56";
};
meta.homepage = "https://github.com/SidOfc/mkdx/";
};
@@ -3148,8 +3160,8 @@ final: prev:
src = fetchFromGitHub {
owner = "mcchrish";
repo = "nnn.vim";
rev = "cf62f64c8ec1e92fb8e46c23e3b89d8621551e4b";
sha256 = "0c49170891ar7439fyp1phki46pyw8iinszpyaj0gf0pwmqhsdhg";
rev = "065bf84b0b86266b267adfc2584e67eabef49815";
sha256 = "1v2jckl4gaai77rqnv1hwv4bb0d6vyk7hy63nlyy3fcnc1z1ic8v";
};
meta.homepage = "https://github.com/mcchrish/nnn.vim/";
};
@@ -3396,12 +3408,12 @@ final: prev:

nvim-lspconfig = buildVimPluginFrom2Nix {
pname = "nvim-lspconfig";
version = "2021-05-19";
version = "2021-05-21";
src = fetchFromGitHub {
owner = "neovim";
repo = "nvim-lspconfig";
rev = "d23816b7b00028375e53dba2aa30f2b56573cf54";
sha256 = "0m5fgjjks15vzqscgvl9m2di8clxizc8ky3lwlw9j8m4zy8jh8kw";
rev = "2f26391ccf88cd4adff8f11e96412a3536624bd7";
sha256 = "0y8r879lcpwjnk9rcrafkdh59gcxzpvid0rm80db22vpp6a9l9rq";
};
meta.homepage = "https://github.com/neovim/nvim-lspconfig/";
};
@@ -7559,8 +7571,8 @@ final: prev:
src = fetchFromGitHub {
owner = "ojroques";
repo = "vim-oscyank";
rev = "fc88da94f3cd85e0e44778484b678c4d144275fe";
sha256 = "0flc8lxmhv99bisxxip5f6p4196i5215f5fa86mmqs6anff5pfyr";
rev = "20fade09069cd35602387c2e7d2a7cd0f6cff8b0";
sha256 = "1ym87hd85l67976dxk919mdwab8fi8iq8azqk4mpa75gzl2ia7wl";
};
meta.homepage = "https://github.com/ojroques/vim-oscyank/";
};
1 change: 1 addition & 0 deletions pkgs/misc/vim-plugins/vim-plugin-names
Original file line number Diff line number Diff line change
@@ -684,6 +684,7 @@ travitch/hasksyn
tremor-rs/tremor-vim@main
triglav/vim-visual-increment
troydm/zoomwintab.vim
turbio/bracey.vim
tversteeg/registers.nvim@main
tweekmonster/wstrip.vim
twerth/ir_black
3 changes: 2 additions & 1 deletion pkgs/servers/calibre-web/default.nix
Original file line number Diff line number Diff line change
@@ -21,7 +21,8 @@ python3.pkgs.buildPythonApplication rec {
--replace "singledispatch>=3.4.0.0,<3.5.0.0" "" \
--replace "requests>=2.11.1,<2.25.0" "requests>=2.11.1,<2.26.0" \
--replace "unidecode>=0.04.19,<1.2.0" "unidecode>=0.04.19" \
--replace "cps = calibreweb:main" "calibre-web = calibreweb:main"
--replace "cps = calibreweb:main" "calibre-web = calibreweb:main" \
--replace "Babel>=1.3, <2.9" "Babel>=1.3, <=2.9"
'';

patches = [
6 changes: 3 additions & 3 deletions pkgs/tools/misc/blflash/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

rustPlatform.buildRustPackage rec {
pname = "blflash";
version = "0.3.2";
version = "0.3.3";

src = fetchFromGitHub {
owner = "spacemeowx2";
repo = "blflash";
rev = "v${version}";
sha256 = "sha256-+2ncK1ibtQwlBREw4Yiqj4vFvAcZqjkoTBtBdAAUoRg=";
sha256 = "sha256-hPScmivtugtZm848Itzg4Tb9rppZny+rKi3IBuUxxQY=";
};

cargoSha256 = "sha256-hgymSNivcNT9aXws20sBrk76ToDnCQh/dqfUHBzK1Ls=";
cargoSha256 = "sha256-/y3R8B2TOf8jeB9tcewoA9EGN6kj/EPMTjU6rfTF5Vc=";

meta = with lib; {
description = "An bl602 serial flasher written in Rust";
4 changes: 2 additions & 2 deletions pkgs/tools/networking/burpsuite/default.nix
Original file line number Diff line number Diff line change
@@ -2,15 +2,15 @@

stdenv.mkDerivation rec {
pname = "burpsuite";
version = "2021.4.2";
version = "2021.5.1";

src = fetchurl {
name = "burpsuite.jar";
urls = [
"https://portswigger.net/Burp/Releases/Download?productId=100&version=${version}&type=Jar"
"https://web.archive.org/web/https://portswigger.net/Burp/Releases/Download?productId=100&version=${version}&type=Jar"
];
sha256 = "034c9d0a7e0b5e7b1b286949c6b31b475ff2a15e75f1230ccc07e236fc61d2aa";
sha256 = "sha256-nPz6IZpXCyg6cg2nuyqK2f5BI4dNb5tA2NriH3ZC198=";
};

dontUnpack = true;
11 changes: 0 additions & 11 deletions pkgs/tools/text/gpt2tc/0002-fix-download-url.patch

This file was deleted.

Loading