Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
f66291ae da44aac0

+256 -95
+5
maintainers/maintainer-list.nix
··· 5775 githubId = 7047019; 5776 name = "Florent Becker"; 5777 }; 5778 gamb = { 5779 email = "adam.gamble@pm.me"; 5780 github = "gamb";
··· 5775 githubId = 7047019; 5776 name = "Florent Becker"; 5777 }; 5778 + galen = { 5779 + github = "galenhuntington"; 5780 + githubId = 1851962; 5781 + name = "Galen Huntington"; 5782 + }; 5783 gamb = { 5784 email = "adam.gamble@pm.me"; 5785 github = "gamb";
+12 -1
maintainers/team-list.nix
··· 307 shortName = "Geospatial"; 308 }; 309 310 golang = { 311 members = [ 312 kalbasit ··· 594 595 nix = { 596 members = [ 597 - Profpatsch 598 eelco 599 grahamc 600 pierron
··· 307 shortName = "Geospatial"; 308 }; 309 310 + gitlab = { 311 + members = [ 312 + globin 313 + krav 314 + talyz 315 + yayayayaka 316 + yuka 317 + ]; 318 + scope = "Maintain gitlab packages."; 319 + shortName = "gitlab"; 320 + }; 321 + 322 golang = { 323 members = [ 324 kalbasit ··· 606 607 nix = { 608 members = [ 609 eelco 610 grahamc 611 pierron
+2
nixos/modules/services/continuous-integration/gitlab-runner.nix
··· 611 (mkRenamedOptionModule [ "services" "gitlab-runner" "sessionServer" "advertiseAddress" ] [ "services" "gitlab-runner" "settings" "session_server" "advertise_address" ] ) 612 (mkRenamedOptionModule [ "services" "gitlab-runner" "sessionServer" "sessionTimeout" ] [ "services" "gitlab-runner" "settings" "session_server" "session_timeout" ] ) 613 ]; 614 }
··· 611 (mkRenamedOptionModule [ "services" "gitlab-runner" "sessionServer" "advertiseAddress" ] [ "services" "gitlab-runner" "settings" "session_server" "advertise_address" ] ) 612 (mkRenamedOptionModule [ "services" "gitlab-runner" "sessionServer" "sessionTimeout" ] [ "services" "gitlab-runner" "settings" "session_server" "session_timeout" ] ) 613 ]; 614 + 615 + meta.maintainers = teams.gitlab.members; 616 }
+3
nixos/modules/services/matrix/mautrix-telegram.nix
··· 80 "example.com" = "full"; 81 "@admin:example.com" = "admin"; 82 }; 83 } 84 ''; 85 description = lib.mdDoc ''
··· 80 "example.com" = "full"; 81 "@admin:example.com" = "admin"; 82 }; 83 + telegram = { 84 + connection.use_ipv6 = true; 85 + }; 86 } 87 ''; 88 description = lib.mdDoc ''
+1 -1
nixos/modules/services/misc/gitlab.nix
··· 1685 }; 1686 1687 meta.doc = ./gitlab.md; 1688 - 1689 }
··· 1685 }; 1686 1687 meta.doc = ./gitlab.md; 1688 + meta.maintainers = teams.gitlab.members; 1689 }
+3 -3
nixos/tests/systemd-networkd-ipv6-prefix-delegation.nix
··· 67 interfaces-config.interfaces = [ "eth1" ]; 68 subnet6 = [ { 69 interface = "eth1"; 70 - subnet = "2001:DB8:F::/36"; 71 pd-pools = [ { 72 - prefix = "2001:DB8:F::"; 73 prefix-len = 36; 74 delegated-len = 48; 75 } ]; 76 pools = [ { 77 - pool = "2001:DB8:0000:0000:FFFF::-2001:DB8:0000:0000:FFFF::FFFF"; 78 } ]; 79 } ]; 80
··· 67 interfaces-config.interfaces = [ "eth1" ]; 68 subnet6 = [ { 69 interface = "eth1"; 70 + subnet = "2001:DB8::/32"; 71 pd-pools = [ { 72 + prefix = "2001:DB8:1000::"; 73 prefix-len = 36; 74 delegated-len = 48; 75 } ]; 76 pools = [ { 77 + pool = "2001:DB8:0000:0000::-2001:DB8:0FFF:FFFF::FFFF"; 78 } ]; 79 } ]; 80
+1 -1
pkgs/applications/accessibility/dasher/default.nix
··· 64 homepage = "https://www.inference.org.uk/dasher/"; 65 description = "Information-efficient text-entry interface, driven by natural continuous pointing gestures"; 66 license = lib.licenses.gpl2Only; 67 - maintainers = [ lib.maintainers.Profpatsch ]; 68 platforms = lib.platforms.all; 69 }; 70 }
··· 64 homepage = "https://www.inference.org.uk/dasher/"; 65 description = "Information-efficient text-entry interface, driven by natural continuous pointing gestures"; 66 license = lib.licenses.gpl2Only; 67 + maintainers = [ ]; 68 platforms = lib.platforms.all; 69 }; 70 }
+3 -3
pkgs/applications/editors/vscode/extensions/default.nix
··· 372 mktplcRef = { 373 name = "Millet"; 374 publisher = "azdavis"; 375 - version = "0.3.5"; 376 - sha256 = "sha256-lQ7EMs6nsTEgP9BESMpyoZG7QVOe7DXzfg/iZr1+DCQ="; 377 }; 378 nativeBuildInputs = [ jq moreutils ]; 379 postInstall = '' 380 cd "$out/$installPrefix" 381 - jq '.contributes.configuration.properties."millet.server.path".default = "${millet}/bin/lang-srv"' package.json | sponge package.json 382 ''; 383 meta = { 384 description = "Standard ML support for VS Code";
··· 372 mktplcRef = { 373 name = "Millet"; 374 publisher = "azdavis"; 375 + version = "0.12.5"; 376 + sha256 = "sha256-gJIxCdoxWGThalY+qJ930UtRLFkvr34LfaSioAZH9TQ="; 377 }; 378 nativeBuildInputs = [ jq moreutils ]; 379 postInstall = '' 380 cd "$out/$installPrefix" 381 + jq '.contributes.configuration.properties."millet.server.path".default = "${millet}/bin/millet-ls"' package.json | sponge package.json 382 ''; 383 meta = { 384 description = "Standard ML support for VS Code";
+8 -8
pkgs/applications/editors/vscode/vscode.nix
··· 24 archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz"; 25 26 sha256 = { 27 - x86_64-linux = "0ykchyksfc7aqar2f691jva36v0syn575rj6hydws0y79pplvinh"; 28 - x86_64-darwin = "1zayc6z4zfkjb238dx51b1f2s9clqzhxhvb91j5w0ayqk735bd5d"; 29 - aarch64-linux = "1nbnprf6sjqqrw7qha0r6f78n7jjvhn8kv1wxh5pi535nlmxza14"; 30 - aarch64-darwin = "0lijfhlbj0vsjd6kdfr0fmks2spjazrzwnlxxw0ka80psxghavs6"; 31 - armv7l-linux = "0dhgb1lxq8r4fk6nkb14h986w3dj19llvjvn8jq4mxdbscnik2j5"; 32 }.${system} or throwSystem; 33 in 34 callPackage ./generic.nix rec { 35 # Please backport all compatible updates to the stable release. 36 # This is important for the extension ecosystem. 37 - version = "1.79.2"; 38 pname = "vscode"; 39 40 # This is used for VS Code - Remote SSH test 41 - rev = "695af097c7bd098fbf017ce3ac85e09bbc5dda06"; 42 43 executableName = "code" + lib.optionalString isInsiders "-insiders"; 44 longName = "Visual Studio Code" + lib.optionalString isInsiders " - Insiders"; ··· 62 src = fetchurl { 63 name = "vscode-server-${rev}.tar.gz"; 64 url = "https://update.code.visualstudio.com/commit:${rev}/server-linux-x64/stable"; 65 - sha256 = "0xbc20vh6rj2g6wvw73k8wqm1lxwirph3swwilq5f9hmkzha1z7i"; 66 }; 67 }; 68
··· 24 archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz"; 25 26 sha256 = { 27 + x86_64-linux = "09prf6sv0znsrmysflbsa8f9gsdjxjscl5jmwz1b7gx06ambkx40"; 28 + x86_64-darwin = "1xgxf5drrc8dhl3hjp7xia0ccb5244avr1ckmqkxdcxy70h1s4ki"; 29 + aarch64-linux = "0fjhw903kyx38v22fr253cx9xqwbgak7ksxsp30ngyzh5zpp8854"; 30 + aarch64-darwin = "0klbmgjy3bwjb8svggd5j0mlxp3ni711jp2bnh35n64z8ai29rqk"; 31 + armv7l-linux = "03im7n827fmdm6g5x7n63fiac9g9p3rrwbj2na0ljyn5072mmh6d"; 32 }.${system} or throwSystem; 33 in 34 callPackage ./generic.nix rec { 35 # Please backport all compatible updates to the stable release. 36 # This is important for the extension ecosystem. 37 + version = "1.80.0"; 38 pname = "vscode"; 39 40 # This is used for VS Code - Remote SSH test 41 + rev = "660393deaaa6d1996740ff4880f1bad43768c814"; 42 43 executableName = "code" + lib.optionalString isInsiders "-insiders"; 44 longName = "Visual Studio Code" + lib.optionalString isInsiders " - Insiders"; ··· 62 src = fetchurl { 63 name = "vscode-server-${rev}.tar.gz"; 64 url = "https://update.code.visualstudio.com/commit:${rev}/server-linux-x64/stable"; 65 + sha256 = "1pkpfsrd686whl9zghxxyiw3x696msh24cf67h2k9yp1d4a9cdz8"; 66 }; 67 }; 68
+38
pkgs/applications/graphics/xv/default.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + cmake, 6 + xorg, 7 + libpng, 8 + libwebp, 9 + libtiff, 10 + libjpeg, 11 + jasper, 12 + }: 13 + 14 + stdenv.mkDerivation rec { 15 + pname = "xv"; 16 + version = "4.1.1"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "jasper-software"; 20 + repo = "xv"; 21 + rev = "v${version}"; 22 + sha256 = "vwSUKWr4Hffx04ATUI58m7UOS/lVTnIVDC3ZTWRwJMM="; 23 + }; 24 + 25 + nativeBuildInputs = [ cmake ]; 26 + buildInputs = [ xorg.libX11 xorg.libXt libpng libwebp libtiff jasper ]; 27 + 28 + meta = { 29 + description = "Classic image viewer and editor for X."; 30 + homepage = "http://www.trilon.com/xv/"; 31 + license = { 32 + fullName = "XV License"; 33 + url = "https://github.com/jasper-software/xv/blob/main/src/README"; 34 + free = false; 35 + }; 36 + maintainers = with lib.maintainers; [ galen ]; 37 + }; 38 + }
+1 -1
pkgs/applications/networking/feedreaders/rss2email/default.nix
··· 42 description = "A tool that converts RSS/Atom newsfeeds to email"; 43 homepage = "https://pypi.python.org/pypi/rss2email"; 44 license = licenses.gpl2; 45 - maintainers = with maintainers; [ Profpatsch ekleog ]; 46 }; 47 passthru.tests = { 48 smoke-test = nixosTests.rss2email;
··· 42 description = "A tool that converts RSS/Atom newsfeeds to email"; 43 homepage = "https://pypi.python.org/pypi/rss2email"; 44 license = licenses.gpl2; 45 + maintainers = with maintainers; [ ekleog ]; 46 }; 47 passthru.tests = { 48 smoke-test = nixosTests.rss2email;
+1 -1
pkgs/applications/version-management/git-vendor/default.nix
··· 59 ''; 60 homepage = "https://github.com/brettlangdon/git-vendor"; 61 license = lib.licenses.mit; 62 - maintainers = [ lib.maintainers.Profpatsch ]; 63 platforms = lib.platforms.all; 64 }; 65
··· 59 ''; 60 homepage = "https://github.com/brettlangdon/git-vendor"; 61 license = lib.licenses.mit; 62 + maintainers = [ ]; 63 platforms = lib.platforms.all; 64 }; 65
+1 -1
pkgs/applications/version-management/gitlab/default.nix
··· 211 meta = with lib; { 212 homepage = "http://www.gitlab.com/"; 213 platforms = platforms.linux; 214 - maintainers = with maintainers; [ globin krav talyz yayayayaka yuka ]; 215 } // (if gitlabEnterprise then 216 { 217 license = licenses.unfreeRedistributable; # https://gitlab.com/gitlab-org/gitlab-ee/raw/master/LICENSE
··· 211 meta = with lib; { 212 homepage = "http://www.gitlab.com/"; 213 platforms = platforms.linux; 214 + maintainers = teams.gitlab.members; 215 } // (if gitlabEnterprise then 216 { 217 license = licenses.unfreeRedistributable; # https://gitlab.com/gitlab-org/gitlab-ee/raw/master/LICENSE
+1 -1
pkgs/applications/version-management/gitlab/gitaly/default.nix
··· 61 homepage = "https://gitlab.com/gitlab-org/gitaly"; 62 description = "A Git RPC service for handling all the git calls made by GitLab"; 63 platforms = platforms.linux ++ [ "x86_64-darwin" ]; 64 - maintainers = with maintainers; [ roblabla globin talyz yayayayaka ]; 65 license = licenses.mit; 66 }; 67 } // commonOpts)
··· 61 homepage = "https://gitlab.com/gitlab-org/gitaly"; 62 description = "A Git RPC service for handling all the git calls made by GitLab"; 63 platforms = platforms.linux ++ [ "x86_64-darwin" ]; 64 + maintainers = teams.gitlab.members; 65 license = licenses.mit; 66 }; 67 } // commonOpts)
+1 -1
pkgs/applications/version-management/gitlab/gitlab-pages/default.nix
··· 19 homepage = "https://gitlab.com/gitlab-org/gitlab-pages"; 20 changelog = "https://gitlab.com/gitlab-org/gitlab-pages/-/blob/v${version}/CHANGELOG.md"; 21 license = licenses.mit; 22 - maintainers = with maintainers; [ ajs124 das_j ]; 23 }; 24 }
··· 19 homepage = "https://gitlab.com/gitlab-org/gitlab-pages"; 20 changelog = "https://gitlab.com/gitlab-org/gitlab-pages/-/blob/v${version}/CHANGELOG.md"; 21 license = licenses.mit; 22 + maintainers = with maintainers; [ ajs124 das_j ] ++ teams.gitlab.members; 23 }; 24 }
+1 -1
pkgs/applications/version-management/gitlab/gitlab-shell/default.nix
··· 26 description = "SSH access and repository management app for GitLab"; 27 homepage = "http://www.gitlab.com/"; 28 platforms = platforms.linux; 29 - maintainers = with maintainers; [ globin talyz yayayayaka ]; 30 license = licenses.mit; 31 }; 32 }
··· 26 description = "SSH access and repository management app for GitLab"; 27 homepage = "http://www.gitlab.com/"; 28 platforms = platforms.linux; 29 + maintainers = teams.gitlab.members; 30 license = licenses.mit; 31 }; 32 }
+1 -1
pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix
··· 24 meta = with lib; { 25 homepage = "http://www.gitlab.com/"; 26 platforms = platforms.linux; 27 - maintainers = with maintainers; [ globin talyz yayayayaka ]; 28 license = licenses.mit; 29 }; 30 }
··· 24 meta = with lib; { 25 homepage = "http://www.gitlab.com/"; 26 platforms = platforms.linux; 27 + maintainers = teams.gitlab.members; 28 license = licenses.mit; 29 }; 30 }
+1 -1
pkgs/data/fonts/fira-code/symbols.nix
··· 25 See https://github.com/tonsky/FiraCode/issues/211. 26 ''; 27 license = licenses.ofl; 28 - maintainers = [ maintainers.Profpatsch ]; 29 homepage = "https://github.com/tonsky/FiraCode/issues/211#issuecomment-239058632"; 30 }; 31 }
··· 25 See https://github.com/tonsky/FiraCode/issues/211. 26 ''; 27 license = licenses.ofl; 28 + maintainers = [ ]; 29 homepage = "https://github.com/tonsky/FiraCode/issues/211#issuecomment-239058632"; 30 }; 31 }
+1 -1
pkgs/data/fonts/hasklig/default.nix
··· 23 description = "A font with ligatures for Haskell code based off Source Code Pro"; 24 license = licenses.ofl; 25 platforms = platforms.all; 26 - maintainers = with maintainers; [ davidrusu Profpatsch ]; 27 }; 28 }
··· 23 description = "A font with ligatures for Haskell code based off Source Code Pro"; 24 license = licenses.ofl; 25 platforms = platforms.all; 26 + maintainers = with maintainers; [ davidrusu ]; 27 }; 28 }
+1 -1
pkgs/data/fonts/league-of-moveable-type/default.nix
··· 57 license = lib.licenses.ofl; 58 59 platforms = lib.platforms.all; 60 - maintainers = with lib.maintainers; [ bergey minijackson Profpatsch ]; 61 }; 62 }
··· 57 license = lib.licenses.ofl; 58 59 platforms = lib.platforms.all; 60 + maintainers = with lib.maintainers; [ bergey minijackson ]; 61 }; 62 }
+1 -1
pkgs/data/fonts/raleway/default.nix
··· 35 ''; 36 homepage = "https://www.theleagueofmoveabletype.com/raleway"; 37 license = lib.licenses.ofl; 38 - maintainers = with lib.maintainers; [ minijackson Profpatsch ]; 39 }; 40 })
··· 35 ''; 36 homepage = "https://www.theleagueofmoveabletype.com/raleway"; 37 license = lib.licenses.ofl; 38 + maintainers = with lib.maintainers; [ minijackson ]; 39 }; 40 })
+1 -1
pkgs/desktops/gnome/extensions/paperwm/default.nix
··· 12 owner = "paperwm"; 13 repo = "PaperWM"; 14 rev = "v${finalAttrs.version}"; 15 - hash = "sha256-QTeUbhqHi1fMhw5cgT5S6JGgDaPhBuMwn4nRcp7mSMU="; 16 }; 17 18 dontConfigure = true;
··· 12 owner = "paperwm"; 13 repo = "PaperWM"; 14 rev = "v${finalAttrs.version}"; 15 + hash = "sha256-oGBnQGtx2ku4cfgZkZ3OdHlVuiYR8hy1eYDWDZP3fn4="; 16 }; 17 18 dontConfigure = true;
+1 -1
pkgs/development/compilers/purescript/psc-package/default.nix
··· 53 meta = with lib; { 54 description = "A package manager for PureScript based on package sets"; 55 license = licenses.bsd3; 56 - maintainers = with maintainers; [ Profpatsch ]; 57 platforms = [ "x86_64-darwin" "x86_64-linux" ]; 58 }; 59 }
··· 53 meta = with lib; { 54 description = "A package manager for PureScript based on package sets"; 55 license = licenses.bsd3; 56 + maintainers = with maintainers; [ ]; 57 platforms = [ "x86_64-darwin" "x86_64-linux" ]; 58 }; 59 }
+1 -1
pkgs/development/libraries/bearssl/default.nix
··· 56 ''; 57 license = lib.licenses.mit; 58 platforms = lib.platforms.all; 59 - maintainers = [ lib.maintainers.Profpatsch ]; 60 }; 61 62 }
··· 56 ''; 57 license = lib.licenses.mit; 58 platforms = lib.platforms.all; 59 + maintainers = [ ]; 60 }; 61 62 }
+1 -1
pkgs/development/mobile/adbfs-rootless/default.nix
··· 37 description = "Mount Android phones on Linux with adb, no root required"; 38 inherit (src.meta) homepage; 39 license = licenses.bsd3; 40 - maintainers = with maintainers; [ Profpatsch aleksana ]; 41 platforms = platforms.unix; 42 }; 43 }
··· 37 description = "Mount Android phones on Linux with adb, no root required"; 38 inherit (src.meta) homepage; 39 license = licenses.bsd3; 40 + maintainers = with maintainers; [ aleksana ]; 41 platforms = platforms.unix; 42 }; 43 }
+10 -9
pkgs/development/python-modules/in-n-out/default.nix
··· 6 , pytestCheckHook 7 , pythonAtLeast 8 , pythonOlder 9 - , setuptools 10 - , setuptools-scm 11 , toolz 12 }: 13 14 buildPythonPackage rec { 15 pname = "in-n-out"; 16 - version = "0.1.7"; 17 - format = "setuptools"; 18 19 disabled = pythonOlder "3.8"; 20 21 src = fetchPypi { 22 - inherit pname version; 23 - hash = "sha256-g4Dw0ejB6BxcMpRZGgxNDeAyuY93UROVsIrAwv6vSqY="; 24 }; 25 26 nativeBuildInputs = [ 27 cython_3 28 - setuptools 29 - setuptools-scm 30 ]; 31 32 propagatedBuildInputs = [ ··· 52 53 meta = with lib; { 54 description = "Module for dependency injection and result processing"; 55 - homepage = "https://app-model.readthedocs.io/"; 56 changelog = "https://github.com/pyapp-kit/in-n-out/blob/v${version}/CHANGELOG.md"; 57 license = licenses.bsd3; 58 maintainers = with maintainers; [ fab ];
··· 6 , pytestCheckHook 7 , pythonAtLeast 8 , pythonOlder 9 + , hatchling 10 + , hatch-vcs 11 , toolz 12 }: 13 14 buildPythonPackage rec { 15 pname = "in-n-out"; 16 + version = "0.1.8"; 17 + format = "pyproject"; 18 19 disabled = pythonOlder "3.8"; 20 21 src = fetchPypi { 22 + pname = "in_n_out"; 23 + inherit version; 24 + hash = "sha256-gWKvh4fmgutLNtBH+RQZnYDxEk46QUIM1T3mgOfQolQ="; 25 }; 26 27 nativeBuildInputs = [ 28 cython_3 29 + hatchling 30 + hatch-vcs 31 ]; 32 33 propagatedBuildInputs = [ ··· 53 54 meta = with lib; { 55 description = "Module for dependency injection and result processing"; 56 + homepage = "https://github.com/pyapp-kit/in-n-out"; 57 changelog = "https://github.com/pyapp-kit/in-n-out/blob/v${version}/CHANGELOG.md"; 58 license = licenses.bsd3; 59 maintainers = with maintainers; [ fab ];
+2 -2
pkgs/development/python-modules/trimesh/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "trimesh"; 11 - version = "3.22.2"; 12 format = "pyproject"; 13 14 src = fetchPypi { 15 inherit pname version; 16 - hash = "sha256-YT9Ponvz19SqHAJUO9/KSaBPQrW2W++MRNgF/8L0OPc="; 17 }; 18 19 nativeBuildInputs = [ setuptools ];
··· 8 9 buildPythonPackage rec { 10 pname = "trimesh"; 11 + version = "3.22.3"; 12 format = "pyproject"; 13 14 src = fetchPypi { 15 inherit pname version; 16 + hash = "sha256-PrXqBYOEFCXIZsihhImh1swbGFRCoyTGl82dkfBE7aU="; 17 }; 18 19 nativeBuildInputs = [ setuptools ];
+1 -1
pkgs/development/tools/buildah/default.nix
··· 69 homepage = "https://buildah.io/"; 70 changelog = "https://github.com/containers/buildah/releases/tag/v${version}"; 71 license = licenses.asl20; 72 - maintainers = with maintainers; [ Profpatsch ] ++ teams.podman.members; 73 }; 74 }
··· 69 homepage = "https://buildah.io/"; 70 changelog = "https://github.com/containers/buildah/releases/tag/v${version}"; 71 license = licenses.asl20; 72 + maintainers = with maintainers; [ ] ++ teams.podman.members; 73 }; 74 }
+1 -1
pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
··· 69 license = licenses.mit; 70 homepage = "https://about.gitlab.com/gitlab-ci/"; 71 platforms = platforms.unix ++ platforms.darwin; 72 - maintainers = with maintainers; [ bachp zimbatm globin yayayayaka ]; 73 }; 74 }
··· 69 license = licenses.mit; 70 homepage = "https://about.gitlab.com/gitlab-ci/"; 71 platforms = platforms.unix ++ platforms.darwin; 72 + maintainers = with maintainers; [ bachp zimbatm globin ] ++ teams.gitlab.members; 73 }; 74 }
+36 -36
pkgs/development/tools/language-servers/millet/Cargo.lock
··· 28 29 [[package]] 30 name = "analysis" 31 - version = "0.12.4" 32 dependencies = [ 33 "config", 34 "diagnostic", ··· 108 109 [[package]] 110 name = "chain-map" 111 - version = "0.12.4" 112 dependencies = [ 113 "fast-hash", 114 "str-util", ··· 121 122 [[package]] 123 name = "cm-syntax" 124 - version = "0.12.4" 125 dependencies = [ 126 "lex-util", 127 "paths", ··· 150 151 [[package]] 152 name = "config" 153 - version = "0.12.4" 154 dependencies = [ 155 "fast-hash", 156 "serde", ··· 178 179 [[package]] 180 name = "cov-mark" 181 - version = "0.12.4" 182 dependencies = [ 183 "fast-hash", 184 "once_cell", ··· 415 416 [[package]] 417 name = "input" 418 - version = "0.12.4" 419 dependencies = [ 420 "cm-syntax", 421 "config", ··· 475 476 [[package]] 477 name = "lang-srv" 478 - version = "0.12.4" 479 dependencies = [ 480 "analysis", 481 "anyhow", ··· 503 504 [[package]] 505 name = "lex-util" 506 - version = "0.12.4" 507 508 [[package]] 509 name = "libc" ··· 575 576 [[package]] 577 name = "millet-cli" 578 - version = "0.12.4" 579 dependencies = [ 580 "analysis", 581 "codespan-reporting", ··· 593 594 [[package]] 595 name = "millet-ls" 596 - version = "0.12.4" 597 dependencies = [ 598 "anyhow", 599 "env_logger", ··· 622 623 [[package]] 624 name = "mlb-hir" 625 - version = "0.12.4" 626 dependencies = [ 627 "fast-hash", 628 "paths", ··· 633 634 [[package]] 635 name = "mlb-statics" 636 - version = "0.12.4" 637 dependencies = [ 638 "config", 639 "diagnostic", ··· 657 658 [[package]] 659 name = "mlb-syntax" 660 - version = "0.12.4" 661 dependencies = [ 662 "lex-util", 663 "paths", ··· 729 730 [[package]] 731 name = "panic-hook" 732 - version = "0.12.4" 733 dependencies = [ 734 "better-panic", 735 ] ··· 923 924 [[package]] 925 name = "slash-var-path" 926 - version = "0.12.4" 927 dependencies = [ 928 "fast-hash", 929 "str-util", ··· 931 932 [[package]] 933 name = "sml-comment" 934 - version = "0.12.4" 935 dependencies = [ 936 "sml-syntax", 937 ] 938 939 [[package]] 940 name = "sml-dynamics" 941 - version = "0.12.4" 942 dependencies = [ 943 "fast-hash", 944 "fmt-util", ··· 949 950 [[package]] 951 name = "sml-dynamics-tests" 952 - version = "0.12.4" 953 dependencies = [ 954 "config", 955 "pretty_assertions", ··· 965 966 [[package]] 967 name = "sml-file-syntax" 968 - version = "0.12.4" 969 dependencies = [ 970 "config", 971 "elapsed", ··· 979 980 [[package]] 981 name = "sml-fixity" 982 - version = "0.12.4" 983 dependencies = [ 984 "fast-hash", 985 "once_cell", ··· 988 989 [[package]] 990 name = "sml-hir" 991 - version = "0.12.4" 992 dependencies = [ 993 "la-arena", 994 "sml-lab", ··· 999 1000 [[package]] 1001 name = "sml-hir-lower" 1002 - version = "0.12.4" 1003 dependencies = [ 1004 "config", 1005 "cov-mark", ··· 1014 1015 [[package]] 1016 name = "sml-lab" 1017 - version = "0.12.4" 1018 dependencies = [ 1019 "str-util", 1020 ] 1021 1022 [[package]] 1023 name = "sml-lex" 1024 - version = "0.12.4" 1025 dependencies = [ 1026 "cov-mark", 1027 "diagnostic", ··· 1036 1037 [[package]] 1038 name = "sml-naive-fmt" 1039 - version = "0.12.4" 1040 dependencies = [ 1041 "fast-hash", 1042 "sml-comment", ··· 1045 1046 [[package]] 1047 name = "sml-namespace" 1048 - version = "0.12.4" 1049 1050 [[package]] 1051 name = "sml-parse" 1052 - version = "0.12.4" 1053 dependencies = [ 1054 "diagnostic", 1055 "event-parse", ··· 1061 1062 [[package]] 1063 name = "sml-path" 1064 - version = "0.12.4" 1065 dependencies = [ 1066 "str-util", 1067 ] 1068 1069 [[package]] 1070 name = "sml-scon" 1071 - version = "0.12.4" 1072 dependencies = [ 1073 "num-bigint", 1074 "num-traits", ··· 1077 1078 [[package]] 1079 name = "sml-statics" 1080 - version = "0.12.4" 1081 dependencies = [ 1082 "chain-map", 1083 "config", ··· 1100 1101 [[package]] 1102 name = "sml-statics-types" 1103 - version = "0.12.4" 1104 dependencies = [ 1105 "chain-map", 1106 "code-h2-md-map", ··· 1119 1120 [[package]] 1121 name = "sml-symbol-kind" 1122 - version = "0.12.4" 1123 dependencies = [ 1124 "sml-namespace", 1125 "sml-statics-types", ··· 1127 1128 [[package]] 1129 name = "sml-syntax" 1130 - version = "0.12.4" 1131 dependencies = [ 1132 "char-name", 1133 "code-h2-md-map", ··· 1140 1141 [[package]] 1142 name = "sml-ty-var-scope" 1143 - version = "0.12.4" 1144 dependencies = [ 1145 "fast-hash", 1146 "sml-hir", ··· 1208 1209 [[package]] 1210 name = "tests" 1211 - version = "0.12.4" 1212 dependencies = [ 1213 "analysis", 1214 "cm-syntax", ··· 1552 1553 [[package]] 1554 name = "xtask" 1555 - version = "0.12.4" 1556 dependencies = [ 1557 "anyhow", 1558 "flate2",
··· 28 29 [[package]] 30 name = "analysis" 31 + version = "0.12.5" 32 dependencies = [ 33 "config", 34 "diagnostic", ··· 108 109 [[package]] 110 name = "chain-map" 111 + version = "0.12.5" 112 dependencies = [ 113 "fast-hash", 114 "str-util", ··· 121 122 [[package]] 123 name = "cm-syntax" 124 + version = "0.12.5" 125 dependencies = [ 126 "lex-util", 127 "paths", ··· 150 151 [[package]] 152 name = "config" 153 + version = "0.12.5" 154 dependencies = [ 155 "fast-hash", 156 "serde", ··· 178 179 [[package]] 180 name = "cov-mark" 181 + version = "0.12.5" 182 dependencies = [ 183 "fast-hash", 184 "once_cell", ··· 415 416 [[package]] 417 name = "input" 418 + version = "0.12.5" 419 dependencies = [ 420 "cm-syntax", 421 "config", ··· 475 476 [[package]] 477 name = "lang-srv" 478 + version = "0.12.5" 479 dependencies = [ 480 "analysis", 481 "anyhow", ··· 503 504 [[package]] 505 name = "lex-util" 506 + version = "0.12.5" 507 508 [[package]] 509 name = "libc" ··· 575 576 [[package]] 577 name = "millet-cli" 578 + version = "0.12.5" 579 dependencies = [ 580 "analysis", 581 "codespan-reporting", ··· 593 594 [[package]] 595 name = "millet-ls" 596 + version = "0.12.5" 597 dependencies = [ 598 "anyhow", 599 "env_logger", ··· 622 623 [[package]] 624 name = "mlb-hir" 625 + version = "0.12.5" 626 dependencies = [ 627 "fast-hash", 628 "paths", ··· 633 634 [[package]] 635 name = "mlb-statics" 636 + version = "0.12.5" 637 dependencies = [ 638 "config", 639 "diagnostic", ··· 657 658 [[package]] 659 name = "mlb-syntax" 660 + version = "0.12.5" 661 dependencies = [ 662 "lex-util", 663 "paths", ··· 729 730 [[package]] 731 name = "panic-hook" 732 + version = "0.12.5" 733 dependencies = [ 734 "better-panic", 735 ] ··· 923 924 [[package]] 925 name = "slash-var-path" 926 + version = "0.12.5" 927 dependencies = [ 928 "fast-hash", 929 "str-util", ··· 931 932 [[package]] 933 name = "sml-comment" 934 + version = "0.12.5" 935 dependencies = [ 936 "sml-syntax", 937 ] 938 939 [[package]] 940 name = "sml-dynamics" 941 + version = "0.12.5" 942 dependencies = [ 943 "fast-hash", 944 "fmt-util", ··· 949 950 [[package]] 951 name = "sml-dynamics-tests" 952 + version = "0.12.5" 953 dependencies = [ 954 "config", 955 "pretty_assertions", ··· 965 966 [[package]] 967 name = "sml-file-syntax" 968 + version = "0.12.5" 969 dependencies = [ 970 "config", 971 "elapsed", ··· 979 980 [[package]] 981 name = "sml-fixity" 982 + version = "0.12.5" 983 dependencies = [ 984 "fast-hash", 985 "once_cell", ··· 988 989 [[package]] 990 name = "sml-hir" 991 + version = "0.12.5" 992 dependencies = [ 993 "la-arena", 994 "sml-lab", ··· 999 1000 [[package]] 1001 name = "sml-hir-lower" 1002 + version = "0.12.5" 1003 dependencies = [ 1004 "config", 1005 "cov-mark", ··· 1014 1015 [[package]] 1016 name = "sml-lab" 1017 + version = "0.12.5" 1018 dependencies = [ 1019 "str-util", 1020 ] 1021 1022 [[package]] 1023 name = "sml-lex" 1024 + version = "0.12.5" 1025 dependencies = [ 1026 "cov-mark", 1027 "diagnostic", ··· 1036 1037 [[package]] 1038 name = "sml-naive-fmt" 1039 + version = "0.12.5" 1040 dependencies = [ 1041 "fast-hash", 1042 "sml-comment", ··· 1045 1046 [[package]] 1047 name = "sml-namespace" 1048 + version = "0.12.5" 1049 1050 [[package]] 1051 name = "sml-parse" 1052 + version = "0.12.5" 1053 dependencies = [ 1054 "diagnostic", 1055 "event-parse", ··· 1061 1062 [[package]] 1063 name = "sml-path" 1064 + version = "0.12.5" 1065 dependencies = [ 1066 "str-util", 1067 ] 1068 1069 [[package]] 1070 name = "sml-scon" 1071 + version = "0.12.5" 1072 dependencies = [ 1073 "num-bigint", 1074 "num-traits", ··· 1077 1078 [[package]] 1079 name = "sml-statics" 1080 + version = "0.12.5" 1081 dependencies = [ 1082 "chain-map", 1083 "config", ··· 1100 1101 [[package]] 1102 name = "sml-statics-types" 1103 + version = "0.12.5" 1104 dependencies = [ 1105 "chain-map", 1106 "code-h2-md-map", ··· 1119 1120 [[package]] 1121 name = "sml-symbol-kind" 1122 + version = "0.12.5" 1123 dependencies = [ 1124 "sml-namespace", 1125 "sml-statics-types", ··· 1127 1128 [[package]] 1129 name = "sml-syntax" 1130 + version = "0.12.5" 1131 dependencies = [ 1132 "char-name", 1133 "code-h2-md-map", ··· 1140 1141 [[package]] 1142 name = "sml-ty-var-scope" 1143 + version = "0.12.5" 1144 dependencies = [ 1145 "fast-hash", 1146 "sml-hir", ··· 1208 1209 [[package]] 1210 name = "tests" 1211 + version = "0.12.5" 1212 dependencies = [ 1213 "analysis", 1214 "cm-syntax", ··· 1552 1553 [[package]] 1554 name = "xtask" 1555 + version = "0.12.5" 1556 dependencies = [ 1557 "anyhow", 1558 "flate2",
+2 -2
pkgs/development/tools/language-servers/millet/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "millet"; 5 - version = "0.12.4"; 6 7 src = fetchFromGitHub { 8 owner = "azdavis"; 9 repo = pname; 10 rev = "v${version}"; 11 - hash = "sha256-RSi6rJL0RG1A1mKn4BznQjBfPlBvEC73vx0YevqvZ3E="; 12 }; 13 14 cargoLock = {
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "millet"; 5 + version = "0.12.5"; 6 7 src = fetchFromGitHub { 8 owner = "azdavis"; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-sG4mowQMBiFAgTO1Rf+NCD2/GRgaqmmEQ1oSxn3hGTM="; 12 }; 13 14 cargoLock = {
+23
pkgs/development/tools/misc/regex-cli/default.nix
···
··· 1 + { lib 2 + , rustPlatform 3 + , fetchCrate 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "regex-cli"; 8 + version = "0.1.0"; 9 + 10 + src = fetchCrate { 11 + inherit pname version; 12 + hash = "sha256-4l12Eaab1G3SP3Srxt3UR9MCRlLm0KDPx/Z2rQpSQR0="; 13 + }; 14 + 15 + cargoHash = "sha256-fAIYWzfzq/VuBc684SG7p365uudX9M/TtVdMahyrmdk="; 16 + 17 + meta = with lib; { 18 + description = "A command line tool for debugging, ad hoc benchmarking and generating regular expressions"; 19 + homepage = "https://github.com/rust-lang/regex/tree/master/regex-cli"; 20 + license = with licenses; [ asl20 mit ]; 21 + maintainers = with maintainers; [ figsoda ]; 22 + }; 23 + }
+37
pkgs/development/tools/misc/wasmer-pack/default.nix
···
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , stdenv 5 + , darwin 6 + }: 7 + 8 + rustPlatform.buildRustPackage rec { 9 + pname = "wasmer-pack"; 10 + version = "0.7.1"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "wasmerio"; 14 + repo = "wasmer-pack"; 15 + rev = "v${version}"; 16 + hash = "sha256-+wqgYkdkuhPFkJBdQLnUKAGmUfGBU9mBfMRNBFmiT4E="; 17 + }; 18 + 19 + cargoHash = "sha256-nyhjwEZyT8IEb0pTbou/EtN47gehge3fUCQVPs2TkIY="; 20 + 21 + buildInputs = lib.optionals stdenv.isDarwin [ 22 + darwin.apple_sdk.frameworks.Security 23 + ]; 24 + 25 + cargoBuildFlags = [ "-p=wasmer-pack-cli" ]; 26 + 27 + # requires internet access 28 + doCheck = false; 29 + 30 + meta = with lib; { 31 + description = "Import your WebAssembly code just like any other dependency"; 32 + homepage = "https://github.com/wasmerio/wasmer-pack"; 33 + changelog = "https://github.com/wasmerio/wasmer-pack/blob/${src.rev}/CHANGELOG.md"; 34 + license = licenses.mit; 35 + maintainers = with maintainers; [ figsoda ]; 36 + }; 37 + }
+1 -1
pkgs/development/tools/parsing/tree-sitter/default.nix
··· 163 * Dependency-free so that the runtime library (which is written in pure C) can be embedded in any application 164 ''; 165 license = licenses.mit; 166 - maintainers = with maintainers; [ Profpatsch oxalica ]; 167 }; 168 }
··· 163 * Dependency-free so that the runtime library (which is written in pure C) can be embedded in any application 164 ''; 165 license = licenses.mit; 166 + maintainers = with maintainers; [ oxalica Profpatsch ]; 167 }; 168 }
+26
pkgs/development/tools/rust/cargo-cranky/default.nix
···
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "cargo-cranky"; 8 + version = "0.3.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "ericseppanen"; 12 + repo = "cargo-cranky"; 13 + rev = "v${version}"; 14 + hash = "sha256-3ARl3z+2nz05UaKf8ChN6mvPY2qMjUNxGnGJ1P0xkas="; 15 + }; 16 + 17 + cargoHash = "sha256-jmyrtaJTdZlffC7i5k7z9BEsHAs1rPTCs2/jgq1Jt6Y="; 18 + 19 + meta = with lib; { 20 + description = "An easy to configure wrapper for Rust's clippy"; 21 + homepage = "https://github.com/ericseppanen/cargo-cranky"; 22 + changelog = "https://github.com/ericseppanen/cargo-cranky/releases/tag/${src.rev}"; 23 + license = with licenses; [ asl20 mit ]; 24 + maintainers = with maintainers; [ figsoda ]; 25 + }; 26 + }
+1 -1
pkgs/development/tools/shellcheck/default.nix
··· 46 47 in 48 overrideMeta shellcheck (old: { 49 - maintainers = with lib.maintainers; [ Profpatsch zowoq ]; 50 outputsToInstall = [ "bin" "man" "doc" ]; 51 })
··· 46 47 in 48 overrideMeta shellcheck (old: { 49 + maintainers = with lib.maintainers; [ zowoq ]; 50 outputsToInstall = [ "bin" "man" "doc" ]; 51 })
+1 -1
pkgs/games/anki/default.nix
··· 277 ''; 278 license = licenses.agpl3Plus; 279 platforms = platforms.mesaPlatforms; 280 - maintainers = with maintainers; [ oxij Profpatsch euank ]; 281 }; 282 }
··· 277 ''; 278 license = licenses.agpl3Plus; 279 platforms = platforms.mesaPlatforms; 280 + maintainers = with maintainers; [ oxij euank ]; 281 }; 282 }
+1 -1
pkgs/games/garden-of-coloured-lights/default.nix
··· 26 meta = with lib; { 27 description = "Old-school vertical shoot-em-up / bullet hell"; 28 homepage = "https://garden.sourceforge.net/drupal/"; 29 - maintainers = with maintainers; [ Profpatsch ]; 30 license = licenses.gpl3; 31 }; 32
··· 26 meta = with lib; { 27 description = "Old-school vertical shoot-em-up / bullet hell"; 28 homepage = "https://garden.sourceforge.net/drupal/"; 29 + maintainers = with maintainers; [ ]; 30 license = licenses.gpl3; 31 }; 32
+1 -1
pkgs/servers/gonic/default.nix
··· 49 homepage = "https://github.com/sentriz/gonic"; 50 description = "Music streaming server / subsonic server API implementation"; 51 license = lib.licenses.gpl3Plus; 52 - maintainers = with lib.maintainers; [ Profpatsch ]; 53 platforms = lib.platforms.linux; 54 }; 55 }
··· 49 homepage = "https://github.com/sentriz/gonic"; 50 description = "Music streaming server / subsonic server API implementation"; 51 license = lib.licenses.gpl3Plus; 52 + maintainers = with lib.maintainers; [ ]; 53 platforms = lib.platforms.linux; 54 }; 55 }
+12 -4
pkgs/servers/mautrix-telegram/default.nix
··· 9 python = python3.override { 10 packageOverrides = self: super: { 11 tulir-telethon = self.telethon.overridePythonAttrs (oldAttrs: rec { 12 - version = "1.28.0a9"; 13 pname = "tulir-telethon"; 14 src = fetchPypi { 15 inherit pname version; 16 - hash = "sha256-7lRoJYhy9c8RxJTW1/7SrNtA36mwIrPcyRMPVNhWJTk="; 17 }; 18 doCheck = false; 19 }); ··· 22 in 23 python.pkgs.buildPythonPackage rec { 24 pname = "mautrix-telegram"; 25 - version = "0.14.0"; 26 disabled = python.pythonOlder "3.8"; 27 28 src = fetchFromGitHub { 29 owner = "mautrix"; 30 repo = "telegram"; 31 rev = "refs/tags/v${version}"; 32 - hash = "sha256-OPWa3jqaLnV7M1Q77N10A3HT65dNon6RWE5mbQRvjEs="; 33 }; 34 35 format = "setuptools";
··· 9 python = python3.override { 10 packageOverrides = self: super: { 11 tulir-telethon = self.telethon.overridePythonAttrs (oldAttrs: rec { 12 + version = "1.29.0a2"; 13 pname = "tulir-telethon"; 14 src = fetchPypi { 15 inherit pname version; 16 + hash = "sha256-pTN8mJxbXvnhL11PCH/ZLeSqW0GV124Y3JnDcLek8JE="; 17 + }; 18 + doCheck = false; 19 + }); 20 + mautrix = super.mautrix.overridePythonAttrs (oldAttrs: rec { 21 + version = "0.20.0"; 22 + src = oldAttrs.src.override { 23 + rev = "refs/tags/v${version}"; 24 + hash = "sha256-op28CGpJBcCBiy0WXboaf4JeNRIMX6653QkAV6XW/yI="; 25 }; 26 doCheck = false; 27 }); ··· 30 in 31 python.pkgs.buildPythonPackage rec { 32 pname = "mautrix-telegram"; 33 + version = "0.14.1"; 34 disabled = python.pythonOlder "3.8"; 35 36 src = fetchFromGitHub { 37 owner = "mautrix"; 38 repo = "telegram"; 39 rev = "refs/tags/v${version}"; 40 + hash = "sha256-n3gO8R5lVl/8Tgo2tPzM64O2BRhoitsuPIC87bfxczc="; 41 }; 42 43 format = "setuptools";
+3 -2
pkgs/tools/networking/kea/default.nix
··· 20 21 stdenv.mkDerivation rec { 22 pname = "kea"; 23 - version = "2.2.0"; # only even minor versions are stable 24 25 src = fetchurl { 26 url = "https://ftp.isc.org/isc/${pname}/${version}/${pname}-${version}.tar.gz"; 27 - sha256 = "sha256-2n2QymKncmAtrG535QcxkDhCKJWtaO6xQvFIfWfVMdI="; 28 }; 29 30 patches = [ ··· 83 }; 84 85 meta = with lib; { 86 homepage = "https://kea.isc.org/"; 87 description = "High-performance, extensible DHCP server by ISC"; 88 longDescription = ''
··· 20 21 stdenv.mkDerivation rec { 22 pname = "kea"; 23 + version = "2.4.0"; # only even minor versions are stable 24 25 src = fetchurl { 26 url = "https://ftp.isc.org/isc/${pname}/${version}/${pname}-${version}.tar.gz"; 27 + hash = "sha256-OjPNCNwzGf9UTmu/LAQpBCEG9AUevhFdwbsmJclQA/c="; 28 }; 29 30 patches = [ ··· 83 }; 84 85 meta = with lib; { 86 + changelog = "https://downloads.isc.org/isc/kea/${version}/Kea-${version}-ReleaseNotes.txt"; 87 homepage = "https://kea.isc.org/"; 88 description = "High-performance, extensible DHCP server by ISC"; 89 longDescription = ''
-1
pkgs/top-level/aliases.nix
··· 1853 ); # Added 2022-08-02 1854 xpraGtk3 = throw "'xpraGtk3' has been renamed to/replaced by 'xpra'"; # Converted to throw 2022-02-22 1855 xtrt = throw "xtrt has been removed due to being abandoned"; # Added 2023-05-25 1856 - xv = xxv; # Added 2020-02-22 1857 xvidcap = throw "'xvidcap' has been removed because of a broken dependency"; # Added 2022-11-08 1858 xvfb_run = xvfb-run; # Added 2021-05-07 1859
··· 1853 ); # Added 2022-08-02 1854 xpraGtk3 = throw "'xpraGtk3' has been renamed to/replaced by 'xpra'"; # Converted to throw 2022-02-22 1855 xtrt = throw "xtrt has been removed due to being abandoned"; # Added 2023-05-25 1856 xvidcap = throw "'xvidcap' has been removed because of a broken dependency"; # Added 2022-11-08 1857 xvfb_run = xvfb-run; # Added 2021-05-07 1858
+7
pkgs/top-level/all-packages.nix
··· 16693 inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration; 16694 }; 16695 cargo-component = callPackage ../development/tools/rust/cargo-component { }; 16696 cargo-criterion = callPackage ../development/tools/rust/cargo-criterion { }; 16697 cargo-cyclonedx = callPackage ../development/tools/rust/cargo-cyclonedx { 16698 inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration CoreFoundation; ··· 19515 regclient = callPackage ../development/tools/regclient { }; 19516 inherit (regclient) regbot regctl regsync; 19517 19518 reno = callPackage ../development/tools/reno { }; 19519 19520 re2c = callPackage ../development/tools/parsing/re2c { }; ··· 19918 vtable-dumper = callPackage ../development/tools/misc/vtable-dumper { }; 19919 19920 wails = callPackage ../development/tools/wails { }; 19921 19922 whatsapp-for-linux = callPackage ../applications/networking/instant-messengers/whatsapp-for-linux { }; 19923 ··· 36139 xnee = callPackage ../tools/X11/xnee { }; 36140 36141 xnotify = callPackage ../tools/X11/xnotify { }; 36142 36143 xygrib = libsForQt5.callPackage ../applications/misc/xygrib { }; 36144
··· 16693 inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration; 16694 }; 16695 cargo-component = callPackage ../development/tools/rust/cargo-component { }; 16696 + cargo-cranky = callPackage ../development/tools/rust/cargo-cranky { }; 16697 cargo-criterion = callPackage ../development/tools/rust/cargo-criterion { }; 16698 cargo-cyclonedx = callPackage ../development/tools/rust/cargo-cyclonedx { 16699 inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration CoreFoundation; ··· 19516 regclient = callPackage ../development/tools/regclient { }; 19517 inherit (regclient) regbot regctl regsync; 19518 19519 + regex-cli = callPackage ../development/tools/misc/regex-cli { }; 19520 + 19521 reno = callPackage ../development/tools/reno { }; 19522 19523 re2c = callPackage ../development/tools/parsing/re2c { }; ··· 19921 vtable-dumper = callPackage ../development/tools/misc/vtable-dumper { }; 19922 19923 wails = callPackage ../development/tools/wails { }; 19924 + 19925 + wasmer-pack = callPackage ../development/tools/misc/wasmer-pack { }; 19926 19927 whatsapp-for-linux = callPackage ../applications/networking/instant-messengers/whatsapp-for-linux { }; 19928 ··· 36144 xnee = callPackage ../tools/X11/xnee { }; 36145 36146 xnotify = callPackage ../tools/X11/xnotify { }; 36147 + 36148 + xv = callPackage ../applications/graphics/xv { }; 36149 36150 xygrib = libsForQt5.callPackage ../applications/misc/xygrib { }; 36151