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