Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
8a1aea99 549f3a7d

+261 -150
+3 -1
lib/systems/doubles.nix
··· 28 28 "aarch64-linux" "armv5tel-linux" "armv6l-linux" "armv7a-linux" 29 29 "armv7l-linux" "i686-linux" "mipsel-linux" "powerpc64-linux" 30 30 "powerpc64le-linux" "riscv32-linux" "riscv64-linux" "x86_64-linux" 31 + "m68k-linux" 31 32 32 33 # MMIXware 33 34 "mmix-mmixware" ··· 39 40 40 41 # none 41 42 "aarch64-none" "arm-none" "armv6l-none" "avr-none" "i686-none" "msp430-none" 42 - "or1k-none" "powerpc-none" "riscv32-none" "riscv64-none" "vc4-none" 43 + "or1k-none" "powerpc-none" "riscv32-none" "riscv64-none" "vc4-none" "m68k-none" 43 44 "x86_64-none" 44 45 45 46 # OpenBSD ··· 74 75 riscv = filterDoubles predicates.isRiscV; 75 76 vc4 = filterDoubles predicates.isVc4; 76 77 or1k = filterDoubles predicates.isOr1k; 78 + m68k = filterDoubles predicates.isM68k; 77 79 js = filterDoubles predicates.isJavaScript; 78 80 79 81 bigEndian = filterDoubles predicates.isBigEndian;
+4
lib/systems/examples.nix
··· 144 144 libc = "newlib"; 145 145 }; 146 146 147 + m68k = { 148 + config = "m68k-unknown-linux-gnu"; 149 + }; 150 + 147 151 arm-embedded = { 148 152 config = "arm-none-eabi"; 149 153 libc = "newlib";
+1
lib/systems/inspect.nix
··· 26 26 isAvr = { cpu = { family = "avr"; }; }; 27 27 isAlpha = { cpu = { family = "alpha"; }; }; 28 28 isOr1k = { cpu = { family = "or1k"; }; }; 29 + isM68k = { cpu = { family = "m68k"; }; }; 29 30 isJavaScript = { cpu = cpuTypes.js; }; 30 31 31 32 is32bit = { cpu = { bits = 32; }; };
+2
lib/systems/parse.nix
··· 95 95 96 96 mmix = { bits = 64; significantByte = bigEndian; family = "mmix"; }; 97 97 98 + m68k = { bits = 32; significantByte = bigEndian; family = "m68k"; }; 99 + 98 100 powerpc = { bits = 32; significantByte = bigEndian; family = "power"; }; 99 101 powerpc64 = { bits = 64; significantByte = bigEndian; family = "power"; }; 100 102 powerpc64le = { bits = 64; significantByte = littleEndian; family = "power"; };
+1 -1
lib/tests/systems.nix
··· 28 28 testredox = mseteq redox [ "x86_64-redox" ]; 29 29 testgnu = mseteq gnu (linux /* ++ kfreebsd ++ ... */); 30 30 testillumos = mseteq illumos [ "x86_64-solaris" ]; 31 - testlinux = mseteq linux [ "aarch64-linux" "armv5tel-linux" "armv6l-linux" "armv7a-linux" "armv7l-linux" "i686-linux" "mipsel-linux" "riscv32-linux" "riscv64-linux" "x86_64-linux" "powerpc64-linux" "powerpc64le-linux" ]; 31 + testlinux = mseteq linux [ "aarch64-linux" "armv5tel-linux" "armv6l-linux" "armv7a-linux" "armv7l-linux" "i686-linux" "mipsel-linux" "riscv32-linux" "riscv64-linux" "x86_64-linux" "powerpc64-linux" "powerpc64le-linux" "m68k-linux" ]; 32 32 testnetbsd = mseteq netbsd [ "aarch64-netbsd" "armv6l-netbsd" "armv7a-netbsd" "armv7l-netbsd" "i686-netbsd" "mipsel-netbsd" "powerpc-netbsd" "riscv32-netbsd" "riscv64-netbsd" "x86_64-netbsd" ]; 33 33 testopenbsd = mseteq openbsd [ "i686-openbsd" "x86_64-openbsd" ]; 34 34 testwindows = mseteq windows [ "i686-cygwin" "x86_64-cygwin" "i686-windows" "x86_64-windows" ];
+5
nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
··· 32 32 from Python 3.8. 33 33 </para> 34 34 </listitem> 35 + <listitem> 36 + <para> 37 + PostgreSQL now defaults to major version 13. 38 + </para> 39 + </listitem> 35 40 </itemizedlist> 36 41 </section> 37 42 <section xml:id="sec-release-21.11-new-services">
+2
nixos/doc/manual/release-notes/rl-2111.section.md
··· 11 11 12 12 - `python3` now defaults to Python 3.9, updated from Python 3.8. 13 13 14 + - PostgreSQL now defaults to major version 13. 15 + 14 16 ## New Services {#sec-release-21.11-new-services} 15 17 16 18 - [btrbk](https://digint.ch/btrbk/index.html), a backup tool for btrfs subvolumes, taking advantage of btrfs specific capabilities to create atomic snapshots and transfer them incrementally to your backup locations. Available as [services.btrbk](options.html#opt-services.brtbk.instances).
+2 -1
nixos/modules/services/databases/postgresql.nix
··· 293 293 # Note: when changing the default, make it conditional on 294 294 # ‘system.stateVersion’ to maintain compatibility with existing 295 295 # systems! 296 - mkDefault (if versionAtLeast config.system.stateVersion "20.03" then pkgs.postgresql_11 296 + mkDefault (if versionAtLeast config.system.stateVersion "21.11" then pkgs.postgresql_13 297 + else if versionAtLeast config.system.stateVersion "20.03" then pkgs.postgresql_11 297 298 else if versionAtLeast config.system.stateVersion "17.09" then pkgs.postgresql_9_6 298 299 else throw "postgresql_9_5 was removed, please upgrade your postgresql version."); 299 300
+3 -3
pkgs/applications/misc/geoipupdate/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "geoipupdate"; 5 - version = "4.7.1"; 5 + version = "4.8.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "maxmind"; 9 9 repo = "geoipupdate"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-nshQxr6y3TxKsAVSA9mzL7LJfCtpv0QuuTTqk3/lENc="; 11 + sha256 = "sha256-fcz1g17JR6jOpq5zOpCmnI00hyXSYYGHfoFRE8/c8dk="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-fqQWFhFeyW4GntRBxEeN6WSOo0G+1hH9vSEZmBKglz8="; 14 + vendorSha256 = "sha256-YawWlPZV4bBOsOFDo2nIXKWwcxb5hWy5OiB99MG0HcY="; 15 15 16 16 doCheck = false; 17 17
+2 -2
pkgs/applications/misc/nnn/default.nix
··· 20 20 21 21 stdenv.mkDerivation rec { 22 22 pname = "nnn"; 23 - version = "4.1.1"; 23 + version = "4.2"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "jarun"; 27 27 repo = pname; 28 28 rev = "v${version}"; 29 - sha256 = "09z37lv57nbp0l1ax28558jk5jv91lb22bgaclirvdyz2qp47xhj"; 29 + sha256 = "sha256-ICUF/LJhsbzDz9xZig1VE6TdG3u0C6Jf/61RoAjx3KI="; 30 30 }; 31 31 32 32 configFile = lib.optionalString (conf != null) (builtins.toFile "nnn.h" conf);
+3 -3
pkgs/applications/science/machine-learning/finalfusion-utils/default.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "finalfusion-utils"; 14 - version = "0.12.0"; 14 + version = "0.13.0"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "finalfusion"; 18 18 repo = pname; 19 19 rev = version; 20 - sha256 = "0gxcjrhfa86kz5qmdf5h278ydc3nc0nfj61brnykb723mg45jj41"; 20 + sha256 = "sha256-ME0qDSFD8G492+7ex7VQWh9P76a+tOCo+SJ9n9ZIYUI="; 21 21 }; 22 22 23 - cargoSha256 = "0dj3xpinzzdfgy06wkp336sp1nyqk7nnvd3hwhyysripmz9apdgg"; 23 + cargoSha256 = "sha256-/rLv2/bcVsmWw+ZfyumDcj0ptHPQBCCYR9O/lVlV+G0="; 24 24 25 25 # Enables build against a generic BLAS. 26 26 cargoBuildFlags = [
+2 -2
pkgs/applications/video/kodi-packages/inputstream-adaptive/default.nix
··· 2 2 buildKodiBinaryAddon rec { 3 3 pname = "inputstream-adaptive"; 4 4 namespace = "inputstream.adaptive"; 5 - version = "2.6.20"; 5 + version = "2.6.22"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "xbmc"; 9 9 repo = "inputstream.adaptive"; 10 10 rev = "${version}-${rel}"; 11 - sha256 = "0g0pvfdmnd3frsd5sdckv3llwyjiw809rqy1slq3xj6i08xhcmd5"; 11 + sha256 = "sha256-WSFbDuUgw0WHWb3ZZVavwpu1TizU9lMA5JAC5haR7c0="; 12 12 }; 13 13 14 14 extraNativeBuildInputs = [ gtest ];
+1
pkgs/build-support/bintools-wrapper/default.nix
··· 208 208 else if targetPlatform.isAlpha then "alpha" 209 209 else if targetPlatform.isVc4 then "vc4" 210 210 else if targetPlatform.isOr1k then "or1k" 211 + else if targetPlatform.isM68k then "m68k" 211 212 else if targetPlatform.isRiscV then "lriscv" 212 213 else throw "unknown emulation for platform: ${targetPlatform.config}"; 213 214 in if targetPlatform.useLLVM or false then ""
+3 -1
pkgs/development/compilers/dtc/default.nix
··· 22 22 makeFlags = [ "PYTHON=python" ]; 23 23 installFlags = [ "INSTALL=install" "PREFIX=$(out)" "SETUP_PREFIX=$(out)" ]; 24 24 25 - doCheck = true; 25 + # Checks are broken on aarch64 darwin 26 + # https://github.com/NixOS/nixpkgs/pull/118700#issuecomment-885892436 27 + doCheck = !stdenv.isDarwin; 26 28 27 29 meta = with lib; { 28 30 description = "Device Tree Compiler";
+35
pkgs/development/interpreters/s9fes/default.nix
··· 1 + { stdenv, lib, fetchurl, ncurses, buildPackages }: 2 + 3 + let 4 + isCrossCompiling = stdenv.hostPlatform != stdenv.buildPlatform; 5 + in 6 + 7 + stdenv.mkDerivation rec { 8 + pname = "s9fes"; 9 + version = "20181205"; 10 + 11 + src = fetchurl { 12 + url = "https://www.t3x.org/s9fes/s9fes-${version}.tgz"; 13 + sha256 = "sha256-Lp/akaDy3q4FmIE6x0fj9ae/SOD7tdsmzy2xdcCh13o="; 14 + }; 15 + 16 + # Fix cross-compilation 17 + postPatch = '' 18 + substituteInPlace Makefile \ 19 + --replace 'ar q' '${stdenv.cc.targetPrefix}ar q' \ 20 + --replace 'strip' '${stdenv.cc.targetPrefix}strip' 21 + ${lib.optionalString isCrossCompiling "substituteInPlace Makefile --replace ./s9 '${buildPackages.s9fes}/bin/s9'"} 22 + ''; 23 + 24 + buildInputs = [ ncurses ]; 25 + makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" "PREFIX=$(out)" ]; 26 + enableParallelBuilding = true; 27 + 28 + meta = with lib; { 29 + description = "Scheme 9 From Empty Space, an interpreter for R4RS Scheme"; 30 + homepage = "http://www.t3x.org/s9fes/index.html"; 31 + license = licenses.publicDomain; 32 + maintainers = with maintainers; [ siraben ]; 33 + platforms = platforms.unix; 34 + }; 35 + }
+15 -10
pkgs/development/ocaml-modules/graphql_ppx/default.nix
··· 1 - { lib, buildDunePackage, fetchFromGitHub, alcotest, cppo 2 - , ocaml-migrate-parsetree, ppx_tools_versioned, reason, yojson }: 1 + { lib, buildDunePackage, fetchFromGitHub, alcotest, reason 2 + , ppxlib 3 + , yojson }: 3 4 4 5 buildDunePackage rec { 5 6 pname = "graphql_ppx"; 6 - version = "1.0.1"; 7 + version = "1.2.0"; 7 8 8 - minimumOCamlVersion = "4.06"; 9 + minimalOCamlVersion = "4.08"; 9 10 10 11 src = fetchFromGitHub { 11 12 owner = "reasonml-community"; 12 13 repo = "graphql-ppx"; 13 14 rev = "v${version}"; 14 - sha256 = "0lvmv1sb0ca9mja6di1dbmsgjqgj3w9var4amv1iz9nhwjjx4cpi"; 15 + sha256 = "1fymmvk616wv5xkwfdmqibdgfl47ry6idc5wfh20a3mz9mpaa13s"; 15 16 }; 16 17 17 - propagatedBuildInputs = 18 - [ cppo ocaml-migrate-parsetree ppx_tools_versioned reason yojson ]; 18 + buildInputs = [ ppxlib ]; 19 + 20 + propagatedBuildInputs = [ 21 + reason 22 + yojson 23 + ]; 19 24 20 - checkInputs = lib.optional doCheck alcotest; 25 + checkInputs = [ alcotest ]; 21 26 22 - doCheck = false; 27 + doCheck = true; 23 28 24 29 useDune2 = true; 25 30 26 31 meta = { 27 32 homepage = "https://github.com/reasonml-community/graphql_ppx"; 28 33 description = "GraphQL PPX rewriter for Bucklescript/ReasonML"; 29 - license = lib.licenses.bsd3; 34 + license = lib.licenses.mit; 30 35 maintainers = with lib.maintainers; [ Zimmi48 jtcoolen ]; 31 36 }; 32 37 }
+2 -2
pkgs/development/ocaml-modules/irmin/ppx.nix
··· 2 2 3 3 buildDunePackage rec { 4 4 pname = "ppx_irmin"; 5 - version = "2.7.1"; 5 + version = "2.7.2"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/mirage/irmin/releases/download/${version}/irmin-${version}.tbz"; 9 - sha256 = "fac7c032f472fb369378ad2d8fe77e7cd3b3c1c6a0d7bf59980b69528891b399"; 9 + sha256 = "29c68c5001a727aaa7a6842d6204ffa3e24b3544fa4f6af2234cdbfa032f7fdf"; 10 10 }; 11 11 12 12 minimumOCamlVersion = "4.08";
+2 -2
pkgs/development/ocaml-modules/lwt/default.nix
··· 1 1 { lib, fetchzip, pkg-config, ncurses, libev, buildDunePackage, ocaml 2 - , cppo, dune-configurator, ocaml-migrate-parsetree, ocplib-endian, result 2 + , cppo, dune-configurator, ocplib-endian, result 3 3 , mmap, seq 4 4 , ocaml-syntax-shims 5 5 }: ··· 18 18 }; 19 19 20 20 nativeBuildInputs = [ pkg-config ]; 21 - buildInputs = [ cppo dune-configurator ocaml-migrate-parsetree ] 21 + buildInputs = [ cppo dune-configurator ] 22 22 ++ optional (!versionAtLeast ocaml.version "4.08") ocaml-syntax-shims 23 23 ++ optional (!versionAtLeast ocaml.version "4.07") ncurses; 24 24 propagatedBuildInputs = [ libev mmap ocplib-endian seq result ];
+2 -2
pkgs/development/python-modules/fastparquet/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "fastparquet"; 17 - version = "0.6.3"; 17 + version = "0.7.0"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "dask"; 21 21 repo = pname; 22 22 rev = version; 23 - hash = "sha256-wSJ6PqW7c8DJCsGuPhXaVGM2s/1dZhLjG4C0JWPcjhY="; 23 + hash = "sha256-08hanzRnt6WuMriNNtOd+ZHycr2XBeIRav+5sgvT7Do="; 24 24 }; 25 25 26 26 nativeBuildInputs = [ pytest-runner ];
+11
pkgs/development/python-modules/smbprotocol/default.nix
··· 1 1 { lib 2 + , stdenv 2 3 , buildPythonPackage 3 4 , cryptography 4 5 , fetchFromGitHub ··· 30 31 checkInputs = [ 31 32 pytest-mock 32 33 pytestCheckHook 34 + ]; 35 + 36 + disabledTests = lib.optionals stdenv.isDarwin [ 37 + # https://github.com/jborean93/smbprotocol/issues/119 38 + "test_copymode_local_to_local_symlink_dont_follow" 39 + "test_copystat_local_to_local_symlink_dont_follow_fail" 40 + 41 + # fail in sandbox due to networking 42 + "test_small_recv" 43 + "test_recv_" 33 44 ]; 34 45 35 46 pythonImportsCheck = [ "smbprotocol" ];
+2 -2
pkgs/development/tools/analysis/flow/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "flow"; 5 - version = "0.155.1"; 5 + version = "0.156.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "facebook"; 9 9 repo = "flow"; 10 10 rev = "refs/tags/v${version}"; 11 - sha256 = "sha256-tlnABN/mcUsR8tgqgrQT+t6joo6wJMeGKtcbjyiVbbE="; 11 + sha256 = "sha256-aV5qcXxNLljeM3MrXg8ptAST8ARCb3kR83oy5G9fbak="; 12 12 }; 13 13 14 14 installPhase = ''
+10 -7
pkgs/development/tools/apktool/default.nix
··· 18 18 19 19 sourceRoot = "."; 20 20 21 - installPhase = '' 22 - install -D ${src} "$out/libexec/apktool/apktool.jar" 23 - mkdir -p "$out/bin" 24 - makeWrapper "${jre}/bin/java" "$out/bin/apktool" \ 25 - --add-flags "-jar $out/libexec/apktool/apktool.jar" \ 26 - --prefix PATH : "${builtins.head build-tools}/libexec/android-sdk/build-tools/28.0.3" 27 - ''; 21 + installPhase = 22 + let 23 + tools = builtins.head build-tools; 24 + in '' 25 + install -D ${src} "$out/libexec/apktool/apktool.jar" 26 + mkdir -p "$out/bin" 27 + makeWrapper "${jre}/bin/java" "$out/bin/apktool" \ 28 + --add-flags "-jar $out/libexec/apktool/apktool.jar" \ 29 + --prefix PATH : "${tools}/libexec/android-sdk/build-tools/${tools.version}" 30 + ''; 28 31 29 32 meta = with lib; { 30 33 description = "A tool for reverse engineering Android apk files";
+23
pkgs/development/tools/knightos/regenkfs/default.nix
··· 1 + { lib, fetchFromGitHub, rustPlatform }: 2 + 3 + rustPlatform.buildRustPackage { 4 + pname = "regenkfs"; 5 + version = "unstable-2020-10-17"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "siraben"; 9 + repo = "regenkfs"; 10 + rev = "652155445fc39bbe6628f6b9415b5cd6863f592f"; 11 + sha256 = "sha256-zkwOpMNPGstn/y1l1s8blUKpBebY4Ta9hiPYxVLvG6Y="; 12 + }; 13 + 14 + cargoSha256 = "sha256-05VmQdop4vdzw2XEvVdp9+RNmyZvay1Q7gKN2n8rDEQ="; 15 + cargoBuildFlags = [ "--features=c-undef" ]; 16 + 17 + meta = with lib; { 18 + description = "Reimplementation of genkfs in Rust"; 19 + homepage = "https://github.com/siraben/regenkfs"; 20 + license = licenses.mit; 21 + maintainers = with maintainers; [ siraben ]; 22 + }; 23 + }
+22
pkgs/development/tools/knightos/remkrom/default.nix
··· 1 + { stdenv, lib, fetchFromGitHub, rustPlatform }: 2 + 3 + rustPlatform.buildRustPackage { 4 + pname = "remkrom"; 5 + version = "unstable-2020-10-17"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "siraben"; 9 + repo = "remkrom"; 10 + rev = "86a0b19c1d382a029ecaa96eeca7e9f76c8561d6"; 11 + sha256 = "sha256-DhfNfV9bd0p5dLXKgrVLyugQHK+RHsepeg0tGq5J6cI="; 12 + }; 13 + 14 + cargoSha256 = "sha256-JUyIbg1SxQ7pdqypGv7Kz2MM0ZwL3M9YJekO9oSftLM="; 15 + 16 + meta = with lib; { 17 + description = "Reimplementation of mkrom in Rust"; 18 + homepage = "https://github.com/siraben/remkrom"; 19 + license = licenses.mit; 20 + maintainers = with maintainers; [ siraben ]; 21 + }; 22 + }
+60 -48
pkgs/misc/vim-plugins/generated.nix
··· 425 425 426 426 chadtree = buildVimPluginFrom2Nix { 427 427 pname = "chadtree"; 428 - version = "2021-07-23"; 428 + version = "2021-07-24"; 429 429 src = fetchFromGitHub { 430 430 owner = "ms-jpq"; 431 431 repo = "chadtree"; 432 - rev = "a33313899a56b936c889f9faaad798d429997042"; 433 - sha256 = "1mqcwvmnn4lbl4901gh5rsfagcx464zdaw0rq0sn0fkyx4ydq9s0"; 432 + rev = "139ca9bb8685a2d9b807d869a49a85fcd42811f7"; 433 + sha256 = "1739vvb9rzlkyrq63lgadhf2azaszy2xhy52hw91rczg8xw7zfc5"; 434 434 }; 435 435 meta.homepage = "https://github.com/ms-jpq/chadtree/"; 436 436 }; ··· 1437 1437 1438 1438 embark-vim = buildVimPluginFrom2Nix { 1439 1439 pname = "embark-vim"; 1440 - version = "2021-04-25"; 1440 + version = "2021-07-24"; 1441 1441 src = fetchFromGitHub { 1442 1442 owner = "embark-theme"; 1443 1443 repo = "vim"; 1444 - rev = "95847fbae47aa5d49b6470568b8151a93e15307a"; 1445 - sha256 = "06qvnbhwm2gl8921hyq75dwxxfbkwfvvsn4pci89831qn6w3pa6f"; 1444 + rev = "03029f4ec49cd0dd1d16eb9561742f5c9f794e71"; 1445 + sha256 = "14gnndh40h8qlymsb9lkycn4w7jv8f7kk0yjxi4wzjvycg7mrplx"; 1446 1446 }; 1447 1447 meta.homepage = "https://github.com/embark-theme/vim/"; 1448 1448 }; ··· 1522 1522 1523 1523 feline-nvim = buildVimPluginFrom2Nix { 1524 1524 pname = "feline-nvim"; 1525 - version = "2021-07-11"; 1525 + version = "2021-07-24"; 1526 1526 src = fetchFromGitHub { 1527 1527 owner = "famiu"; 1528 1528 repo = "feline.nvim"; 1529 - rev = "4c04c967691d028b4056f726735db329039cdff2"; 1530 - sha256 = "18z9dl58mfmffysr8g5drd6iy79fwn463lagp629cdghrjxcq65c"; 1529 + rev = "fb51d6ba6363d10d6fc9e14d0fcef09fd402e431"; 1530 + sha256 = "1cpk0jyhgx93bvjpc76gjp671k53av8mj6d19j4zwm3xm5v1by2p"; 1531 1531 }; 1532 1532 meta.homepage = "https://github.com/famiu/feline.nvim/"; 1533 1533 }; ··· 1546 1546 1547 1547 fern-vim = buildVimPluginFrom2Nix { 1548 1548 pname = "fern-vim"; 1549 - version = "2021-07-03"; 1549 + version = "2021-07-24"; 1550 1550 src = fetchFromGitHub { 1551 1551 owner = "lambdalisue"; 1552 1552 repo = "fern.vim"; 1553 - rev = "1b234d8ec0ffadf7fe3f4ddba13480dd4adeb7c7"; 1554 - sha256 = "1prl720r82mp89jfciw50pd2cygp97v46w7vq30b1m4v3016lh15"; 1553 + rev = "a4d4288a11d0e50214c4f5745da5f8ce39cb2a6d"; 1554 + sha256 = "1ldv2ar8dm2arawxkzi2r7r1c6wacl9g9dkmyib038bdmr4qfn1g"; 1555 1555 }; 1556 1556 meta.homepage = "https://github.com/lambdalisue/fern.vim/"; 1557 1557 }; ··· 2722 2722 meta.homepage = "https://github.com/glepnir/lspsaga.nvim/"; 2723 2723 }; 2724 2724 2725 + lualine-lsp-progress = buildVimPluginFrom2Nix { 2726 + pname = "lualine-lsp-progress"; 2727 + version = "2021-07-10"; 2728 + src = fetchFromGitHub { 2729 + owner = "arkav"; 2730 + repo = "lualine-lsp-progress"; 2731 + rev = "7c024f40a3b26c8f7925745cdd2fe7acc96939c4"; 2732 + sha256 = "0flmd69d7kjzcnzclx6k2yxjfy9nmkwxjlrgl3sszw5qpffxjlk1"; 2733 + }; 2734 + meta.homepage = "https://github.com/arkav/lualine-lsp-progress/"; 2735 + }; 2736 + 2725 2737 lualine-nvim = buildVimPluginFrom2Nix { 2726 2738 pname = "lualine-nvim"; 2727 2739 version = "2021-05-27"; ··· 3144 3156 3145 3157 neoformat = buildVimPluginFrom2Nix { 3146 3158 pname = "neoformat"; 3147 - version = "2021-07-20"; 3159 + version = "2021-07-23"; 3148 3160 src = fetchFromGitHub { 3149 3161 owner = "sbdchd"; 3150 3162 repo = "neoformat"; 3151 - rev = "f9fa0e31f9e5c7aaa2ea2091ca64b28d84d485c0"; 3152 - sha256 = "1bv75ijvs63r88nghjk5ljjz06r6xbp3923r3c17p1d3ks2qsfxa"; 3163 + rev = "b676afbf57bd3fb256a7a45605cac06407eff5a1"; 3164 + sha256 = "1ln4sqj00xw2dnn3gwshxdzaq5gaknbs59cksrr7i7mj902lqr8v"; 3153 3165 }; 3154 3166 meta.homepage = "https://github.com/sbdchd/neoformat/"; 3155 3167 }; ··· 3424 3436 src = fetchFromGitHub { 3425 3437 owner = "shaunsingh"; 3426 3438 repo = "nord.nvim"; 3427 - rev = "4308ebe128e25704bc1b1ef20133d68d8fba2db0"; 3428 - sha256 = "07wcm7gjv48b1z33qixb52bvq7qj44dalmzjbms2wlg00zgq38kf"; 3439 + rev = "b7209e7657dcc786b844a920894a517571da1317"; 3440 + sha256 = "1iaslrhq18myxwla41n3kllvwcn3hb5zcgfl3h6zw4ar8n9pvwdr"; 3429 3441 }; 3430 3442 meta.homepage = "https://github.com/shaunsingh/nord.nvim/"; 3431 3443 }; ··· 3456 3468 3457 3469 null-ls-nvim = buildVimPluginFrom2Nix { 3458 3470 pname = "null-ls-nvim"; 3459 - version = "2021-07-22"; 3471 + version = "2021-07-24"; 3460 3472 src = fetchFromGitHub { 3461 3473 owner = "jose-elias-alvarez"; 3462 3474 repo = "null-ls.nvim"; 3463 - rev = "2c2aec89bb85cc38e9fd6f83a93bb748ae462a01"; 3464 - sha256 = "11qfbn54h7ckggf9va2qawpl81mbm985lr893gvimfkwl6v3zqlp"; 3475 + rev = "52286ee4d11016b3366481935c12211c44d43777"; 3476 + sha256 = "0lf0d2b2yajjv39l9zy0h5cmrnah8ig7fk3ckmlpvcfhrlqry9j8"; 3465 3477 }; 3466 3478 meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/"; 3467 3479 }; ··· 3504 3516 3505 3517 nvim-autopairs = buildVimPluginFrom2Nix { 3506 3518 pname = "nvim-autopairs"; 3507 - version = "2021-07-23"; 3519 + version = "2021-07-24"; 3508 3520 src = fetchFromGitHub { 3509 3521 owner = "windwp"; 3510 3522 repo = "nvim-autopairs"; 3511 - rev = "5a86b4f83c1f17b27a02c191dcebb0441c0531bb"; 3512 - sha256 = "1c4jcdjmafkpcq2vma39vsdm93al8yi3q8n6i4hfvmw8lvsxcfy6"; 3523 + rev = "e3e105b11a3b34e93bdcee0c895801cf3ed2a835"; 3524 + sha256 = "0pgg4xvq0dxn4rzip7nzzy1sscm8v1fixkwlpr9jdbp86s9kkq87"; 3513 3525 }; 3514 3526 meta.homepage = "https://github.com/windwp/nvim-autopairs/"; 3515 3527 }; ··· 3612 3624 3613 3625 nvim-dap = buildVimPluginFrom2Nix { 3614 3626 pname = "nvim-dap"; 3615 - version = "2021-07-23"; 3627 + version = "2021-07-24"; 3616 3628 src = fetchFromGitHub { 3617 3629 owner = "mfussenegger"; 3618 3630 repo = "nvim-dap"; 3619 - rev = "9dc887db1c266aab2ebddf3845d22587f15e92a6"; 3620 - sha256 = "10klagr9ybk96ayhsxd1qp2mjpkrv0a70lh571ixmdf90a6zkg4y"; 3631 + rev = "b557bf8d503c966a4233a72449a80ebcaaed5415"; 3632 + sha256 = "0p6jq9a6xgbxpjcffm6bk88aicqg05cnk0an5j0cy60s7hp5vvv7"; 3621 3633 }; 3622 3634 meta.homepage = "https://github.com/mfussenegger/nvim-dap/"; 3623 3635 }; 3624 3636 3625 3637 nvim-dap-ui = buildVimPluginFrom2Nix { 3626 3638 pname = "nvim-dap-ui"; 3627 - version = "2021-06-29"; 3639 + version = "2021-07-24"; 3628 3640 src = fetchFromGitHub { 3629 3641 owner = "rcarriga"; 3630 3642 repo = "nvim-dap-ui"; 3631 - rev = "e32b33dae9d8d738f86f84699d4f978f8d9deb02"; 3632 - sha256 = "0sdx890gk79qyyjs946kq3anyq8yyxvkg9sfphiavq5xs9840ps1"; 3643 + rev = "10a57a6b6973661d7082589df3bafc949f004346"; 3644 + sha256 = "10w6wxn3gf3pn6xw9ws05pxqp4a4ssg252bq7bsq8xys9saf12gy"; 3633 3645 }; 3634 3646 meta.homepage = "https://github.com/rcarriga/nvim-dap-ui/"; 3635 3647 }; ··· 3720 3732 3721 3733 nvim-lspconfig = buildVimPluginFrom2Nix { 3722 3734 pname = "nvim-lspconfig"; 3723 - version = "2021-07-20"; 3735 + version = "2021-07-24"; 3724 3736 src = fetchFromGitHub { 3725 3737 owner = "neovim"; 3726 3738 repo = "nvim-lspconfig"; 3727 - rev = "4f72377143fc0961391fb0e42e751b9f677fca4e"; 3728 - sha256 = "1w9gjnv98gv8jwkkw1x5jsnc8366w1jcllipxlrij97z6hspqc8m"; 3739 + rev = "00028be5527abbc829ae8263cb3319dcae08e8ec"; 3740 + sha256 = "17vxq8b70v9kq7labi3di0r6rgdhf4vz4mkiw6ji26pa60bfxy8w"; 3729 3741 }; 3730 3742 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 3731 3743 }; ··· 4481 4493 src = fetchFromGitHub { 4482 4494 owner = "simrat39"; 4483 4495 repo = "rust-tools.nvim"; 4484 - rev = "a0be4f89830210c5203ea2bee1373041400a59d1"; 4485 - sha256 = "1f5s9shmlpixw6lkywbnbfcqhqvaczmbhys243pn96pv4bsy09r5"; 4496 + rev = "160aeb66e46e863802c2e4c5a772c3858bc02fd0"; 4497 + sha256 = "108nxkbybl1fvyawgq0mzbi2c5fadycxj0pnnnsw8alycyjln13f"; 4486 4498 }; 4487 4499 meta.homepage = "https://github.com/simrat39/rust-tools.nvim/"; 4488 4500 }; ··· 4561 4573 4562 4574 semshi = buildVimPluginFrom2Nix { 4563 4575 pname = "semshi"; 4564 - version = "2021-07-13"; 4576 + version = "2021-07-24"; 4565 4577 src = fetchFromGitHub { 4566 4578 owner = "numirias"; 4567 4579 repo = "semshi"; 4568 - rev = "39c7500032f35711aecb492affd989433b984f14"; 4569 - sha256 = "14hv67fhmq85m382grc6h07r5xs83mmx3j8nf94j60gwbybhlkdb"; 4580 + rev = "252f07fd5f0ae9eb19d02bae979fd7c9152c1ccf"; 4581 + sha256 = "0r1nrkhyhk08vfhf9hnbhjlnqy0imqhdqx31y301k2kb31hyiyq3"; 4570 4582 }; 4571 4583 meta.homepage = "https://github.com/numirias/semshi/"; 4572 4584 }; ··· 5169 5181 src = fetchFromGitHub { 5170 5182 owner = "nvim-telescope"; 5171 5183 repo = "telescope.nvim"; 5172 - rev = "79644ab67731c7ba956c354bf0545282f34e10cc"; 5173 - sha256 = "0v7qpblbgs298aj0p5fs4q8b8zc36ib427aq78c0500988p6hr3d"; 5184 + rev = "c0f1999b0280bb042bba01c930dd94a4bfdee363"; 5185 + sha256 = "13igy3nph7vg1pnq7hjvql71i0031xdxgkiyd1h38chcs7whvxzf"; 5174 5186 }; 5175 5187 meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/"; 5176 5188 }; ··· 6822 6834 6823 6835 vim-fugitive = buildVimPluginFrom2Nix { 6824 6836 pname = "vim-fugitive"; 6825 - version = "2021-07-21"; 6837 + version = "2021-07-24"; 6826 6838 src = fetchFromGitHub { 6827 6839 owner = "tpope"; 6828 6840 repo = "vim-fugitive"; 6829 - rev = "a7c54990f031ab93b556ceb25c5afb8a45c3311a"; 6830 - sha256 = "0ld8p75av2v9ki5sh7rh8cxj99k6lydhy6jp9x19fk8bzxsgff02"; 6841 + rev = "75b2a9a8daf6589f9747ff4f2d068fdea54e92ea"; 6842 + sha256 = "1c265bq5a60y7ndpvwdn54kdzb6spdfnkfdaffp47rgq0y1pfphj"; 6831 6843 }; 6832 6844 meta.homepage = "https://github.com/tpope/vim-fugitive/"; 6833 6845 }; ··· 7749 7761 7750 7762 vim-matchup = buildVimPluginFrom2Nix { 7751 7763 pname = "vim-matchup"; 7752 - version = "2021-07-19"; 7764 + version = "2021-07-24"; 7753 7765 src = fetchFromGitHub { 7754 7766 owner = "andymass"; 7755 7767 repo = "vim-matchup"; 7756 - rev = "61802ad25f303dc37f575cbed9b902605353db49"; 7757 - sha256 = "15c8y5rfsnmx4dm01advvax8flkibkg60lbs8x0xgyzfcqjzhl14"; 7768 + rev = "8ae49bf65c960f6260f2d475b35b068bc6b822f2"; 7769 + sha256 = "1r0car7vbz57b5fq7kjibsdi6knw50n8az145dbfq8svkf7s1fvy"; 7758 7770 }; 7759 7771 meta.homepage = "https://github.com/andymass/vim-matchup/"; 7760 7772 }; ··· 9310 9322 9311 9323 vim-ultest = buildVimPluginFrom2Nix { 9312 9324 pname = "vim-ultest"; 9313 - version = "2021-07-18"; 9325 + version = "2021-07-23"; 9314 9326 src = fetchFromGitHub { 9315 9327 owner = "rcarriga"; 9316 9328 repo = "vim-ultest"; 9317 - rev = "06f965a62c32906f220c37e7b758a275d6a992f6"; 9318 - sha256 = "0zgpp6g29n1kb0qi6n84i1d540g0xhw5bzj8kp5xsh5wlvn9h4fk"; 9329 + rev = "54eaa1b19c924551e9988063926533583e41b24c"; 9330 + sha256 = "16d38yc4v0fy7w8qdrbx134f99xny4kfgwgazqa47cgj8nrb0n4g"; 9319 9331 }; 9320 9332 meta.homepage = "https://github.com/rcarriga/vim-ultest/"; 9321 9333 };
+1
pkgs/misc/vim-plugins/vim-plugin-names
··· 28 28 antoinemadec/FixCursorHold.nvim 29 29 ap/vim-css-color 30 30 arcticicestudio/nord-vim 31 + arkav/lualine-lsp-progress 31 32 arthurxavierx/vim-unicoder 32 33 artur-shaik/vim-javacomplete2 33 34 autozimu/LanguageClient-neovim
+2 -2
pkgs/servers/jackett/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "jackett"; 5 - version = "0.18.455"; 5 + version = "0.18.459"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/Jackett/Jackett/releases/download/v${version}/Jackett.Binaries.Mono.tar.gz"; 9 - sha256 = "sha256-qEuhgtDtdMCHJtUcUDUmKI8FT0ti7veleI7UhwTAUfE="; 9 + sha256 = "sha256-KOdUMJ29bqJ7WyE4BxMDRsPdIKwZNRfrbIItdoeexUk="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ];
+3 -3
pkgs/servers/plex/raw.nix
··· 12 12 # server, and the FHS userenv and corresponding NixOS module should 13 13 # automatically pick up the changes. 14 14 stdenv.mkDerivation rec { 15 - version = "1.23.5.4841-549599676"; 15 + version = "1.23.5.4862-0f739d462"; 16 16 pname = "plexmediaserver"; 17 17 18 18 # Fetch the source 19 19 src = if stdenv.hostPlatform.system == "aarch64-linux" then fetchurl { 20 20 url = "https://downloads.plex.tv/plex-media-server-new/${version}/debian/plexmediaserver_${version}_arm64.deb"; 21 - sha256 = "168aill68fcq3cv3a78yhqnfxziww8r80is179y9jxmhymnmzp9q"; 21 + sha256 = "1qbv30ki8xw9vdvqw8fh56br8gkm1ndcw361sal7ahn62d4h85nq"; 22 22 } else fetchurl { 23 23 url = "https://downloads.plex.tv/plex-media-server-new/${version}/debian/plexmediaserver_${version}_amd64.deb"; 24 - sha256 = "0cp2likx2dqy6j5icp5n07kg1md9qvq9vsh4818m86r2p015qlvb"; 24 + sha256 = "1ac169197gfi78mnm46lhgvzlg2y9c0pzdm5a6031lfalqc7z9nc"; 25 25 }; 26 26 27 27 outputs = [ "out" "basedb" ];
+3 -3
pkgs/tools/games/ajour/default.nix
··· 34 34 35 35 in rustPlatform.buildRustPackage rec { 36 36 pname = "Ajour"; 37 - version = "1.2.0"; 37 + version = "1.2.1"; 38 38 39 39 src = fetchFromGitHub { 40 40 owner = "casperstorm"; 41 41 repo = "ajour"; 42 42 rev = version; 43 - sha256 = "0xmjr8brjmkk13dsn3yvcl5ss6b214hpka0idk072n46qsyhg2wh"; 43 + sha256 = "sha256-arb6wPoDlNdBxSQ+G0KyN4Pbd0nPhb+DbvRlbPaPtPI="; 44 44 }; 45 45 46 - cargoSha256 = "06d1h2c2abg56567znxh65d4ddpi6wvxip9rbzkmdnzgy3b3y2wl"; 46 + cargoSha256 = "sha256-1hK6C10oM5b8anX+EofekR686AZR5LcpXyhVkmHcSwA="; 47 47 48 48 nativeBuildInputs = [ 49 49 autoPatchelfHook
+3 -3
pkgs/tools/networking/grpcurl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "grpcurl"; 5 - version = "1.8.1"; 5 + version = "1.8.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "fullstorydev"; 9 9 repo = "grpcurl"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-BxmoIGhuAt/uhHLNdMiSrNVWAoxAAMKPJ/NsXjf2ynk="; 11 + sha256 = "sha256-/no8bRGoKibtcjaITUuzwAbX+gPHNJROSf79iuuRwe4="; 12 12 }; 13 13 14 14 subPackages = [ "cmd/grpcurl" ]; 15 15 16 - vendorSha256 = "sha256-EnstvJk2kZ1Ft5xY1dO14wnmT//2K72OnDMZqeaOeQI="; 16 + vendorSha256 = "sha256-nl8vKVhUMSO20qCDyhNkU5cghNy8vIFqSBvLk59nbWg="; 17 17 18 18 buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version}" ]; 19 19
+2 -2
pkgs/tools/security/exploitdb/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "exploitdb"; 5 - version = "2021-07-22"; 5 + version = "2021-07-24"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "offensive-security"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-pmi1oKam3t4iKqbisFghdVlzp1Ozmc9Nmn19JLrsams="; 11 + sha256 = "sha256-UMajZExQjrbXon/tNYt+xp9LM7QRVXefGHDYuu949AQ="; 12 12 }; 13 13 14 14 installPhase = ''
+17 -19
pkgs/top-level/aliases.nix
··· 101 101 buildPerlPackage = perlPackages.buildPerlPackage; # added 2018-10-12 102 102 buildGo112Package = throw "buildGo112Package has been removed"; # added 2020-04-26 103 103 buildGo112Module = throw "buildGo112Module has been removed"; # added 2020-04-26 104 + buildkite-agent2 = throw "buildkite-agent2 has been discontinued. Please use buildkite-agent (v3.x)"; # added 2018-09-26 105 + buildkite-agent3 = buildkite-agent; # added 2018-09-26 104 106 bundler_HEAD = bundler; # added 2015-11-15 105 107 calibre-py2 = throw "calibre-py2 has been removed from nixpkgs, as calibre has upgraded to python 3. Please use calibre as replacement."; # added 2021-01-13 106 108 calibre-py3 = throw "calibre-py3 has been removed from nixpkgs, as calibre's default python version is now 3. Please use calibre as replacement."; # added 2021-01-13 ··· 340 342 hicolor_icon_theme = hicolor-icon-theme; # added 2018-02-25 341 343 ht-rust = xh; # added 2021-02-13 342 344 htmlTidy = html-tidy; # added 2014-12-06 345 + hydra-flakes = throw "hydra-flakes: Flakes support has been merged into Hydra's master. Please use `hydra-unstable` now."; # added 2020-04-06 343 346 iana_etc = iana-etc; # added 2017-03-08 344 347 icedtea8_web = adoptopenjdk-icedtea-web; # added 2019-08-21 345 348 icedtea_web = adoptopenjdk-icedtea-web; # added 2019-08-21 ··· 385 388 kino = throw "kino has been removed because it was broken and abandoned"; # added 2021-04-25 386 389 krename-qt5 = krename; # added 2017-02-18 387 390 kerberos = libkrb5; # moved from top-level 2021-03-14 388 - keymon = throw "keymon has been removed from nixpkgs, as it's abandoned and archived."; # 2019-12-10 391 + keymon = throw "keymon has been removed from nixpkgs, as it's abandoned and archived."; # added 2019-12-10 389 392 kramdown-rfc2629 = rubyPackages.kramdown-rfc2629; # added 2021-03-23 390 393 kvm = qemu_kvm; # added 2018-04-25 391 394 latinmodern-math = lmmath; 392 395 letsencrypt = certbot; # added 2016-05-16 396 + leksah = throw "To use leksah, refer to the instructions in https://github.com/leksah/leksah."; # added 2019-04-28 393 397 libaudit = audit; # added 2018-04-25 394 398 libcanberra_gtk2 = libcanberra-gtk2; # added 2018-02-25 395 399 libcanberra_gtk3 = libcanberra-gtk3; # added 2018-02-25 ··· 529 533 oauth2_proxy = oauth2-proxy; # added 2021-04-18 530 534 opencascade_oce = opencascade; # added 2018-04-25 531 535 oblogout = throw "oblogout has been removed from nixpkgs, as it's archived upstream."; # added 2019-12-10 536 + octoprint-plugins = throw "octoprint-plugins are now part of the octoprint.python.pkgs package set."; # added 2021-01-24 532 537 ofp = throw "ofp is not compatible with odp-dpdk"; 533 538 opencl-icd = ocl-icd; # added 2017-01-20 534 539 openconnect_pa = throw "openconnect_pa fork has been discontinued, support for GlobalProtect is now available in openconnect"; # added 2021-05-21 ··· 549 554 parity = openethereum; # added 2020-08-01 550 555 parquet-cpp = arrow-cpp; # added 2018-09-08 551 556 pass-otp = pass.withExtensions (ext: [ext.pass-otp]); # added 2018-05-04 557 + pdfread = throw "pdfread has been remove because it is unmaintained for years and the sources are no longer available"; # added 2021-07-22 552 558 pdf2htmlEx = throw "pdf2htmlEx has been removed from nixpkgs, as it was unmaintained"; # added 2020-11-03 553 559 perlXMLParser = perlPackages.XMLParser; # added 2018-10-12 554 560 perlArchiveCpio = perlPackages.ArchiveCpio; # added 2018-10-12 ··· 893 899 virtmanager-qt = virt-manager-qt; # added 2019-10-29 894 900 virtinst = throw "virtinst has been removed, as it's included in virt-manager"; # added 2021-07-21 895 901 vorbisTools = vorbis-tools; # added 2016-01-26 902 + way-cooler = throw "way-cooler is abandoned by its author: https://way-cooler.org/blog/2020/01/09/way-cooler-post-mortem.html"; # added 2020-01-13 896 903 webkit = webkitgtk; # added 2019-03-05 897 904 webkitgtk24x-gtk3 = throw "webkitgtk24x-gtk3 has been removed because it's insecure. Please use webkitgtk."; # added 2019-12-05 898 905 webkitgtk24x-gtk2 = throw "webkitgtk24x-gtk2 has been removed because it's insecure. Please use webkitgtk."; # added 2019-12-05 899 906 weechat-matrix-bridge = weechatScripts.weechat-matrix-bridge; # added 2018-09-06 900 907 wineStaging = wine-staging; # added 2018-01-08 901 908 winusb = woeusb; # added 2017-12-22 909 + winstone = throw "winstone is not supported anymore. Alternatives are Jetty or Tomcat."; # added 2019-05-14 902 910 winswitch = throw "winswitch has been removed from nixpkgs."; # added 2019-12-10 911 + wireshark-gtk = throw "wireshark-gtk is not supported anymore. Use wireshark-qt or wireshark-cli instead."; # added 2019-11-18 903 912 wireguard = wireguard-tools; # added 2018-05-19 904 913 morituri = whipper; # added 2018-09-13 905 914 xp-pen-g430 = pentablet-driver; # added 2020-05-03 ··· 968 977 ocamlPackages_4_03 969 978 ocamlPackages_latest; 970 979 971 - # added 2019-08-01 972 - mumble_git = pkgs.mumble; 973 - murmur_git = pkgs.murmur; 974 - 975 - # added 2020-08-17 976 - zabbix44 = throw "zabbix44: Zabbix 4.4 is end of life, see https://www.zabbix.com/documentation/current/manual/installation/upgrade_notes_500 for details on upgrading to Zabbix 5.0."; 980 + mumble_git = pkgs.mumble; # added 2019-08-01 981 + murmur_git = pkgs.murmur; # added 2019-08-01 982 + zabbix44 = throw "zabbix44: Zabbix 4.4 is end of life, see https://www.zabbix.com/documentation/current/manual/installation/upgrade_notes_500 for details on upgrading to Zabbix 5.0."; # added 2020-08-17 977 983 978 984 # added 2019-09-06 979 985 zeroc_ice = pkgs.zeroc-ice; ··· 988 994 ocaml_4_03 = ocamlPackages_4_03.ocaml; 989 995 }) // { 990 996 991 - # added 2019-10-28 992 - gnatsd = nats-server; 993 - 994 - # added 2020-01-10 995 - tor-browser-bundle = throw "tor-browser-bundle was removed because it was out of date and inadequately maintained. Please use tor-browser-bundle-bin instead. See #77452."; 996 - # added 2020-01-10 997 - tor-browser-unwrapped = throw "tor-browser-unwrapped was removed because it was out of date and inadequately maintained. Please use tor-browser-bundle-bin instead. See #77452."; 998 - 999 - # added 2020-02-09 1000 - dina-font-pcf = dina-font; 997 + gnatsd = nats-server; # added 2019-10-28 998 + tor-browser-bundle = throw "tor-browser-bundle was removed because it was out of date and inadequately maintained. Please use tor-browser-bundle-bin instead. See #77452."; # added 2020-01-10 999 + tor-browser-unwrapped = throw "tor-browser-unwrapped was removed because it was out of date and inadequately maintained. Please use tor-browser-bundle-bin instead. See #77452."; # added 2020-01-10 1000 + dina-font-pcf = dina-font; # added 2020-02-09 1001 1001 1002 1002 # added 2019-04-13 1003 1003 # *-polly pointed to llvmPackages_latest ··· 1013 1013 1014 1014 dnscrypt-proxy = throw "dnscrypt-proxy has been removed. Please use dnscrypt-proxy2."; # added 2020-02-02 1015 1015 sqldeveloper_18 = throw "sqldeveloper_18 is not maintained anymore!"; # added 2020-02-04 1016 - 1017 1016 gcc-snapshot = throw "gcc-snapshot: Marked as broken for >2 years, additionally this 'snapshot' pointed to a fairly old one from gcc7."; 1018 - 1019 1017 todolist = throw "todolist is now ultralist."; # added 2020-12-27 1020 1018 1021 1019 /* Cleanup before 21.05 */
+11 -28
pkgs/top-level/all-packages.nix
··· 4429 4429 4430 4430 rar2fs = callPackage ../tools/filesystems/rar2fs { }; 4431 4431 4432 + s9fes = callPackage ../development/interpreters/s9fes { }; 4433 + 4432 4434 s-tar = callPackage ../tools/archivers/s-tar {}; 4433 4435 4434 4436 sonota = callPackage ../tools/misc/sonota { }; ··· 7944 7946 jbig2enc = callPackage ../tools/graphics/jbig2enc { }; 7945 7947 7946 7948 pdfarranger = callPackage ../applications/misc/pdfarranger { }; 7947 - 7948 - pdfread = throw "pdfread has been remove from nixpkgs, because it is unmaintained for years and the sources are no longer available"; 7949 7949 7950 7950 briss = callPackage ../tools/graphics/briss { }; 7951 7951 ··· 11623 11623 11624 11624 knightos-genkfs = callPackage ../development/tools/knightos/genkfs { }; 11625 11625 11626 + regenkfs = callPackage ../development/tools/knightos/regenkfs { }; 11627 + 11626 11628 knightos-kcc = callPackage ../development/tools/knightos/kcc { }; 11627 11629 11628 11630 knightos-kimg = callPackage ../development/tools/knightos/kimg { }; ··· 11630 11632 knightos-kpack = callPackage ../development/tools/knightos/kpack { }; 11631 11633 11632 11634 knightos-mkrom = callPackage ../development/tools/knightos/mkrom { }; 11635 + 11636 + remkrom = callPackage ../development/tools/knightos/remkrom { }; 11633 11637 11634 11638 knightos-patchrom = callPackage ../development/tools/knightos/patchrom { }; 11635 11639 ··· 12576 12580 12577 12581 # Import PHP80 interpreter, extensions and packages 12578 12582 php80 = callPackage ../development/interpreters/php/8.0.nix { 12579 - stdenv = if stdenv.cc.isClang then llvmPackages_6.stdenv else stdenv; 12583 + stdenv = if stdenv.cc.isClang then llvmPackages.stdenv else stdenv; 12580 12584 }; 12581 12585 php80Extensions = recurseIntoAttrs php80.extensions; 12582 12586 php80Packages = recurseIntoAttrs php80.packages; 12583 12587 12584 12588 # Import PHP74 interpreter, extensions and packages 12585 12589 php74 = callPackage ../development/interpreters/php/7.4.nix { 12586 - stdenv = if stdenv.cc.isClang then llvmPackages_6.stdenv else stdenv; 12590 + stdenv = if stdenv.cc.isClang then llvmPackages.stdenv else stdenv; 12587 12591 }; 12588 12592 php74Extensions = recurseIntoAttrs php74.extensions; 12589 12593 php74Packages = recurseIntoAttrs php74.packages; ··· 13222 13226 13223 13227 buck = callPackage ../development/tools/build-managers/buck { }; 13224 13228 13225 - buildkite-agent = buildkite-agent3; 13226 - buildkite-agent2 = throw "pkgs.buildkite-agent2 has been discontinued. Please use pkgs.buildkite-agent (v3.x)"; 13227 - buildkite-agent3 = callPackage ../development/tools/continuous-integration/buildkite-agent { }; 13229 + buildkite-agent = callPackage ../development/tools/continuous-integration/buildkite-agent { }; 13228 13230 13229 13231 buildkite-agent-metrics = callPackage ../servers/monitoring/buildkite-agent-metrics { }; 13230 13232 ··· 15837 15839 inherit (callPackage ../development/tools/misc/hydra { }) 15838 15840 hydra-unstable; 15839 15841 15840 - hydra-flakes = throw '' 15841 - Flakes support has been merged into Hydra's master. Please use 15842 - `pkgs.hydra-unstable` now. 15843 - ''; 15844 - 15845 15842 hydra-cli = callPackage ../development/tools/misc/hydra-cli { }; 15846 15843 15847 15844 hydraAntLogger = callPackage ../development/libraries/java/hydra-ant-logger { }; ··· 18188 18185 18189 18186 lambda-mod-zsh-theme = callPackage ../shells/zsh/lambda-mod-zsh-theme { }; 18190 18187 18191 - leksah = throw ("To use leksah, refer to the instructions in " + 18192 - "https://github.com/leksah/leksah."); 18193 - 18194 18188 libgme = callPackage ../development/libraries/audio/libgme { }; 18195 18189 18196 18190 librdf_raptor = callPackage ../development/libraries/librdf/raptor.nix { }; ··· 20395 20389 20396 20390 webhook = callPackage ../servers/http/webhook { }; 20397 20391 20398 - winstone = throw "Winstone is not supported anymore. Alternatives are Jetty or Tomcat."; 20399 - 20400 20392 xinetd = callPackage ../servers/xinetd { }; 20401 20393 20402 20394 zookeeper = callPackage ../servers/zookeeper { ··· 24191 24183 }; 24192 24184 wireshark-qt = wireshark; 24193 24185 24194 - # The GTK UI is deprecated by upstream. You probably want the QT version. 24195 - wireshark-gtk = throw "wireshark-gtk is not supported anymore. Use wireshark-qt or wireshark-cli instead."; 24196 24186 wireshark-cli = wireshark.override { 24197 24187 withQt = false; 24198 24188 libpcap = libpcap.override { withBluez = stdenv.isLinux; }; ··· 26227 26217 obsidian = callPackage ../applications/misc/obsidian { }; 26228 26218 26229 26219 octoprint = callPackage ../applications/misc/octoprint { }; 26230 - 26231 - octoprint-plugins = throw "octoprint-plugins are now part of the octoprint.python.pkgs package set."; 26232 26220 26233 26221 ocrad = callPackage ../applications/graphics/ocrad { }; 26234 26222 ··· 27899 27887 27900 27888 wapiti = callPackage ../tools/security/wapiti { }; 27901 27889 27902 - way-cooler = throw ("way-cooler is abandoned by its author: " + 27903 - "https://way-cooler.org/blog/2020/01/09/way-cooler-post-mortem.html"); 27904 - 27905 27890 wayfireApplications = wayfireApplications-unwrapped.withPlugins (plugins: [ plugins.wf-shell ]); 27906 27891 inherit (wayfireApplications) wayfire wcm; 27907 27892 wayfireApplications-unwrapped = recurseIntoAttrs ( ··· 31420 31405 31421 31406 nix-repl = throw ( 31422 31407 "nix-repl has been removed because it's not maintained anymore, " + 31423 - (lib.optionalString (! lib.versionAtLeast "2" (lib.versions.major builtins.nixVersion)) 31424 - "ugrade your Nix installation to a newer version and ") + 31425 - "use `nix repl` instead. " + 31426 - "Also see https://github.com/NixOS/nixpkgs/pull/44903" 31408 + (lib.optionalString (!lib.versionAtLeast "2" (lib.versions.major builtins.nixVersion)) "ugrade your Nix installation to a newer version and ") + 31409 + "use `nix repl` instead. Also see https://github.com/NixOS/nixpkgs/pull/44903" 31427 31410 ); 31428 31411 31429 31412 nixpkgs-review = callPackage ../tools/package-management/nixpkgs-review { };
+1 -3
pkgs/top-level/ocaml-packages.nix
··· 623 623 inherit (pkgs) file; 624 624 }; 625 625 626 - lwt = callPackage ../development/ocaml-modules/lwt { 627 - ocaml-migrate-parsetree = ocaml-migrate-parsetree-2; 628 - }; 626 + lwt = callPackage ../development/ocaml-modules/lwt { }; 629 627 630 628 lwt-canceler = callPackage ../development/ocaml-modules/lwt-canceler { }; 631 629