Merge master into staging-next

authored by github-actions[bot] and committed by GitHub 477cc946 96883629

+1762 -1352
+5 -10
doc/languages-frameworks/coq.section.md
··· 29 * `releaseRev` (optional, defaults to `(v: v)`), provides a default mapping from release names to revision hashes/branch names/tags, 30 * `displayVersion` (optional), provides a way to alter the computation of `name` from `pname`, by explaining how to display version numbers, 31 * `namePrefix` (optional, defaults to `[ "coq" ]`), provides a way to alter the computation of `name` from `pname`, by explaining which dependencies must occur in `name`, 32 - * `nativeBuildInputs` (optional), is a list of executables that are required to build the current derivation, in addition to the default ones (namely `which`, `dune` and `ocaml` depending on whether `useDune2`, `useDune2ifVersion` and `mlPlugin` are set). 33 - * `extraNativeBuildInputs` (optional, deprecated), an additional list of derivation to add to `nativeBuildInputs`, 34 - * `overrideNativeBuildInputs` (optional) replaces the default list of derivation to which `nativeBuildInputs` and `extraNativeBuildInputs` adds extra elements, 35 - * `buildInputs` (optional), is a list of libraries and dependencies that are required to build and run the current derivation, in addition to the default one `[ coq ]`, 36 - * `extraBuildInputs` (optional, deprecated), an additional list of derivation to add to `buildInputs`, 37 - * `overrideBuildInputs` (optional) replaces the default list of derivation to which `buildInputs` and `extraBuildInputs` adds extras elements, 38 - * `propagatedBuildInputs` (optional) is passed as is to `mkDerivation`, we recommend to use this for Coq libraries and Coq plugin dependencies, as this makes sure the paths of the compiled libraries and plugins will always be added to the build environements of subsequent derivation, which is necessary for Coq packages to work correctly, 39 - * `mlPlugin` (optional, defaults to `false`). Some extensions (plugins) might require OCaml and sometimes other OCaml packages. Standard dependencies can be added by setting the current option to `true`. For a finer grain control, the `coq.ocamlPackages` attribute can be used in `nativeBuildInputs`, `buildInputs`, and `propagatedBuildInputs` to depend on the same package set Coq was built against. 40 - * `useDune2ifVersion` (optional, default to `(x: false)` uses Dune2 to build the package if the provided predicate evaluates to true on the version, e.g. `useDune2ifVersion = versions.isGe "1.1"` will use dune if the version of the package is greater or equal to `"1.1"`, 41 * `useDune2` (optional, defaults to `false`) uses Dune2 to build the package if set to true, the presence of this attribute overrides the behavior of the previous one. 42 * `opam-name` (optional, defaults to concatenating with a dash separator the components of `namePrefix` and `pname`), name of the Dune package to build. 43 * `enableParallelBuilding` (optional, defaults to `true`), since it is activated by default, we provide a way to disable it. 44 - * `extraInstallFlags` (optional), allows to extend `installFlags` which initializes the variables `DESTDIR` and `COQMF_COQLIB` so as to install in the proper subdirectory. Indeed Coq libraries should be installed in `$(out)/lib/coq/${coq.coq-version}/user-contrib/`. Such directories are automatically added to the `$COQPATH` environment variable by the hook defined in the Coq derivation. 45 * `setCOQBIN` (optional, defaults to `true`), by default, the environment variable `$COQBIN` is set to the current Coq's binary, but one can disable this behavior by setting it to `false`, 46 * `useMelquiondRemake` (optional, default to `null`) is an attribute set, which, if given, overloads the `preConfigurePhases`, `configureFlags`, `buildPhase`, and `installPhase` attributes of the derivation for a specific use in libraries using `remake` as set up by Guillaume Melquiond for `flocq`, `gappalib`, `interval`, and `coquelicot` (see the corresponding derivation for concrete examples of use of this option). For backward compatibility, the attribute `useMelquiondRemake.logpath` must be set to the logical root of the library (otherwise, one can pass `useMelquiondRemake = {}` to activate this without backward compatibility). 47 * `dropAttrs`, `keepAttrs`, `dropDerivationAttrs` are all optional and allow to tune which attribute is added or removed from the final call to `mkDerivation`.
··· 29 * `releaseRev` (optional, defaults to `(v: v)`), provides a default mapping from release names to revision hashes/branch names/tags, 30 * `displayVersion` (optional), provides a way to alter the computation of `name` from `pname`, by explaining how to display version numbers, 31 * `namePrefix` (optional, defaults to `[ "coq" ]`), provides a way to alter the computation of `name` from `pname`, by explaining which dependencies must occur in `name`, 32 + * `extraNativeBuildInputs` (optional), by default `nativeBuildInputs` just contains `coq`, this allows to add more native build inputs, `nativeBuildInputs` are executables and `buildInputs` are libraries and dependencies, 33 + * `extraBuildInputs` (optional), this allows to add more build inputs, 34 + * `mlPlugin` (optional, defaults to `false`). Some extensions (plugins) might require OCaml and sometimes other OCaml packages. Standard dependencies can be added by setting the current option to `true`. For a finer grain control, the `coq.ocamlPackages` attribute can be used in `extraBuildInputs` to depend on the same package set Coq was built against. 35 + * `useDune2ifVersion` (optional, default to `(x: false)` uses Dune2 to build the package if the provided predicate evaluates to true on the version, e.g. `useDune2if = versions.isGe "1.1"` will use dune if the version of the package is greater or equal to `"1.1"`, 36 * `useDune2` (optional, defaults to `false`) uses Dune2 to build the package if set to true, the presence of this attribute overrides the behavior of the previous one. 37 * `opam-name` (optional, defaults to concatenating with a dash separator the components of `namePrefix` and `pname`), name of the Dune package to build. 38 * `enableParallelBuilding` (optional, defaults to `true`), since it is activated by default, we provide a way to disable it. 39 + * `extraInstallFlags` (optional), allows to extend `installFlags` which initializes the variable `COQMF_COQLIB` so as to install in the proper subdirectory. Indeed Coq libraries should be installed in `$(out)/lib/coq/${coq.coq-version}/user-contrib/`. Such directories are automatically added to the `$COQPATH` environment variable by the hook defined in the Coq derivation. 40 * `setCOQBIN` (optional, defaults to `true`), by default, the environment variable `$COQBIN` is set to the current Coq's binary, but one can disable this behavior by setting it to `false`, 41 * `useMelquiondRemake` (optional, default to `null`) is an attribute set, which, if given, overloads the `preConfigurePhases`, `configureFlags`, `buildPhase`, and `installPhase` attributes of the derivation for a specific use in libraries using `remake` as set up by Guillaume Melquiond for `flocq`, `gappalib`, `interval`, and `coquelicot` (see the corresponding derivation for concrete examples of use of this option). For backward compatibility, the attribute `useMelquiondRemake.logpath` must be set to the logical root of the library (otherwise, one can pass `useMelquiondRemake = {}` to activate this without backward compatibility). 42 * `dropAttrs`, `keepAttrs`, `dropDerivationAttrs` are all optional and allow to tune which attribute is added or removed from the final call to `mkDerivation`.
+1 -1
maintainers/scripts/haskell/hydra-report.hs
··· 1 #! /usr/bin/env nix-shell 2 #! nix-shell -p "haskellPackages.ghcWithPackages (p: [p.aeson p.req])" 3 - #! nix-shell -p hydra-unstable 4 #! nix-shell -i runhaskell 5 6 {-
··· 1 #! /usr/bin/env nix-shell 2 #! nix-shell -p "haskellPackages.ghcWithPackages (p: [p.aeson p.req])" 3 + #! nix-shell -p hydra_unstable 4 #! nix-shell -i runhaskell 5 6 {-
+7 -9
nixos/modules/installer/cd-dvd/iso-image.nix
··· 369 ${lib.optionalString (refindBinary != null) '' 370 # GRUB apparently cannot do "chainloader" operations on "CD". 371 if [ "\$root" != "cd0" ]; then 372 - # Force root to be the FAT partition 373 - # Otherwise it breaks rEFInd's boot 374 - search --set=root --no-floppy --fs-uuid 1234-5678 375 menuentry 'rEFInd' --class refind { 376 chainloader (\$root)/EFI/boot/${refindBinary} 377 } 378 fi ··· 400 # dates (cp -p, touch, mcopy -m, faketime for label), IDs (mkfs.vfat -i) 401 '' 402 mkdir ./contents && cd ./contents 403 - cp -rp "${efiDir}"/EFI . 404 - mkdir ./boot 405 - cp -p "${config.boot.kernelPackages.kernel}/${config.system.boot.loader.kernelFile}" \ 406 - "${config.system.build.initialRamdisk}/${config.system.boot.loader.initrdFile}" ./boot/ 407 408 # Rewrite dates for everything in the FS 409 find . -exec touch --date=2000-01-01 {} + ··· 421 faketime "2000-01-01 00:00:00" mkfs.vfat -i 12345678 -n EFIBOOT "$out" 422 423 # Force a fixed order in mcopy for better determinism, and avoid file globbing 424 - for d in $(find EFI boot -type d | sort); do 425 faketime "2000-01-01 00:00:00" mmd -i "$out" "::/$d" 426 done 427 428 - for f in $(find EFI boot -type f | sort); do 429 mcopy -pvm -i "$out" "$f" "::/$f" 430 done 431
··· 369 ${lib.optionalString (refindBinary != null) '' 370 # GRUB apparently cannot do "chainloader" operations on "CD". 371 if [ "\$root" != "cd0" ]; then 372 menuentry 'rEFInd' --class refind { 373 + # Force root to be the FAT partition 374 + # Otherwise it breaks rEFInd's boot 375 + search --set=root --no-floppy --fs-uuid 1234-5678 376 chainloader (\$root)/EFI/boot/${refindBinary} 377 } 378 fi ··· 400 # dates (cp -p, touch, mcopy -m, faketime for label), IDs (mkfs.vfat -i) 401 '' 402 mkdir ./contents && cd ./contents 403 + mkdir -p ./EFI/boot 404 + cp -rp "${efiDir}"/EFI/boot/{grub.cfg,*.efi} ./EFI/boot 405 406 # Rewrite dates for everything in the FS 407 find . -exec touch --date=2000-01-01 {} + ··· 419 faketime "2000-01-01 00:00:00" mkfs.vfat -i 12345678 -n EFIBOOT "$out" 420 421 # Force a fixed order in mcopy for better determinism, and avoid file globbing 422 + for d in $(find EFI -type d | sort); do 423 faketime "2000-01-01 00:00:00" mmd -i "$out" "::/$d" 424 done 425 426 + for f in $(find EFI -type f | sort); do 427 mcopy -pvm -i "$out" "$f" "::/$f" 428 done 429
+2 -2
nixos/modules/services/continuous-integration/hydra/default.nix
··· 99 100 package = mkOption { 101 type = types.package; 102 - default = pkgs.hydra-unstable; 103 - defaultText = literalExpression "pkgs.hydra-unstable"; 104 description = "The Hydra package."; 105 }; 106
··· 99 100 package = mkOption { 101 type = types.package; 102 + default = pkgs.hydra_unstable; 103 + defaultText = literalExpression "pkgs.hydra_unstable"; 104 description = "The Hydra package."; 105 }; 106
+1
nixos/modules/services/web-apps/hedgedoc.nix
··· 1023 ''; 1024 serviceConfig = { 1025 WorkingDirectory = cfg.workDir; 1026 ExecStart = "${cfg.package}/bin/hedgedoc"; 1027 EnvironmentFile = mkIf (cfg.environmentFile != null) [ cfg.environmentFile ]; 1028 Environment = [
··· 1023 ''; 1024 serviceConfig = { 1025 WorkingDirectory = cfg.workDir; 1026 + StateDirectory = [ cfg.workDir cfg.configuration.uploadsPath ]; 1027 ExecStart = "${cfg.package}/bin/hedgedoc"; 1028 EnvironmentFile = mkIf (cfg.environmentFile != null) [ cfg.environmentFile ]; 1029 Environment = [
+1 -1
nixos/tests/hydra/default.nix
··· 11 inherit (import ./common.nix { inherit system; }) baseConfig; 12 13 hydraPkgs = { 14 - inherit (pkgs) hydra-unstable; 15 }; 16 17 makeHydraTest = with pkgs.lib; name: package: makeTest {
··· 11 inherit (import ./common.nix { inherit system; }) baseConfig; 12 13 hydraPkgs = { 14 + inherit (pkgs) hydra_unstable; 15 }; 16 17 makeHydraTest = with pkgs.lib; name: package: makeTest {
+47 -15
pkgs/applications/audio/adlplug/default.nix
··· 13 , libXinerama 14 , libXext 15 , libXcursor 16 - , libobjc 17 , Cocoa 18 , CoreServices 19 , WebKit 20 , DiscRecording 21 22 # Enabling JACK requires a JACK server at runtime, no fallback mechanism 23 , withJack ? false, jack ··· 35 in 36 stdenv.mkDerivation rec { 37 pname = "${lib.strings.toLower type}plug"; 38 - version = "1.0.2"; 39 40 src = fetchFromGitHub { 41 owner = "jpcima"; 42 repo = "ADLplug"; 43 - rev = "v${version}"; 44 fetchSubmodules = true; 45 - sha256 = "0mqx4bzri8s880v7jwd24nb93m5i3aklqld0b3h0hjnz0lh2qz0f"; 46 }; 47 48 - patches = [ 49 - (fetchpatch { 50 - url = "https://raw.githubusercontent.com/jpcima/ADLplug/83636c55bec1b86cabf634b9a6d56d07f00ecc61/resources/patch/juce-gcc9.patch"; 51 - sha256 = "15hkdb76n9lgjsrpczj27ld9b4804bzrgw89g95cj4sc8wwkplyy"; 52 - extraPrefix = "thirdparty/JUCE/"; 53 - stripLen = 1; 54 - }) 55 - ]; 56 - 57 cmakeFlags = [ 58 "-DADLplug_CHIP=${chip}" 59 "-DADLplug_USE_SYSTEM_FMT=ON" ··· 61 ]; 62 63 NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isDarwin (toString [ 64 "-isystem ${CoreServices}/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/Headers" 65 ]); 66 67 nativeBuildInputs = [ 68 cmake 69 pkg-config ··· 81 libXext 82 libXcursor 83 ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ 84 - libobjc 85 Cocoa 86 CoreServices 87 WebKit 88 DiscRecording 89 ] ++ lib.optional withJack jack; 90 91 postInstall = lib.optionalString stdenv.hostPlatform.isDarwin '' 92 - mkdir $out/Applications 93 mv $out/bin/${mainProgram}.app $out/Applications/ 94 ln -s $out/{Applications/${mainProgram}.app/Contents/MacOS,bin}/${mainProgram} 95 ''; 96 97 meta = with lib; {
··· 13 , libXinerama 14 , libXext 15 , libXcursor 16 + , Foundation 17 , Cocoa 18 + , Carbon 19 , CoreServices 20 + , ApplicationServices 21 + , CoreAudio 22 + , CoreMIDI 23 + , AudioToolbox 24 + , Accelerate 25 + , CoreImage 26 + , IOKit 27 + , AudioUnit 28 + , QuartzCore 29 , WebKit 30 , DiscRecording 31 + , CoreAudioKit 32 33 # Enabling JACK requires a JACK server at runtime, no fallback mechanism 34 , withJack ? false, jack ··· 46 in 47 stdenv.mkDerivation rec { 48 pname = "${lib.strings.toLower type}plug"; 49 + version = "unstable-2021-12-17"; 50 51 src = fetchFromGitHub { 52 owner = "jpcima"; 53 repo = "ADLplug"; 54 + rev = "a488abedf1783c61cb4f0caa689f1b01bf9aa17d"; 55 fetchSubmodules = true; 56 + sha256 = "1a5zw0rglqgc5wq1n0s5bxx7y59dsg6qy02236fakl34bvbk60yz"; 57 }; 58 59 cmakeFlags = [ 60 "-DADLplug_CHIP=${chip}" 61 "-DADLplug_USE_SYSTEM_FMT=ON" ··· 63 ]; 64 65 NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isDarwin (toString [ 66 + # "fp.h" file not found 67 "-isystem ${CoreServices}/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/Headers" 68 ]); 69 70 + NIX_LDFLAGS = toString (lib.optionals stdenv.hostPlatform.isDarwin [ 71 + # Framework that JUCE needs which don't get linked properly 72 + "-framework CoreAudioKit" 73 + "-framework QuartzCore" 74 + "-framework AudioToolbox" 75 + ] ++ lib.optionals stdenv.hostPlatform.isLinux [ 76 + # JUCE dlopen's these at runtime 77 + "-lX11" 78 + "-lXext" 79 + "-lXcursor" 80 + "-lXinerama" 81 + "-lXrandr" 82 + ]); 83 + 84 nativeBuildInputs = [ 85 cmake 86 pkg-config ··· 98 libXext 99 libXcursor 100 ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ 101 + Foundation 102 Cocoa 103 + Carbon 104 CoreServices 105 + ApplicationServices 106 + CoreAudio 107 + CoreMIDI 108 + AudioToolbox 109 + Accelerate 110 + CoreImage 111 + IOKit 112 + AudioUnit 113 + QuartzCore 114 WebKit 115 DiscRecording 116 + CoreAudioKit 117 ] ++ lib.optional withJack jack; 118 119 postInstall = lib.optionalString stdenv.hostPlatform.isDarwin '' 120 + mkdir -p $out/{Applications,Library/Audio/Plug-Ins/{VST,Components}} 121 + 122 mv $out/bin/${mainProgram}.app $out/Applications/ 123 ln -s $out/{Applications/${mainProgram}.app/Contents/MacOS,bin}/${mainProgram} 124 + 125 + mv vst2/${mainProgram}.vst $out/Library/Audio/Plug-Ins/VST/ 126 + mv au/${mainProgram}.component $out/Library/Audio/Plug-Ins/Components/ 127 ''; 128 129 meta = with lib; {
-44
pkgs/applications/blockchains/dashpay/default.nix
··· 1 - { fetchFromGitHub, lib, stdenv, pkg-config, autoreconfHook 2 - , openssl, db48, boost, zlib, miniupnpc 3 - , qrencode, glib, protobuf, yasm, libevent 4 - , util-linux 5 - , enable_Upnp ? false 6 - , disable_Wallet ? false 7 - , disable_Daemon ? false }: 8 - 9 - with lib; 10 - stdenv.mkDerivation rec { 11 - pname = "dashpay"; 12 - version = "0.12.2.3"; 13 - 14 - src = fetchFromGitHub { 15 - owner = "dashpay"; 16 - repo= "dash"; 17 - rev = "v${version}"; 18 - sha256 = "sha256-DMoiUX8Q0HcBHA6ZIN58uPsTnHjEJMi8eGG2DW8z17Q="; 19 - }; 20 - 21 - nativeBuildInputs = [ pkg-config autoreconfHook ]; 22 - buildInputs = [ glib openssl db48 yasm boost zlib libevent 23 - miniupnpc protobuf qrencode util-linux ]; 24 - 25 - 26 - configureFlags = [ "--with-boost-libdir=${boost.out}/lib --with-gui=no" ] 27 - ++ optional enable_Upnp "--enable-upnp-default" 28 - ++ optional disable_Wallet "--disable-wallet" 29 - ++ optional disable_Daemon "--disable-daemon" 30 - ; 31 - 32 - meta = { 33 - description = "A decentralized key/value registration and transfer system"; 34 - longDescription = '' 35 - Dash (DASH) is an open sourced, privacy-centric digital currency 36 - with instant transactions. It allows you to keep your finances 37 - private as you make transactions without waits, similar to cash. 38 - ''; 39 - homepage = "https://www.dash.org"; 40 - maintainers = with maintainers; [ ]; 41 - platforms = platforms.unix; 42 - license = licenses.mit; 43 - }; 44 - }
···
+39 -24
pkgs/applications/editors/emacs/elisp-packages/elpa-generated.nix
··· 384 elpaBuild { 385 pname = "boxy"; 386 ename = "boxy"; 387 - version = "1.0.5"; 388 src = fetchurl { 389 - url = "https://elpa.gnu.org/packages/boxy-1.0.5.tar"; 390 - sha256 = "0g608nhg160p9gflw52h3247x35r0g6bl89yq35jbsc7fnw6m5ry"; 391 }; 392 packageRequires = [ emacs ]; 393 meta = { ··· 399 elpaBuild { 400 pname = "boxy-headings"; 401 ename = "boxy-headings"; 402 - version = "2.1.2"; 403 src = fetchurl { 404 - url = "https://elpa.gnu.org/packages/boxy-headings-2.1.2.tar"; 405 - sha256 = "0jyfp41jw33kmi7832x5x0mgh5niqvb7dfc7q00kay5q9ixg83dq"; 406 }; 407 packageRequires = [ boxy emacs org ]; 408 meta = { ··· 1384 elpaBuild { 1385 pname = "eldoc"; 1386 ename = "eldoc"; 1387 - version = "1.11.1"; 1388 src = fetchurl { 1389 - url = "https://elpa.gnu.org/packages/eldoc-1.11.1.tar"; 1390 - sha256 = "065clc07nrgp56cgynqhq3fmnwd64ccg2jxzikzb0f2zkn10vc90"; 1391 }; 1392 packageRequires = [ emacs ]; 1393 meta = { ··· 1499 elpaBuild { 1500 pname = "engrave-faces"; 1501 ename = "engrave-faces"; 1502 - version = "0.3.0"; 1503 src = fetchurl { 1504 - url = "https://elpa.gnu.org/packages/engrave-faces-0.3.0.tar"; 1505 - sha256 = "0l59fci16m6li52bqwbqglsi9gavgsfkxlxm9y1ny3ma0w1rnp9d"; 1506 }; 1507 packageRequires = [ emacs ]; 1508 meta = { ··· 1714 elpaBuild { 1715 pname = "fontaine"; 1716 ename = "fontaine"; 1717 - version = "0.1.1"; 1718 src = fetchurl { 1719 - url = "https://elpa.gnu.org/packages/fontaine-0.1.1.tar"; 1720 - sha256 = "1jyb6s2sqr9fmy6f4i9vijaswb8f9vn2br98d4w2afzhmf4d0bdc"; 1721 }; 1722 packageRequires = [ emacs ]; 1723 meta = { ··· 2931 elpaBuild { 2932 pname = "nano-modeline"; 2933 ename = "nano-modeline"; 2934 - version = "0.6"; 2935 src = fetchurl { 2936 - url = "https://elpa.gnu.org/packages/nano-modeline-0.6.tar"; 2937 - sha256 = "1cxycfx4ic2hzfvp3d2z0a5xjg97p49yla3a1qxw1dldcjg9lfg0"; 2938 }; 2939 packageRequires = [ emacs ]; 2940 meta = { ··· 3175 elpaBuild { 3176 pname = "org-real"; 3177 ename = "org-real"; 3178 - version = "1.0.4"; 3179 src = fetchurl { 3180 - url = "https://elpa.gnu.org/packages/org-real-1.0.4.tar"; 3181 - sha256 = "0bn9vyx74lki2nggzir02mcrww94dnqpbkryjr7a4i6am0ylf705"; 3182 }; 3183 packageRequires = [ boxy emacs org ]; 3184 meta = { ··· 3423 packageRequires = []; 3424 meta = { 3425 homepage = "https://elpa.gnu.org/packages/pinentry.html"; 3426 license = lib.licenses.free; 3427 }; 3428 }) {}; ··· 4553 elpaBuild { 4554 pname = "tomelr"; 4555 ename = "tomelr"; 4556 - version = "0.3.0"; 4557 src = fetchurl { 4558 - url = "https://elpa.gnu.org/packages/tomelr-0.3.0.tar"; 4559 - sha256 = "0jnnyvbmhqn8wkg3y13iy19nck6dphay8jdy2nimp28a1jvs7z6g"; 4560 }; 4561 packageRequires = [ emacs map seq ]; 4562 meta = {
··· 384 elpaBuild { 385 pname = "boxy"; 386 ename = "boxy"; 387 + version = "1.1.0"; 388 src = fetchurl { 389 + url = "https://elpa.gnu.org/packages/boxy-1.1.0.tar"; 390 + sha256 = "17z0amn1klbzvq0z5g20a5gjq5agrrhnkp8amqlqzj7p0p31nbns"; 391 }; 392 packageRequires = [ emacs ]; 393 meta = { ··· 399 elpaBuild { 400 pname = "boxy-headings"; 401 ename = "boxy-headings"; 402 + version = "2.1.3"; 403 src = fetchurl { 404 + url = "https://elpa.gnu.org/packages/boxy-headings-2.1.3.tar"; 405 + sha256 = "09k5x123db19v2k49y8acyk5y3r0fxw0xz61qqqidrgrx8fs3mg9"; 406 }; 407 packageRequires = [ boxy emacs org ]; 408 meta = { ··· 1384 elpaBuild { 1385 pname = "eldoc"; 1386 ename = "eldoc"; 1387 + version = "1.12.0"; 1388 src = fetchurl { 1389 + url = "https://elpa.gnu.org/packages/eldoc-1.12.0.tar"; 1390 + sha256 = "1npggpisqnfkc3gx7dr3pjnif7gf571z7s9g7n6vnb213353qskk"; 1391 }; 1392 packageRequires = [ emacs ]; 1393 meta = { ··· 1499 elpaBuild { 1500 pname = "engrave-faces"; 1501 ename = "engrave-faces"; 1502 + version = "0.3.1"; 1503 src = fetchurl { 1504 + url = "https://elpa.gnu.org/packages/engrave-faces-0.3.1.tar"; 1505 + sha256 = "1q4sjl2rvcfwcirm32nmi53258ln71yhh1dgszlxwknm38a14v3i"; 1506 }; 1507 packageRequires = [ emacs ]; 1508 meta = { ··· 1714 elpaBuild { 1715 pname = "fontaine"; 1716 ename = "fontaine"; 1717 + version = "0.2.1"; 1718 src = fetchurl { 1719 + url = "https://elpa.gnu.org/packages/fontaine-0.2.1.tar"; 1720 + sha256 = "11g03gaiypqf0xi7s3xyjnbi2w154lkd7j0ybmn8scs6pbzdyl95"; 1721 }; 1722 packageRequires = [ emacs ]; 1723 meta = { ··· 2931 elpaBuild { 2932 pname = "nano-modeline"; 2933 ename = "nano-modeline"; 2934 + version = "0.7"; 2935 src = fetchurl { 2936 + url = "https://elpa.gnu.org/packages/nano-modeline-0.7.tar"; 2937 + sha256 = "1fsjzbdawkn4vmk6zs6az1b42mx5ka7a618fgx5zdncr79wl0vjw"; 2938 }; 2939 packageRequires = [ emacs ]; 2940 meta = { ··· 3175 elpaBuild { 3176 pname = "org-real"; 3177 ename = "org-real"; 3178 + version = "1.0.5"; 3179 src = fetchurl { 3180 + url = "https://elpa.gnu.org/packages/org-real-1.0.5.tar"; 3181 + sha256 = "0g70bzhr094fah86cyvd9ci8q28qi9c44g33i4lw7clklgdx7mxl"; 3182 }; 3183 packageRequires = [ boxy emacs org ]; 3184 meta = { ··· 3423 packageRequires = []; 3424 meta = { 3425 homepage = "https://elpa.gnu.org/packages/pinentry.html"; 3426 + license = lib.licenses.free; 3427 + }; 3428 + }) {}; 3429 + plz = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 3430 + elpaBuild { 3431 + pname = "plz"; 3432 + ename = "plz"; 3433 + version = "0.1"; 3434 + src = fetchurl { 3435 + url = "https://elpa.gnu.org/packages/plz-0.1.tar"; 3436 + sha256 = "083qz6kfg4q8xy3vsfwlk2g9vbg8iym2axmyhh54naivrc096ghc"; 3437 + }; 3438 + packageRequires = [ emacs ]; 3439 + meta = { 3440 + homepage = "https://elpa.gnu.org/packages/plz.html"; 3441 license = lib.licenses.free; 3442 }; 3443 }) {}; ··· 4568 elpaBuild { 4569 pname = "tomelr"; 4570 ename = "tomelr"; 4571 + version = "0.4.3"; 4572 src = fetchurl { 4573 + url = "https://elpa.gnu.org/packages/tomelr-0.4.3.tar"; 4574 + sha256 = "03dj7mhqyfdpxr32nyvfgkqr6wr55cd7yk9a0izjs4468zx8vl0d"; 4575 }; 4576 packageRequires = [ emacs map seq ]; 4577 meta = {
+15
pkgs/applications/editors/emacs/elisp-packages/elpa-packages.nix
··· 104 maintainers = [ lib.maintainers.sternenseemann ]; 105 }; 106 }); 107 }; 108 109 elpaPackages = super // overrides;
··· 104 maintainers = [ lib.maintainers.sternenseemann ]; 105 }; 106 }); 107 + 108 + plz = super.plz.overrideAttrs ( 109 + old: { 110 + dontUnpack = false; 111 + postPatch = old.postPatch or "" + '' 112 + substituteInPlace ./plz.el \ 113 + --replace 'plz-curl-program "curl"' 'plz-curl-program "${pkgs.curl}/bin/curl"' 114 + ''; 115 + preInstall = '' 116 + tar -cf "$pname-$version.tar" --transform "s,^,$pname-$version/," * .[!.]* 117 + src="$pname-$version.tar" 118 + ''; 119 + } 120 + ); 121 + 122 }; 123 124 elpaPackages = super // overrides;
+4 -4
pkgs/applications/editors/emacs/elisp-packages/header-file-mode/default.nix
··· 5 6 trivialBuild { 7 pname = "header-file-mode"; 8 - version = "unstable-2022-04-19"; 9 10 src = fetchFromGitHub { 11 - owner = "0x4b"; 12 repo = "header-file-mode"; 13 - rev = "fdf1930730e1b0c3f82490099a1325805491eff5"; 14 - sha256 = "sha256-FJgRI6RLQk9osh7d+YRfrV5CoGCDx2cZvsjAWlm969c="; 15 }; 16 17 postUnpack = ''
··· 5 6 trivialBuild { 7 pname = "header-file-mode"; 8 + version = "unstable-2022-05-13"; 9 10 src = fetchFromGitHub { 11 + owner = "aidalgol"; 12 repo = "header-file-mode"; 13 + rev = "bcfd19a2c70030ebf5fa68e87aca4b3db8fad13e"; 14 + sha256 = "sha256-XMXOU+vWJ/0e0ny4Dz3DxWpdEfSNXGzm03sBke32Dwc="; 15 }; 16 17 postUnpack = ''
-2
pkgs/applications/editors/emacs/elisp-packages/manual-packages.nix
··· 194 195 control-lock = callPackage ./control-lock { }; 196 197 - plz = callPackage ./plz { }; 198 - 199 pod-mode = callPackage ./pod-mode { }; 200 201 power-mode = callPackage ./power-mode { };
··· 194 195 control-lock = callPackage ./control-lock { }; 196 197 pod-mode = callPackage ./pod-mode { }; 198 199 power-mode = callPackage ./power-mode { };
-31
pkgs/applications/editors/emacs/elisp-packages/plz/default.nix
··· 1 - { trivialBuild, lib, fetchFromGitHub, curl }: 2 - 3 - trivialBuild { 4 - pname = "plz"; 5 - version = "0.pre+date=2021-08-22"; 6 - 7 - src = fetchFromGitHub { 8 - owner = "alphapapa"; 9 - repo = "plz.el"; 10 - rev = "7e456638a651bab3a814e3ea81742dd917509cbb"; 11 - hash = "sha256-8kn9ax1AVF6f9iCTqvVeJZihs03pYAhLjUDooG/ubxY="; 12 - }; 13 - 14 - postPatch = '' 15 - substituteInPlace ./plz.el \ 16 - --replace 'plz-curl-program "curl"' 'plz-curl-program "${curl}/bin/curl"' 17 - ''; 18 - 19 - meta = { 20 - description = "An HTTP library for Emacs"; 21 - longDescription = '' 22 - plz is an HTTP library for Emacs. It uses curl as a backend, which avoids 23 - some of the issues with using Emacs’s built-in url library. It supports 24 - both synchronous and asynchronous requests. Its API is intended to be 25 - simple, natural, and expressive. Its code is intended to be simple and 26 - well-organized. Every feature is tested against httpbin.org. 27 - ''; 28 - license = lib.licenses.gpl3Only; 29 - platforms = lib.platforms.all; 30 - }; 31 - }
···
+796 -780
pkgs/applications/editors/emacs/elisp-packages/recipes-archive-melpa.json
··· 2641 "repo": "seagle0128/all-the-icons-ivy-rich", 2642 "unstable": { 2643 "version": [ 2644 - 20220505, 2645 - 834 2646 ], 2647 "deps": [ 2648 "all-the-icons", 2649 "ivy-rich" 2650 ], 2651 - "commit": "7c9db258ba7dd0a8c90eb7cebd335961cc45e031", 2652 - "sha256": "0jh46x04n13a2bcfz5vkpwknhc6d6ppfpf39w5v980my2jghs5n7" 2653 }, 2654 "stable": { 2655 "version": [ ··· 3271 20200914, 3272 644 3273 ], 3274 - "commit": "7615aa55068754d36711e19bfc926b87d5b8f33c", 3275 - "sha256": "1ix15ff08adkvlpvh6v5cpx6an0y965rm9d06zallsg1wrzr2rcl" 3276 }, 3277 "stable": { 3278 "version": [ ··· 3618 }, 3619 { 3620 "ename": "apheleia", 3621 - "commit": "74ef92045e0f64b34cdb1ca686c9159b0623e61f", 3622 - "sha256": "0dmjvj7gw8qd8vh9m8ibs5pqgs63f5pv02686k97sawbkav7mg1r", 3623 "fetcher": "github", 3624 - "repo": "raxod502/apheleia", 3625 "unstable": { 3626 "version": [ 3627 - 20220501, 3628 - 2151 3629 ], 3630 - "commit": "50da8cd1a94fbcd6456b2528a9db20a5cfc8ff5f", 3631 - "sha256": "12z8vsnxq8bsfbds3d1wbnrkv8i4kcm6l75hr0pnh4jr6yrmc419" 3632 }, 3633 "stable": { 3634 "version": [ ··· 4661 "keytar", 4662 "s" 4663 ], 4664 - "commit": "09dd28d875dfe9d1ca9bb8ab3ee2f6102a00832b", 4665 - "sha256": "13pqis46qxk242yim8l08kzkj0v36jam37rvj2v7z1lallvrk664" 4666 }, 4667 "stable": { 4668 "version": [ ··· 4774 "compat", 4775 "packed" 4776 ], 4777 - "commit": "f19e9fbb8d72a47f0cef049b784e1a492bef9287", 4778 - "sha256": "0bjq0x7hv1fg4db3wria5lnlliln7598qsc0l42pic34w1qq3h6l" 4779 }, 4780 "stable": { 4781 "version": [ ··· 5148 "deps": [ 5149 "ht" 5150 ], 5151 - "commit": "3d60d2c64278f9f933ee78299f6decde2254af7e", 5152 - "sha256": "1r5a9a1s0gb1f7dr36bjkf8zch0q7krk0mjikhs4kd2rfga3ba4a" 5153 }, 5154 "stable": { 5155 "version": [ ··· 5466 "repo": "Fuco1/autobookmarks", 5467 "unstable": { 5468 "version": [ 5469 - 20190919, 5470 - 841 5471 ], 5472 "deps": [ 5473 "cl-lib", 5474 "dash" 5475 ], 5476 - "commit": "224b24950d3ae57cd16d7417c07fda337fe0ea09", 5477 - "sha256": "0cfx447185shbiadhbar72bgqwzmbia82f8a2py215hgw9wrgqr9" 5478 } 5479 }, 5480 { ··· 5711 "avy", 5712 "embark" 5713 ], 5714 - "commit": "857c8403529f54bfeecf460fe98b1a0b8e206802", 5715 - "sha256": "09rpnr8lxk5gpjx4vbsi59027yggwh68909vqyxhbqqs2d7f9n26" 5716 }, 5717 "stable": { 5718 "version": [ ··· 5922 "url": "https://bitbucket.org/pdo/axiom-environment", 5923 "unstable": { 5924 "version": [ 5925 - 20211120, 5926 - 1646 5927 ], 5928 - "commit": "e60de5ed107ffeb530a56d24d04f38988124d12b", 5929 - "sha256": "0p8kbxfcrx1ib8g17g6h2i2ygy35qq992n3s2xa6ysij7wrfn4hd" 5930 } 5931 }, 5932 { ··· 6051 "compat", 6052 "outline-minor-faces" 6053 ], 6054 - "commit": "0d44408262080cdf998de5a52516f220e7e7c99a", 6055 - "sha256": "1l818vv2wh07jxc7wxmnidr8rcbj8526245fsflxp051hpilvan8" 6056 }, 6057 "stable": { 6058 "version": [ ··· 6277 "repo": "belak/base16-emacs", 6278 "unstable": { 6279 "version": [ 6280 - 20211225, 6281 - 2032 6282 ], 6283 - "commit": "ad2fd1137d6ec144f87b26dce15ce5c5d42bde39", 6284 - "sha256": "009k9j7bi7x8pmp5d12bdzng3ampqwy8l1jf1dxxf9989wv27hrc" 6285 }, 6286 "stable": { 6287 "version": [ 6288 2, 6289 - 2 6290 ], 6291 - "commit": "10180e88d6d9434cec367b6c91222dd2fc3bd8ae", 6292 - "sha256": "01w89g413s1da6rf94y1xnhw79cjy2bqb01yfjs58cy492cm0vr6" 6293 } 6294 }, 6295 { ··· 7133 "a", 7134 "pdf-tools" 7135 ], 7136 - "commit": "350af0e5d53307c900e4f8b2617f3852f51a74d2", 7137 - "sha256": "097pd9ihnzjiaxbzrabcw0016wdwrljs9b5s6cbkrrbgicngb8vj" 7138 } 7139 }, 7140 { ··· 7242 "deps": [ 7243 "compat" 7244 ], 7245 - "commit": "aad77ba6ce64245570b4baa83b62008522c3ce3a", 7246 - "sha256": "1n4cshnq9nfqa4yr126g144725ivc492xw1pw37fhvjcjpmg7g2p" 7247 }, 7248 "stable": { 7249 "version": [ ··· 7497 "repo": "canatella/bitbake-el", 7498 "unstable": { 7499 "version": [ 7500 - 20190107, 7501 - 1155 7502 ], 7503 "deps": [ 7504 "dash", 7505 "mmm-mode", 7506 "s" 7507 ], 7508 - "commit": "ba58bd051457ba0abd2fbc955ea0e75e78ff2c64", 7509 - "sha256": "09ncblz9x2qz6lqfywvj3b7qagrq34qb0wg17y03p1r3416g1zwr" 7510 } 7511 }, 7512 { ··· 7610 }, 7611 { 7612 "ename": "blackout", 7613 - "commit": "9128d87569dc74b90f57dd65edead7199f5c7911", 7614 - "sha256": "06gxgald2vchfwhbiaap7rfjk7kirfv4yjc4r98g998v96bilw64", 7615 "fetcher": "github", 7616 - "repo": "raxod502/blackout", 7617 "unstable": { 7618 "version": [ 7619 - 20200404, 7620 - 1550 7621 ], 7622 - "commit": "c221fa2c8a204b4aff2e09c606f59be58b960b97", 7623 - "sha256": "1zzrmlxifplpskm3a7hbm4x6mpikr1nhgds10qaxqv0gfq312p1c" 7624 }, 7625 "stable": { 7626 "version": [ ··· 8153 "repo": "emacscollective/borg", 8154 "unstable": { 8155 "version": [ 8156 - 20220503, 8157 - 1114 8158 ], 8159 "deps": [ 8160 "epkg", 8161 "magit" 8162 ], 8163 - "commit": "cd1fbd60a2ff62bbfca124ea1e602b14c4aa58e9", 8164 - "sha256": "0gk53s4r97qf1mps561x1pjcfzc2nkvd6m559kaf03xsbb6w8mdf" 8165 }, 8166 "stable": { 8167 "version": [ ··· 8721 "repo": "lukhas/buffer-move", 8722 "unstable": { 8723 "version": [ 8724 - 20160615, 8725 - 1803 8726 ], 8727 - "commit": "cb517ecf8409b5fdcda472d7190c6021f0c49751", 8728 - "sha256": "0gxy58v8nyv6pmzfn8552m8a14f5lzcbkndp5xpzq4g9qvmifmj6" 8729 }, 8730 "stable": { 8731 "version": [ ··· 9756 "repo": "chenyanming/calibredb.el", 9757 "unstable": { 9758 "version": [ 9759 - 20220504, 9760 - 516 9761 ], 9762 "deps": [ 9763 "dash", ··· 9767 "s", 9768 "transient" 9769 ], 9770 - "commit": "a59e8ab65601e30073fa55bef76e95c964c678d8", 9771 - "sha256": "15dx3ppqrv1chkjpj0dn463bmhncvl5vy0lg74g6bdbw5z0vhbzc" 9772 }, 9773 "stable": { 9774 "version": [ 9775 2, 9776 - 10, 9777 0 9778 ], 9779 "deps": [ 9780 "dash", 9781 "s", 9782 "transient" 9783 ], 9784 - "commit": "933140a3227ee61cfccf3cf0c567b5c9e64f1ded", 9785 - "sha256": "0s26a2fy1xldd0q57avds7zn0h7lkis2hjh9zmm1qhwn8409hys9" 9786 } 9787 }, 9788 { ··· 10361 "dash", 10362 "lsp-mode" 10363 ], 10364 - "commit": "675a5704c14a27931e835a431beea3631d92e8e6", 10365 - "sha256": "0l4bhyr9d8ljz1f0cfg1s2cjcmh6fiwbk5mdlvc7rrwz5hxc21is" 10366 } 10367 }, 10368 { ··· 10661 20171115, 10662 2108 10663 ], 10664 - "commit": "9b4331ab42d3e84dea9293ef989ff1b29e97b2b1", 10665 - "sha256": "0rmla0fdskaw1lqi73fiicyi7py3bn1xhn4jh46w7dnwmhm3x9zz" 10666 }, 10667 "stable": { 10668 "version": [ ··· 10817 20220318, 10818 1007 10819 ], 10820 - "commit": "06011b53bf64d671c74a79757332b9ef13f47f2b", 10821 - "sha256": "00znwpkdvs7igi8c7gns7viikal4029prpf1q3c805l2m9m0424g" 10822 }, 10823 "stable": { 10824 "version": [ ··· 11805 "repo": "bdarcus/citar", 11806 "unstable": { 11807 "version": [ 11808 - 20220508, 11809 - 1220 11810 ], 11811 "deps": [ 11812 "citeproc", 11813 "org", 11814 "parsebib" 11815 ], 11816 - "commit": "9c732e91a4d198d0dc79df7f36524324d383c211", 11817 - "sha256": "0xhgp70sphzzskhxznzd2lf38wsdayac82wi8cyfhp0159z5zh0n" 11818 }, 11819 "stable": { 11820 "version": [ ··· 12732 "compat", 12733 "emacsql-sqlite" 12734 ], 12735 - "commit": "6f4af0fc87fa0a1734480d6a4b72797c0916bc12", 12736 - "sha256": "1azp6gpswqzhvqamh4h1wi8xkby98irj6w3f3ky943a1zlkibq4a" 12737 }, 12738 "stable": { 12739 "version": [ ··· 12909 20220322, 12910 1258 12911 ], 12912 - "commit": "b541073a447a21c9117375e24d2db6af37dd6cfc", 12913 - "sha256": "00phxl6z8vpph6ypbmcckb131ls6g91lq9cjxbgc7878sxcilf6f" 12914 }, 12915 "stable": { 12916 "version": [ ··· 14048 "axiom-environment", 14049 "company" 14050 ], 14051 - "commit": "e60de5ed107ffeb530a56d24d04f38988124d12b", 14052 - "sha256": "0p8kbxfcrx1ib8g17g6h2i2ygy35qq992n3s2xa6ysij7wrfn4hd" 14053 } 14054 }, 14055 { ··· 15158 }, 15159 { 15160 "ename": "company-prescient", 15161 - "commit": "b92c34e493bbefab1d7747b0855d1ab2f984cb7c", 15162 - "sha256": "0cp918ihbjqxfgqnifknl5hphmvq5bl42dhp5ylvijsfa8kvbsb9", 15163 "fetcher": "github", 15164 - "repo": "raxod502/prescient.el", 15165 "unstable": { 15166 "version": [ 15167 - 20211228, 15168 - 417 15169 ], 15170 "deps": [ 15171 "company", 15172 "prescient" 15173 ], 15174 - "commit": "d9b30d741c729a37eb2c6e51d72281c0844780ca", 15175 - "sha256": "1n9sa0wvw8yhq2l82hfpx1pgg7lmphd18xrjx6jfqfdkna9j3a8j" 15176 }, 15177 "stable": { 15178 "version": [ ··· 15589 "repo": "rafalcieslak/emacs-company-terraform", 15590 "unstable": { 15591 "version": [ 15592 - 20190607, 15593 - 1037 15594 ], 15595 "deps": [ 15596 "company", 15597 "terraform-mode" 15598 ], 15599 - "commit": "2d11a21fee2f298e48968e479ddcaeda4d736e12", 15600 - "sha256": "0hxilq7289djrn6kgw7n926zpz0pr7iyd1wm6cy8yfhxf546a4px" 15601 }, 15602 "stable": { 15603 "version": [ ··· 16465 "repo": "OlMon/consult-projectile", 16466 "unstable": { 16467 "version": [ 16468 - 20220505, 16469 - 1139 16470 ], 16471 "deps": [ 16472 "consult", 16473 "projectile" 16474 ], 16475 - "commit": "8e618bc62405e345cc59e891f82d8ee45691010a", 16476 - "sha256": "1mpj0sxy1x8333h88av4nmawy5amgbszxfzc653w3325s6x39xnc" 16477 } 16478 }, 16479 { ··· 16961 "deps": [ 16962 "counsel" 16963 ], 16964 - "commit": "f618411fc8f607e4c93b5efa98584fd461c53ac6", 16965 - "sha256": "0jidrijrb28j81w7jhsl87vjagvq5x4h144cynd2kiyb8y2qpg2s" 16966 } 16967 }, 16968 { ··· 18360 }, 18361 { 18362 "ename": "ctrlf", 18363 - "commit": "46073c430c271aa1971e27948e7f6d4b65b3d533", 18364 - "sha256": "01d2zv7x588r55namcda58l21lg5sbwcn1ycnvg5md69pv5cg461", 18365 "fetcher": "github", 18366 - "repo": "raxod502/ctrlf", 18367 "unstable": { 18368 "version": [ 18369 - 20220501, 18370 - 2234 18371 ], 18372 - "commit": "efe9534747e056b210e359c3abc67ef94a8ea5ad", 18373 - "sha256": "12i6mis37196c13jw5wnybfhdkhw3cfny3v0l98ksp6ki6sr2h5w" 18374 }, 18375 "stable": { 18376 "version": [ ··· 18556 "repo": "russell/cue-mode", 18557 "unstable": { 18558 "version": [ 18559 - 20220507, 18560 - 1728 18561 ], 18562 - "commit": "598c9b33b888e067e7472710a5f159cee98a0307", 18563 - "sha256": "08px1mxpsl5n7yd8pgkpj0xkmhfvhgppbwwrjm59wgnaiq0mw8sf" 18564 }, 18565 "stable": { 18566 "version": [ 18567 1, 18568 0, 18569 - 8 18570 ], 18571 - "commit": "598c9b33b888e067e7472710a5f159cee98a0307", 18572 - "sha256": "08px1mxpsl5n7yd8pgkpj0xkmhfvhgppbwwrjm59wgnaiq0mw8sf" 18573 } 18574 }, 18575 { ··· 18855 20211111, 18856 1407 18857 ], 18858 - "commit": "d4cbe45b38695cd27c56ea0b786c52caa4e164de", 18859 - "sha256": "0z1bdrs5v6rxgbakawzcv57llsccgmc6lch0c31qss6dchih9y98" 18860 }, 18861 "stable": { 18862 "version": [ ··· 19063 "repo": "emacs-lsp/dap-mode", 19064 "unstable": { 19065 "version": [ 19066 - 20220507, 19067 - 1711 19068 ], 19069 "deps": [ 19070 "bui", ··· 19076 "posframe", 19077 "s" 19078 ], 19079 - "commit": "d534b4a2f9ec3f9e4d804a660830764bed062e15", 19080 - "sha256": "1ww9hlwa3912gkny16chvk4s7qzn2sl0hf81dijismxwwlpcmhid" 19081 }, 19082 "stable": { 19083 "version": [ ··· 19430 20220409, 19431 620 19432 ], 19433 - "commit": "09290bf700cc269ad3c07d9518cd758b90971fcd", 19434 - "sha256": "16in48zcxq2zdlz40zf6nxi87xk6a6p14fms9z931rcilhl5p2d8" 19435 }, 19436 "stable": { 19437 "version": [ ··· 19479 "deps": [ 19480 "dashboard" 19481 ], 19482 - "commit": "d8c435ac251ec6493da10882cb161c0e9df03b91", 19483 - "sha256": "1dca3s6lj19x0vrmqgw7d4wlqby528lal2q1nvq2zm159y6r6bv6" 19484 }, 19485 "stable": { 19486 "version": [ ··· 21009 "deps": [ 21010 "compat" 21011 ], 21012 - "commit": "09073e6bfd21f3a7f8fcf1e2e7c49994cdee7d2a", 21013 - "sha256": "0g8wdsf8rbyl2z9h4d40hjxqp3krj3vkrwwc3j36pzrc48ms2wl1" 21014 }, 21015 "stable": { 21016 "version": [ ··· 22130 "repo": "alexluigit/dirvish", 22131 "unstable": { 22132 "version": [ 22133 - 20220508, 22134 - 1705 22135 ], 22136 - "commit": "75d5abb62670dac0dce3e43e8dbe2e42b7abe6ab", 22137 - "sha256": "0li4sgwv68w70dfig4r1y4ksax88ffwbhlqri8wps2kaa9786gny" 22138 }, 22139 "stable": { 22140 "version": [ ··· 23753 "url": "https://git.sr.ht/~niklaseklund/dtache", 23754 "unstable": { 23755 "version": [ 23756 - 20220501, 23757 - 931 23758 ], 23759 - "commit": "9becf3a921a0fde3a6e5d6f30379cf3d9826d565", 23760 - "sha256": "0h2kr7clrn0knws52dm5h7pmx2ws5bm1y3z4xmrhsc1vrv4rlk16" 23761 }, 23762 "stable": { 23763 "version": [ ··· 23961 20210909, 23962 1010 23963 ], 23964 - "commit": "9ccfc6122533ab8ed80e0c4587b582baa214c6d5", 23965 - "sha256": "1bgs80aw6jhrwpx7y56mxpx921hap99nxhiaq5ccjql6wfm47mzi" 23966 }, 23967 "stable": { 23968 "version": [ ··· 24611 "repo": "leoliu/easy-kill", 24612 "unstable": { 24613 "version": [ 24614 - 20220311, 24615 - 1506 24616 ], 24617 "deps": [ 24618 "cl-lib" 24619 ], 24620 - "commit": "f9b450a87c41e5ef616df565ed158cb236aa5189", 24621 - "sha256": "05drsb7kaksdsk1v0i5gip255rvlziirl4wcana08cpm9v9p4m21" 24622 }, 24623 "stable": { 24624 "version": [ ··· 25142 "repo": "Fanael/edit-indirect", 25143 "unstable": { 25144 "version": [ 25145 - 20220216, 25146 - 1812 25147 ], 25148 - "commit": "e3d86416bcf8ddca951d7d112e57ad30c5f9a081", 25149 - "sha256": "0f5vhppsjw63dkwka6xanmlliq44vf3kj1wp3dg8a6a837xx7z9x" 25150 }, 25151 "stable": { 25152 "version": [ 25153 0, 25154 1, 25155 - 8 25156 ], 25157 - "commit": "e3d86416bcf8ddca951d7d112e57ad30c5f9a081", 25158 - "sha256": "0f5vhppsjw63dkwka6xanmlliq44vf3kj1wp3dg8a6a837xx7z9x" 25159 } 25160 }, 25161 { ··· 25620 "repo": "joaotavora/eglot", 25621 "unstable": { 25622 "version": [ 25623 - 20220503, 25624 - 953 25625 ], 25626 "deps": [ 25627 "eldoc", ··· 25631 "seq", 25632 "xref" 25633 ], 25634 - "commit": "f8556b7e76ef7086191c469979274e499d992aed", 25635 - "sha256": "011i3afyxqfs7nidm7f0p4gb3v62fhxzvq2jhlygla5fz7bf36ww" 25636 }, 25637 "stable": { 25638 "version": [ ··· 25849 "repo": "kostafey/ejc-sql", 25850 "unstable": { 25851 "version": [ 25852 - 20220414, 25853 - 1329 25854 ], 25855 "deps": [ 25856 "clomacs", ··· 25858 "direx", 25859 "spinner" 25860 ], 25861 - "commit": "5c6341c751da9c7dbed43eafc8e99f456c1de0d2", 25862 - "sha256": "0809fv33w9lnlfj46adm2jvy5fmhvinhkxr0pkmvy3ppnc1ira5k" 25863 }, 25864 "stable": { 25865 "version": [ ··· 25923 "repo": "xgqt/emacs-el-fetch", 25924 "unstable": { 25925 "version": [ 25926 - 20220426, 25927 - 2053 25928 ], 25929 - "commit": "f9d396437ee0cc5362a80b8ce11e15cfe4d2d510", 25930 - "sha256": "0gldjrggh829cllad5hzgi5my5c98c1qf6nkbyrc144ds79qnpj5" 25931 }, 25932 "stable": { 25933 "version": [ 25934 - 1, 25935 - 1, 25936 - 1 25937 ], 25938 - "commit": "2350ae0bf7ed6a98b63c25b73ce8862528ac3a1e", 25939 - "sha256": "0gldjrggh829cllad5hzgi5my5c98c1qf6nkbyrc144ds79qnpj5" 25940 } 25941 }, 25942 { ··· 26073 }, 26074 { 26075 "ename": "el-patch", 26076 - "commit": "2f4f57e0edbae35597aa4a7744d22d2f971d5de5", 26077 - "sha256": "1imijmsni8c8fxjrzprnanf94c1pma3h5w9p75c4y99l8l3xmj7g", 26078 "fetcher": "github", 26079 - "repo": "raxod502/el-patch", 26080 "unstable": { 26081 "version": [ 26082 - 20220417, 26083 - 1946 26084 ], 26085 - "commit": "d4f4574bcf4005f4fbafde8874cb19b907783956", 26086 - "sha256": "0qkx7f19kl85n56bp3q40200a6ynpkhimcnb3k6x4n6idn6ff2pa" 26087 }, 26088 "stable": { 26089 "version": [ ··· 27651 833 27652 ], 27653 "commit": "bf0dd36eb2f5b339c6b561dbe3ee9693565b484b", 27654 - "error": [ 27655 - "exited abnormally with code 1\n", 27656 - "", 27657 - "Initialized empty Git repository in /run/user/1000/git-checkout-tmp-e2NiTqKt/elpher-bf0dd36/.git/\nfatal: unable to access 'https://thelambdalab.xyz/git/elpher.git/': SSL certificate problem: certificate has expired\nfatal: unable to access 'https://thelambdalab.xyz/git/elpher.git/': SSL certificate problem: certificate has expired\nfatal: unable to access 'https://thelambdalab.xyz/git/elpher.git/': SSL certificate problem: certificate has expired\nUnable to checkout bf0dd36eb2f5b339c6b561dbe3ee9693565b484b from https://thelambdalab.xyz/git/elpher.git.\n" 27658 - ] 27659 }, 27660 "stable": { 27661 "version": [ ··· 27664 1 27665 ], 27666 "commit": "bf0dd36eb2f5b339c6b561dbe3ee9693565b484b", 27667 - "error": [ 27668 - "exited abnormally with code 1\n", 27669 - "", 27670 - "Initialized empty Git repository in /run/user/1000/git-checkout-tmp-e2NiTqKt/elpher-bf0dd36/.git/\nfatal: unable to access 'https://thelambdalab.xyz/git/elpher.git/': SSL certificate problem: certificate has expired\nfatal: unable to access 'https://thelambdalab.xyz/git/elpher.git/': SSL certificate problem: certificate has expired\nfatal: unable to access 'https://thelambdalab.xyz/git/elpher.git/': SSL certificate problem: certificate has expired\nUnable to checkout bf0dd36eb2f5b339c6b561dbe3ee9693565b484b from https://thelambdalab.xyz/git/elpher.git.\n" 27671 - ] 27672 } 27673 }, 27674 { ··· 28218 "emacsql", 28219 "emacsql-sqlite" 28220 ], 28221 - "commit": "5501f7b7577dc8aa968c0d2183d081f334ad051a", 28222 - "sha256": "06wi7z526gxqa763i214z19nx399ijx8arjyg33j1mj6bssjpys3" 28223 } 28224 }, 28225 { ··· 28238 "emacsql-sqlite", 28239 "sqlite3" 28240 ], 28241 - "commit": "5501f7b7577dc8aa968c0d2183d081f334ad051a", 28242 - "sha256": "06wi7z526gxqa763i214z19nx399ijx8arjyg33j1mj6bssjpys3" 28243 } 28244 }, 28245 { ··· 28376 "repo": "oantolin/embark", 28377 "unstable": { 28378 "version": [ 28379 - 20220507, 28380 - 1654 28381 ], 28382 - "commit": "857c8403529f54bfeecf460fe98b1a0b8e206802", 28383 - "sha256": "09rpnr8lxk5gpjx4vbsi59027yggwh68909vqyxhbqqs2d7f9n26" 28384 }, 28385 "stable": { 28386 "version": [ ··· 28406 "consult", 28407 "embark" 28408 ], 28409 - "commit": "857c8403529f54bfeecf460fe98b1a0b8e206802", 28410 - "sha256": "09rpnr8lxk5gpjx4vbsi59027yggwh68909vqyxhbqqs2d7f9n26" 28411 }, 28412 "stable": { 28413 "version": [ ··· 29305 "repo": "emacscollective/epkg", 29306 "unstable": { 29307 "version": [ 29308 - 20220503, 29309 - 1115 29310 ], 29311 "deps": [ 29312 "closql", 29313 "compat" 29314 ], 29315 - "commit": "384222d9396f14e6b36a8d67abe6b3ede7418f0b", 29316 - "sha256": "0dmpwhk8ym6adsnfdb0qphksqmb20pwssxhzab528wylz5hcny1k" 29317 }, 29318 "stable": { 29319 "version": [ ··· 29336 "repo": "emacscollective/epkg-marginalia", 29337 "unstable": { 29338 "version": [ 29339 - 20220424, 29340 - 2211 29341 ], 29342 "deps": [ 29343 "compat", 29344 "epkg", 29345 "marginalia" 29346 ], 29347 - "commit": "73519c62db12c17804bfbcdfb0a6028389374bec", 29348 - "sha256": "0r3pxnd0rbfafzfmjln37c0njs1pnn6rzfblvbmplscyzqw7iqgy" 29349 }, 29350 "stable": { 29351 "version": [ ··· 29959 20200914, 29960 644 29961 ], 29962 - "commit": "7615aa55068754d36711e19bfc926b87d5b8f33c", 29963 - "sha256": "1ix15ff08adkvlpvh6v5cpx6an0y965rm9d06zallsg1wrzr2rcl" 29964 }, 29965 "stable": { 29966 "version": [ ··· 29984 20220215, 29985 1844 29986 ], 29987 - "commit": "76c8ad7cf3c0c2c0d940ec1ad170c156f89213a1", 29988 - "sha256": "1w8l0j4mxasrw5y5s65mph48h44mw2ybxb5vjmrzvr7qbwdvrs5a" 29989 }, 29990 "stable": { 29991 "version": [ ··· 31555 "repo": "emacs-evil/evil", 31556 "unstable": { 31557 "version": [ 31558 - 20220507, 31559 - 902 31560 ], 31561 "deps": [ 31562 "cl-lib", 31563 "goto-chg" 31564 ], 31565 - "commit": "61a680042f422be715b42ceccb2418847c5f6b65", 31566 - "sha256": "0imcxr2lq1bqpcbqv97lly904iq8iz30gry1qgj4phmksji73b42" 31567 }, 31568 "stable": { 31569 "version": [ ··· 32322 "repo": "redguardtoo/evil-matchit", 32323 "unstable": { 32324 "version": [ 32325 - 20220414, 32326 - 1316 32327 ], 32328 "deps": [ 32329 "evil" 32330 ], 32331 - "commit": "b314e816bacfc01bb7df9b19a06b18638af5cdbe", 32332 - "sha256": "01r85bnmqbmvwlhv5ihglp0dhws1g2wsw2vy0vsw5mi5mmx2xsqr" 32333 }, 32334 "stable": { 32335 "version": [ ··· 33082 "deps": [ 33083 "evil" 33084 ], 33085 - "commit": "61a680042f422be715b42ceccb2418847c5f6b65", 33086 - "sha256": "0imcxr2lq1bqpcbqv97lly904iq8iz30gry1qgj4phmksji73b42" 33087 }, 33088 "stable": { 33089 "version": [ ··· 34321 "repo": "rejeep/f.el", 34322 "unstable": { 34323 "version": [ 34324 - 20220405, 34325 - 1534 34326 ], 34327 "deps": [ 34328 "dash", 34329 "s" 34330 ], 34331 - "commit": "b5cb884b3b4372a6f3d1d4428cf092ca1e5c8044", 34332 - "sha256": "04wa28css71k5h7faxybczl0qy008kk1m5pdfb53g7ybjrn5cxdn" 34333 }, 34334 "stable": { 34335 "version": [ ··· 34492 "repo": "WJCFerguson/emacs-faff-theme", 34493 "unstable": { 34494 "version": [ 34495 - 20220407, 34496 - 145 34497 ], 34498 - "commit": "f824c3f55ea42d65e0b632879c6948d3eb43b2f3", 34499 - "sha256": "1i36ndcak5svml173v98dnw9vwa8bc0qxhnkwsrwmrnvg44rw0a0" 34500 }, 34501 "stable": { 34502 "version": [ ··· 34992 "url": "https://git.sr.ht/~technomancy/fennel-mode", 34993 "unstable": { 34994 "version": [ 34995 - 20220429, 34996 - 1636 34997 ], 34998 - "commit": "90498bd9c8dac2749baaddb605d35370aa79ba15", 34999 - "sha256": "1793gakvc7rdjx2f41f3wlk10l34577dwrrlw82rp6gy668x6zw5" 35000 }, 35001 "stable": { 35002 "version": [ ··· 35005 1 35006 ], 35007 "commit": "54ed0792d0ac43a2d5db39741cf070c627368419", 35008 - "sha256": "1bfd983zdhq097bb101k8p7x4jkmkgaxfj7s7aiyf4s3zq84v6xy" 35009 } 35010 }, 35011 { ··· 37281 "deps": [ 37282 "flycheck" 37283 ], 37284 - "commit": "327f1c13e4f404b1bdd25b10f7e7ac7d7e3bdac0", 37285 - "sha256": "0mxzcms7i2jmagfbgj9sb605c21q6a9v5bs5nsjfqvi5jbj9prfv" 37286 }, 37287 "stable": { 37288 "version": [ ··· 37360 "grammarly", 37361 "s" 37362 ], 37363 - "commit": "6cc8a7553ac84a229090ca8ffa6aa7d34de35cde", 37364 - "sha256": "1qqw9if8cv0mgk2xgki2yzhjmhj20acj2aqmqvhf8ndi4k0s13f4" 37365 }, 37366 "stable": { 37367 "version": [ ··· 37786 "deps": [ 37787 "flycheck" 37788 ], 37789 - "commit": "6dc29319973ff86f8f83c988f3e093b28c746aba", 37790 - "sha256": "17d392z4m6r06xnk67ipzp5vh585bs21lc7d60v9sihar61awdn4" 37791 }, 37792 "stable": { 37793 "version": [ ··· 39093 "deps": [ 39094 "flymake" 39095 ], 39096 - "commit": "95806594cacddbbc0c3aa2351a6a7cf28e73a8bf", 39097 - "sha256": "19h47khw9p68yk9z4z7jrakniiwc1b3ca1r2017h3ldzmpacwa6y" 39098 }, 39099 "stable": { 39100 "version": [ ··· 39321 "grammarly", 39322 "s" 39323 ], 39324 - "commit": "7764178e6b51ccf0ce984b97385c22b2696d54f0", 39325 - "sha256": "1q5qn4abjh1l93n56ps856j6aqha2j7yjxbwjwwj0clyfb7bxccf" 39326 }, 39327 "stable": { 39328 "version": [ ··· 39577 "repo": "emacs-languagetool/flymake-languagetool", 39578 "unstable": { 39579 "version": [ 39580 - 20220414, 39581 - 429 39582 ], 39583 "deps": [ 39584 "s" 39585 ], 39586 - "commit": "db6abad075734dd01dbbd31cfec7ecb65ba16404", 39587 - "sha256": "06w5mr32mrmys8gfbpx5srbbap76607by5y3l174y0n5zxgmzz9w" 39588 }, 39589 "stable": { 39590 "version": [ ··· 39700 "deps": [ 39701 "flymake" 39702 ], 39703 - "commit": "ee515ffdeb2a3b1162c82089e94cc31186eb2001", 39704 - "sha256": "1nv82s7m6mpkjlqx5diis9kzmlqkc2q6l3f1mkdf9h7vhkk6had6" 39705 }, 39706 "stable": { 39707 "version": [ ··· 39789 "deps": [ 39790 "flymake-easy" 39791 ], 39792 - "commit": "2d442cff3408ecf3e576f0f3406fd6f567b16fa7", 39793 - "sha256": "03fhic235z8vywmnj5yri275pggwc87hlahypdvh5w4i45hxa78r" 39794 }, 39795 "stable": { 39796 "version": [ ··· 40769 20191004, 40770 1850 40771 ], 40772 - "commit": "350af0e5d53307c900e4f8b2617f3852f51a74d2", 40773 - "sha256": "097pd9ihnzjiaxbzrabcw0016wdwrljs9b5s6cbkrrbgicngb8vj" 40774 } 40775 }, 40776 { ··· 40862 "transient", 40863 "yaml" 40864 ], 40865 - "commit": "29fc1302382700dc7ecb5e0fe20e47b8a9d0a1a4", 40866 - "sha256": "1v5nq39fqzzc83syap8icclic7hjaq91y45rx5y9a6rs5dv53akc" 40867 }, 40868 "stable": { 40869 "version": [ ··· 40918 "repo": "lassik/emacs-format-all-the-code", 40919 "unstable": { 40920 "version": [ 40921 - 20220412, 40922 - 1141 40923 ], 40924 "deps": [ 40925 "inheritenv", 40926 "language-id" 40927 ], 40928 - "commit": "a07bf109ce8e27458a40420508943f53856549fc", 40929 - "sha256": "0sj30s70nmm09rlq5h2fxjmrlw2mcwq30ncwqvlxqawpfpxzn5yj" 40930 }, 40931 "stable": { 40932 "version": [ ··· 41223 "repo": "tarsius/frameshot", 41224 "unstable": { 41225 "version": [ 41226 - 20220422, 41227 - 1610 41228 ], 41229 "deps": [ 41230 "compat" 41231 ], 41232 - "commit": "fa5e2363efabc2e61e79bd66c96e7d1a5c827a0d", 41233 - "sha256": "1ywl7dc6ksynvcx3v3y8j96lpydwx5jkb2b90dd3skqrxpfqr9vm" 41234 }, 41235 "stable": { 41236 "version": [ ··· 41687 "deps": [ 41688 "cl-lib" 41689 ], 41690 - "commit": "b90d529eacb643421991f94288151e72ed573b55", 41691 - "sha256": "0qfkryfmmhv5h5i0xx50ggs0d4kagy3zpifinr831fswkgc1garv" 41692 }, 41693 "stable": { 41694 "version": [ ··· 41886 20211231, 41887 1837 41888 ], 41889 - "commit": "ea361ce0f702c5f92ad4a89017def9c1619a3191", 41890 - "sha256": "11kni370swrlvhj38piw55kwa1wfn6g20fjqrlaq9hg93xrah9xp" 41891 }, 41892 "stable": { 41893 "version": [ ··· 41960 "deps": [ 41961 "compat" 41962 ], 41963 - "commit": "4bd3c23c3dc649ab5412e2bad7eebe3069363190", 41964 - "sha256": "112a291aznh3jzcbdl4hm8xqk3nbhkab2yx604a89w69hwi960yl" 41965 }, 41966 "stable": { 41967 "version": [ ··· 42082 "repo": "ShiroTakeda/gams-mode", 42083 "unstable": { 42084 "version": [ 42085 - 20220501, 42086 - 1507 42087 ], 42088 - "commit": "1964d9a52693f3aa9279eed8864bc317ee5c6dc4", 42089 - "sha256": "070qmshqn6gz4av3rzbjihlw6psx5c61kbcwdymswzfzmhg5dyn6" 42090 }, 42091 "stable": { 42092 "version": [ ··· 42189 "repo": "godotengine/emacs-gdscript-mode", 42190 "unstable": { 42191 "version": [ 42192 - 20210328, 42193 - 2037 42194 ], 42195 - "commit": "4badcf6a0c951daba4d7259db3913b78254c0423", 42196 - "sha256": "0m2nqgv6k5ficqym5z453ni12bncxyi5xhxx1dii4vfckx80b1n6" 42197 }, 42198 "stable": { 42199 "version": [ ··· 42877 "repo": "leoliu/ggtags", 42878 "unstable": { 42879 "version": [ 42880 - 20220420, 42881 - 1610 42882 ], 42883 - "commit": "22d3a3a951cb605d29138f1acee191ef674a4518", 42884 - "sha256": "05jl5b2s3chqz67fapxrr3189scrsb2mvjn255hficrghzw0dh1s" 42885 }, 42886 "stable": { 42887 "version": [ ··· 43093 "let-alist", 43094 "treepy" 43095 ], 43096 - "commit": "f3a26544575303e86b423a3406656f0e5a576d67", 43097 - "sha256": "1ha1mcrgnckz04hq2vslcdd60m0dqqrcbqj2h601wmv8qrf6m5hz" 43098 }, 43099 "stable": { 43100 "version": [ ··· 43460 "transient", 43461 "with-editor" 43462 ], 43463 - "commit": "f331092df4d4dfc0a2a7424d929a9c845088d57f", 43464 - "sha256": "0vp5zqi980lb220i0gayiksy1hmkqsfjqbvhnhy7iwxqd3w7nxb3" 43465 }, 43466 "stable": { 43467 "version": [ ··· 43801 20220422, 43802 1611 43803 ], 43804 - "commit": "96abfb732d695cbd2075ba701254651a7b28d693", 43805 - "sha256": "0d3d1nwjbx6843344kvf80gmcnad0jdxml6abw27b5pi31dx2wp4" 43806 }, 43807 "stable": { 43808 "version": [ ··· 46381 "repo": "vmware/govmomi", 46382 "unstable": { 46383 "version": [ 46384 - 20191213, 46385 - 2131 46386 ], 46387 "deps": [ 46388 "dash", ··· 46390 "magit-popup", 46391 "s" 46392 ], 46393 - "commit": "be5528b51ec58f28601350e466e662727cf6c7c4", 46394 - "sha256": "0w9hv2h74cdk84fj6vdsnw4pbqfcf9n0ibj2qp3xn8aw8spkg70f" 46395 }, 46396 "stable": { 46397 "version": [ ··· 46617 "repo": "emacs-grammarly/grammarly", 46618 "unstable": { 46619 "version": [ 46620 - 20220222, 46621 - 638 46622 ], 46623 "deps": [ 46624 "request", 46625 "s", 46626 "websocket" 46627 ], 46628 - "commit": "1d616a446c64dfe7d85f80cd38ce2a1e2a3b0f34", 46629 - "sha256": "0rrq46pg4h8ymyq3s9iqkkcjxd0rd2a018zksxg2xsj6hdq6rrh3" 46630 }, 46631 "stable": { 46632 "version": [ ··· 47815 "repo": "iain/hamburger-menu-mode", 47816 "unstable": { 47817 "version": [ 47818 - 20160825, 47819 - 2031 47820 ], 47821 - "commit": "3568159c693c30bed7f61580e4f3b6241253ad4e", 47822 - "sha256": "1nykpp8afa0c0wiax1qn8wf5hfjaixk5kn4yhcw40z00pb8i2z5f" 47823 }, 47824 "stable": { 47825 "version": [ 47826 1, 47827 0, 47828 - 5 47829 ], 47830 - "commit": "fd37f013c2f2619a88d3ed5311a9d1308cc82614", 47831 - "sha256": "1nykpp8afa0c0wiax1qn8wf5hfjaixk5kn4yhcw40z00pb8i2z5f" 47832 } 47833 }, 47834 { ··· 48454 "repo": "emacs-helm/helm", 48455 "unstable": { 48456 "version": [ 48457 - 20220508, 48458 - 1455 48459 ], 48460 "deps": [ 48461 "helm-core", 48462 "popup" 48463 ], 48464 - "commit": "4402bd042f9af15cc671175061795b36d0cbe434", 48465 - "sha256": "1zlnfbddi67h6ks6z0q24jpqzkgqj3y7w0i537zsi3f8rdpv1m8a" 48466 }, 48467 "stable": { 48468 "version": [ ··· 49360 "repo": "emacs-helm/helm", 49361 "unstable": { 49362 "version": [ 49363 - 20220503, 49364 - 622 49365 ], 49366 "deps": [ 49367 "async" 49368 ], 49369 - "commit": "4402bd042f9af15cc671175061795b36d0cbe434", 49370 - "sha256": "1zlnfbddi67h6ks6z0q24jpqzkgqj3y7w0i537zsi3f8rdpv1m8a" 49371 }, 49372 "stable": { 49373 "version": [ ··· 52362 "s", 52363 "searcher" 52364 ], 52365 - "commit": "fcb4aa5a36ee4555e46756704da50ccf7f13c21d", 52366 - "sha256": "1g5vpak8ibsh68a5zh0a4bjdcpiik4q0ljamph98iqq7nwj1a4r2" 52367 }, 52368 "stable": { 52369 "version": [ ··· 54251 "deps": [ 54252 "compat" 54253 ], 54254 - "commit": "6769accd7003ba5a0376d2c5cef0fcffce8f45be", 54255 - "sha256": "16jgnv26jp3zxz2gry6703gi4p9v8ggm4ljhm85bg84ana81rhw0" 54256 }, 54257 "stable": { 54258 "version": [ ··· 56424 "deps": [ 56425 "compat" 56426 ], 56427 - "commit": "51aeac9f3a24f23d063f591066675d1d70dcea09", 56428 - "sha256": "1zl2lkdflssii5mvxr2hgz6spx4qpbvixrm1jj0nrh128s23jx9m" 56429 }, 56430 "stable": { 56431 "version": [ ··· 58916 }, 58917 { 58918 "ename": "ivy-prescient", 58919 - "commit": "a92495d09689932ab9f0b716078ceeeb9cc154e0", 58920 - "sha256": "017ibpbj390q5d051k3wn50774wvcixzbwikvi5ifzqkhgixqk9c", 58921 "fetcher": "github", 58922 - "repo": "raxod502/prescient.el", 58923 "unstable": { 58924 "version": [ 58925 - 20220501, 58926 - 2235 58927 ], 58928 "deps": [ 58929 "ivy", 58930 "prescient" 58931 ], 58932 - "commit": "d9b30d741c729a37eb2c6e51d72281c0844780ca", 58933 - "sha256": "1n9sa0wvw8yhq2l82hfpx1pgg7lmphd18xrjx6jfqfdkna9j3a8j" 58934 }, 58935 "stable": { 58936 "version": [ ··· 60061 "repo": "Michael-Allan/Java_Mode_Tamed", 60062 "unstable": { 60063 "version": [ 60064 - 20220312, 60065 - 1945 60066 ], 60067 - "commit": "44280538a2b780536c56ee2a51b7a5b03d376a2e", 60068 - "sha256": "1x5k9d1iq33ds8cszcyl2bhbr8hkldq6hph1b77zayqyg00pnly4" 60069 } 60070 }, 60071 { ··· 60995 "repo": "gcv/julia-snail", 60996 "unstable": { 60997 "version": [ 60998 - 20220508, 60999 - 456 61000 ], 61001 "deps": [ 61002 "dash", ··· 61006 "spinner", 61007 "vterm" 61008 ], 61009 - "commit": "47cfc8cc0c5b383b0647c91e657f1ffeaf73cce8", 61010 - "sha256": "1n7igv0lfkx9zh12lhbc77mg3ycl3qmc58982damh7r4cvq1lv4w" 61011 }, 61012 "stable": { 61013 "version": [ ··· 61034 "repo": "shg/julia-vterm.el", 61035 "unstable": { 61036 "version": [ 61037 - 20220503, 61038 - 7 61039 ], 61040 "deps": [ 61041 "vterm" 61042 ], 61043 - "commit": "443924f6eb77d64a20b4b34a99d3c7d2d54f73a8", 61044 - "sha256": "00piv8ifjhpwsk0rwnz9nph02ws1yiybqn4yxb7wv3ppxy139vzx" 61045 }, 61046 "stable": { 61047 "version": [ ··· 61948 "deps": [ 61949 "compat" 61950 ], 61951 - "commit": "0c37db482ca98e729430121209d70dd093082a5e", 61952 - "sha256": "1i4l145k9jrl8dv5wkcg3nbm6s0as1myz8vzh4k9rdi2ra6lkajr" 61953 }, 61954 "stable": { 61955 "version": [ ··· 62048 "deps": [ 62049 "compat" 62050 ], 62051 - "commit": "0fd91fef890fb4c18c552e5ecaddd53c9bdac2bd", 62052 - "sha256": "1qhl8zq0b8qzanglw2j1c7ll4ifryvjmf3z4y9c22pfr5xf187c2" 62053 }, 62054 "stable": { 62055 "version": [ ··· 62180 20220222, 62181 639 62182 ], 62183 - "commit": "5236c2aa6a4f2deeb0421c7d1c315ed9e6b6222a", 62184 - "sha256": "0374kgz3gv9h0gksmn91cbbf5hrwjy981f2prk0wl5djwks8nb3i" 62185 }, 62186 "stable": { 62187 "version": [ ··· 62751 "repo": "abrochard/kubel", 62752 "unstable": { 62753 "version": [ 62754 - 20220426, 62755 - 1722 62756 ], 62757 "deps": [ 62758 "dash", ··· 62760 "transient", 62761 "yaml-mode" 62762 ], 62763 - "commit": "dea03843dc7b152cdfb84c14e076cf79a721a87f", 62764 - "sha256": "1y4qy6v2nj3pimffdsc2bgjlb10hvvbhpnizv3xnhcb3brfz3ddr" 62765 }, 62766 "stable": { 62767 "version": [ ··· 62793 "evil", 62794 "kubel" 62795 ], 62796 - "commit": "dea03843dc7b152cdfb84c14e076cf79a721a87f", 62797 - "sha256": "1y4qy6v2nj3pimffdsc2bgjlb10hvvbhpnizv3xnhcb3brfz3ddr" 62798 }, 62799 "stable": { 62800 "version": [ ··· 62931 "deps": [ 62932 "s" 62933 ], 62934 - "commit": "1c80df0f2c542f54920f18aa4eb837f0a51c7676", 62935 - "sha256": "0hmsf7kgzmpzri3ggb7l6y3pvfpinfv0d24fnxpbp1zd17lfwks1" 62936 }, 62937 "stable": { 62938 "version": [ ··· 63015 "deps": [ 63016 "seq" 63017 ], 63018 - "commit": "c2466e52702a189fcc1ecad25cc1ad9f203f6627", 63019 - "sha256": "1j6m799hxwlj9mlnqv4s9ngjfc1m7ih81sv8nmjb1ci9xilkhgdq" 63020 }, 63021 "stable": { 63022 "version": [ ··· 63039 "repo": "tecosaur/LaTeX-auto-activating-snippets", 63040 "unstable": { 63041 "version": [ 63042 - 20220301, 63043 - 1629 63044 ], 63045 "deps": [ 63046 "aas", 63047 "auctex", 63048 "yasnippet" 63049 ], 63050 - "commit": "b372f9a44bea03cce09b20cd2409e3ae3fa2d651", 63051 - "sha256": "1f2cfvc4iz71x43z8f7v24cnfdvn249685qqz9lz16j2sga9f3y1" 63052 }, 63053 "stable": { 63054 "version": [ ··· 63172 "highlight", 63173 "math-symbol-lists" 63174 ], 63175 - "commit": "d264cd8ed859635dc0f71e1d9213a911b46939b6", 63176 - "sha256": "1x87q32r73vfawk0ijxddlib1f278lwmj8fq8zhs090npj0rw427" 63177 }, 63178 "stable": { 63179 "version": [ ··· 63687 "repo": "AnselmC/le-thesaurus.el", 63688 "unstable": { 63689 "version": [ 63690 - 20220508, 63691 - 1442 63692 ], 63693 "deps": [ 63694 "request" 63695 ], 63696 - "commit": "941390e5ca942c7459faf4e5988898baaa66fa14", 63697 - "sha256": "076rjjsl4iq7bxky6ca67q3zfc7xnnrl4isdyd1csh0b1sxhalx9" 63698 } 63699 }, 63700 { ··· 64573 20220209, 64574 755 64575 ], 64576 - "commit": "87084396a2927d6921a794e40322e4affcbde2df", 64577 - "sha256": "1d6wq2k9js8s4sbwrvlls9w79p4l5d31fkb2hphmaijx07w1a6ks" 64578 }, 64579 "stable": { 64580 "version": [ ··· 64583 3 64584 ], 64585 "commit": "8fcf8424cbfb06d3b5a89b2ce60826a5e4bf76f4", 64586 - "sha256": "0h81778qq5j18gq8vyynb4x41zczvvprvvnis0xjl1mhpi5z2l72" 64587 } 64588 }, 64589 { ··· 64603 "indicators", 64604 "ov" 64605 ], 64606 - "commit": "41bc1b7f0e9dd150b99aeb47c4c9874d7c6c2d9b", 64607 - "sha256": "088g5wlgq6xvix2kkwzh4df556p9bn8hjlwks420ym3lp97syx9a" 64608 }, 64609 "stable": { 64610 "version": [ ··· 65440 "repo": "donkirkby/live-py-plugin", 65441 "unstable": { 65442 "version": [ 65443 - 20220404, 65444 - 0 65445 ], 65446 - "commit": "b466460b6783caacf1ea3fcfa28752cb73fd0805", 65447 - "sha256": "0r0959gy5jq42656pqimap2l790hyb0l3zxqdi2wb02d21276jwl" 65448 }, 65449 "stable": { 65450 "version": [ ··· 65560 "deps": [ 65561 "seq" 65562 ], 65563 - "commit": "adc5d169fad53d6d11000a72dc95f8489a8c7534", 65564 - "sha256": "1c1yvndzs7lry8nw1bhks4vjlvbjg1fikcpf3xdlfahahp3w1dh9" 65565 }, 65566 "stable": { 65567 "version": [ ··· 66074 "repo": "okamsn/loopy", 66075 "unstable": { 66076 "version": [ 66077 - 20220508, 66078 - 2220 66079 ], 66080 "deps": [ 66081 "map", 66082 "seq" 66083 ], 66084 - "commit": "5608825f3eaa30c23ae495a4ce6f6458672743ba", 66085 - "sha256": "1jgh82idfrcpnyik3zd129lg0f0mayjnc7xd1wk2jbh84vv217ds" 66086 }, 66087 "stable": { 66088 "version": [ ··· 66113 "dash", 66114 "loopy" 66115 ], 66116 - "commit": "5608825f3eaa30c23ae495a4ce6f6458672743ba", 66117 - "sha256": "1jgh82idfrcpnyik3zd129lg0f0mayjnc7xd1wk2jbh84vv217ds" 66118 }, 66119 "stable": { 66120 "version": [ ··· 66288 "repo": "emacs-grammarly/lsp-grammarly", 66289 "unstable": { 66290 "version": [ 66291 - 20220222, 66292 - 638 66293 ], 66294 "deps": [ 66295 "grammarly", ··· 66298 "request", 66299 "s" 66300 ], 66301 - "commit": "2c01e3d8ec55835cf18945786f4a74ad6b7c4260", 66302 - "sha256": "0hwf3i7j2rx2m0p89w14la8kk13k5s3nf19i6bnllymy1aykhwng" 66303 }, 66304 "stable": { 66305 "version": [ 66306 0, 66307 - 2, 66308 - 2 66309 ], 66310 "deps": [ 66311 "grammarly", ··· 66314 "request", 66315 "s" 66316 ], 66317 - "commit": "984037557b7e445183453faffc965fbe56df12f2", 66318 - "sha256": "12q3j0sgsgm73m3i0sw72dzkqa55zn0dbqjgp0g2wryhfhg0zq1p" 66319 } 66320 }, 66321 { ··· 66556 "deps": [ 66557 "lsp-mode" 66558 ], 66559 - "commit": "8eb3a6ad1f20a44eb446834c03bd688558b07236", 66560 - "sha256": "1x6lb4ahyyangrkcf5s8ck7f4c8wjirwh0zkrbjbyigzb30mb1kp" 66561 }, 66562 "stable": { 66563 "version": [ ··· 66582 "repo": "emacs-lsp/lsp-metals", 66583 "unstable": { 66584 "version": [ 66585 - 20220330, 66586 - 1958 66587 ], 66588 "deps": [ 66589 "dap-mode", ··· 66595 "scala-mode", 66596 "treemacs" 66597 ], 66598 - "commit": "b7f77de69431786c54e9a57845e4f2d75fbee053", 66599 - "sha256": "02bp1j7k5hmp3rmlswhn3plr7f8vl10bqgb68safl88hmqlvvgxd" 66600 }, 66601 "stable": { 66602 "version": [ ··· 66626 "repo": "emacs-lsp/lsp-mode", 66627 "unstable": { 66628 "version": [ 66629 - 20220505, 66630 - 630 66631 ], 66632 "deps": [ 66633 "dash", ··· 66637 "markdown-mode", 66638 "spinner" 66639 ], 66640 - "commit": "6327359f3b5e19aeaa1c9ee6bd9b80b51f95f843", 66641 - "sha256": "04aw7iq07nv9b1nhf9qq7sdphhq3fa684rkaxvc23r1zraxxqsdf" 66642 }, 66643 "stable": { 66644 "version": [ ··· 66876 "ht", 66877 "lsp-mode" 66878 ], 66879 - "commit": "3af97828f9c08d782fb2086e3a73bda5759e6788", 66880 - "sha256": "1d1yfgvdyas6vbg992f5s4sayaxjxs33gh13z629x67hx6p22n3r" 66881 }, 66882 "stable": { 66883 "version": [ ··· 66908 "deps": [ 66909 "lsp-mode" 66910 ], 66911 - "commit": "97ff36b228a61e69734c7180f33cc6951b1a600f", 66912 - "sha256": "1pal3mga7nwfcvri1cffsjgcbbhk7wd1icd622qspqgq0zkfs8jd" 66913 } 66914 }, 66915 { ··· 66986 "repo": "emacs-lsp/lsp-ui", 66987 "unstable": { 66988 "version": [ 66989 - 20220425, 66990 - 1046 66991 ], 66992 "deps": [ 66993 "dash", 66994 "lsp-mode", 66995 "markdown-mode" 66996 ], 66997 - "commit": "6cd0409de6ca59c02d752b8e543bb5eaa61357e4", 66998 - "sha256": "1g82vx17wk8g91bshb7i7j7fbmb63032sz1alqlh8b0qc4fw0r39" 66999 }, 67000 "stable": { 67001 "version": [ ··· 67330 "repo": "amake/macports.el", 67331 "unstable": { 67332 "version": [ 67333 - 20220508, 67334 - 656 67335 ], 67336 "deps": [ 67337 "transient" 67338 ], 67339 - "commit": "c2c93f8095ee47cc1da2d4f77487ba586d696305", 67340 - "sha256": "0rl7fkrcfd88mx467jlpc7fvqmp4p6f5ccnkm8jvs902dj28bsw2" 67341 } 67342 }, 67343 { ··· 67524 "repo": "magit/magit", 67525 "unstable": { 67526 "version": [ 67527 - 20220508, 67528 - 1841 67529 ], 67530 "deps": [ 67531 "compat", ··· 67535 "transient", 67536 "with-editor" 67537 ], 67538 - "commit": "f331092df4d4dfc0a2a7424d929a9c845088d57f", 67539 - "sha256": "0vp5zqi980lb220i0gayiksy1hmkqsfjqbvhnhy7iwxqd3w7nxb3" 67540 }, 67541 "stable": { 67542 "version": [ ··· 67615 "url": "https://codeberg.org/ideasman42/emacs-magit-commit-mark.git", 67616 "unstable": { 67617 "version": [ 67618 - 20220507, 67619 - 1118 67620 ], 67621 "deps": [ 67622 "magit" 67623 ], 67624 - "commit": "bea29dc0419122b5dbc68b6b56cb0fbe97729e2d", 67625 - "sha256": "1xl5xr4vi0mafs1sv82sk5bm8qfm9kdl2jfxsv8p3y489fj4pn3c" 67626 } 67627 }, 67628 { ··· 67902 "libgit", 67903 "magit" 67904 ], 67905 - "commit": "f331092df4d4dfc0a2a7424d929a9c845088d57f", 67906 - "sha256": "0vp5zqi980lb220i0gayiksy1hmkqsfjqbvhnhy7iwxqd3w7nxb3" 67907 }, 67908 "stable": { 67909 "version": [ ··· 68058 "compat", 68059 "dash" 68060 ], 68061 - "commit": "f331092df4d4dfc0a2a7424d929a9c845088d57f", 68062 - "sha256": "0vp5zqi980lb220i0gayiksy1hmkqsfjqbvhnhy7iwxqd3w7nxb3" 68063 }, 68064 "stable": { 68065 "version": [ ··· 69308 "repo": "matsievskiysv/math-preview", 69309 "unstable": { 69310 "version": [ 69311 - 20211221, 69312 - 1611 69313 ], 69314 "deps": [ 69315 "dash", 69316 "s" 69317 ], 69318 - "commit": "75dd44ad8dcfa12fe03f8e65babe0ea04e1a7d1a", 69319 - "sha256": "183m24yj54j8mix27q731wdxp1yyjm9qgd82hqflfivldlabm0x8" 69320 } 69321 }, 69322 { ··· 70386 20210131, 70387 2152 70388 ], 70389 - "commit": "b26f842de19a31c36fb5149f292b9117dbf4bed7", 70390 - "sha256": "1f3zhvswjnb4dipjbgy9vcddnmzavyygl3xyhcpspxcxqxj1sj4g" 70391 }, 70392 "stable": { 70393 "version": [ ··· 70795 "deps": [ 70796 "compat" 70797 ], 70798 - "commit": "b0427eea174adb494efc9fa212c22021861d3f76", 70799 - "sha256": "0jzmyf9x9nq4jw8a0b5lisam0wz6vy3f8sxn4dj3anawjivn6ml0" 70800 }, 70801 "stable": { 70802 "version": [ ··· 71315 "deps": [ 71316 "compat" 71317 ], 71318 - "commit": "d33e76efac6978c755bb5e0ced061b0063a6dff9", 71319 - "sha256": "1vzqwijlqvlzwh74gmb5cmc4k932x023361k4csxmpg5xvsgbg0f" 71320 }, 71321 "stable": { 71322 "version": [ ··· 71456 "url": "https://git.sr.ht/~protesilaos/modus-themes", 71457 "unstable": { 71458 "version": [ 71459 - 20220508, 71460 - 909 71461 ], 71462 - "commit": "4da9042dbcf003986dcabcdbccd5cd8f9b583f76", 71463 - "sha256": "0w427z6fl86nbamclvzcyswrfvngzpwkv0k6v2fsn491az207mnk" 71464 }, 71465 "stable": { 71466 "version": [ ··· 71809 "deps": [ 71810 "compat" 71811 ], 71812 - "commit": "ac647781d2d66d57c84a64dfd33b463b4a99b257", 71813 - "sha256": "0g9bq9z030kf4l5za54300zq98396a6f50d9rd9vylyjqsfxv7fk" 71814 }, 71815 "stable": { 71816 "version": [ ··· 71933 "deps": [ 71934 "compat" 71935 ], 71936 - "commit": "b699497363c60bddc18393f68e3c9185e5fbb589", 71937 - "sha256": "0byaqhb1w0z6i87xj87g6ylx4r5bsjipspla0g0zrk33vk7vcfis" 71938 }, 71939 "stable": { 71940 "version": [ ··· 74517 "repo": "m-cat/nimbus-theme", 74518 "unstable": { 74519 "version": [ 74520 - 20220106, 74521 - 2017 74522 ], 74523 - "commit": "f9bcec4ce0f6cd656a56034ace7811dea769a7bb", 74524 - "sha256": "1mfx03mjm8w5djvwafd9p3zyw4aysalw4j57x1sv51shf1fzz2g6" 74525 }, 74526 "stable": { 74527 "version": [ ··· 74940 "repo": "emacscollective/no-littering", 74941 "unstable": { 74942 "version": [ 74943 - 20220505, 74944 - 1324 74945 ], 74946 "deps": [ 74947 "compat" 74948 ], 74949 - "commit": "76b7335202a5b6ddc6b6798a2e2fd5b09df57dc2", 74950 - "sha256": "1g48cmb0d2j5fpr5vm0xjv435b43vlx1h5k2g32qcwhygzvck76v" 74951 }, 74952 "stable": { 74953 "version": [ ··· 74985 "repo": "thomp/noaa", 74986 "unstable": { 74987 "version": [ 74988 - 20220504, 74989 - 1857 74990 ], 74991 "deps": [ 74992 "dash", 74993 "request" 74994 ], 74995 - "commit": "c1f24d46e08972b2be3912e41337eb630514ac06", 74996 - "sha256": "1q927nn8hss0h93jjawkcrzk9fkhk0qdsmsry851bi397sva6n7b" 74997 } 74998 }, 74999 { ··· 75312 "compat", 75313 "notmuch" 75314 ], 75315 - "commit": "2e479851b5cb2d25c31f21b400cfd34777348874", 75316 - "sha256": "1y9i88hadvdz1cd4792g6rvrj6jshva6p74f83qfhw7rhddzvsqn" 75317 }, 75318 "stable": { 75319 "version": [ ··· 75402 "compat", 75403 "notmuch" 75404 ], 75405 - "commit": "f0dcfd755fe9e58652f0569e3c8641d38cd6dd4c", 75406 - "sha256": "1hq91mn8gbyahlx2jjh8jqzsi1pm83ajp744m52hipflbz1w9mw5" 75407 }, 75408 "stable": { 75409 "version": [ ··· 75433 "compat", 75434 "notmuch" 75435 ], 75436 - "commit": "341fe7f05efe68460451bd5cb7151ca6d8b8cfc8", 75437 - "sha256": "0pggrrf2xdb6r2h2fm96fhwl1cdawqn4a509wymr33gafnr5f2rf" 75438 }, 75439 "stable": { 75440 "version": [ ··· 76100 "deps": [ 76101 "axiom-environment" 76102 ], 76103 - "commit": "e60de5ed107ffeb530a56d24d04f38988124d12b", 76104 - "sha256": "0p8kbxfcrx1ib8g17g6h2i2ygy35qq992n3s2xa6ysij7wrfn4hd" 76105 } 76106 }, 76107 { ··· 76612 "repo": "shg/ob-julia-vterm.el", 76613 "unstable": { 76614 "version": [ 76615 - 20210418, 76616 - 2306 76617 ], 76618 "deps": [ 76619 - "julia-vterm" 76620 ], 76621 - "commit": "e04ee53d67cbd715c2d84fe5bc367526edfadc74", 76622 - "sha256": "18866agjrkx2gv38zr14mhf3rlvjdjvn3i8hxg12lrbv6q4rn8aq" 76623 }, 76624 "stable": { 76625 "version": [ ··· 77634 "notmuch", 77635 "org" 77636 ], 77637 - "commit": "744399e054ef3a19f66418fdb98ef9ad139cc3b5", 77638 - "sha256": "0mxhnh64arm8dlna88ml9x9grm0v4fh1zbk1pfav957fxwx9l9dm" 77639 }, 77640 "stable": { 77641 "version": [ ··· 78589 "deps": [ 78590 "async" 78591 ], 78592 - "commit": "5d9f2734c96166722c5057f3a2641ff8e08184cc", 78593 - "sha256": "10isxdaw7mqnw8flc76rva9y04wsyzpv6v0f3lsvkrx044rcz3cr" 78594 }, 78595 "stable": { 78596 "version": [ 78597 0, 78598 - 3, 78599 0 78600 ], 78601 "deps": [ 78602 "async" 78603 ], 78604 - "commit": "ad3c332f062b5830e88b2ab13287a096ae434657", 78605 - "sha256": "05yrw59zrzxj1p8n65sk6mvy7jzik812mp9i2nsimwhlhn3si1pj" 78606 } 78607 }, 78608 { ··· 79838 "repo": "ahungry/org-jira", 79839 "unstable": { 79840 "version": [ 79841 - 20220328, 79842 - 407 79843 ], 79844 "deps": [ 79845 "cl-lib", 79846 "dash", 79847 "request" 79848 ], 79849 - "commit": "502de6d31d0b2fd8480787461b7167d5dd3b088a", 79850 - "sha256": "16wm0k5sa7r12chfz96nfk2474a3wa7q7dinhc7hfl1x5c7v60zk" 79851 }, 79852 "stable": { 79853 "version": [ ··· 79951 "repo": "gizmomogwai/org-kanban", 79952 "unstable": { 79953 "version": [ 79954 - 20220218, 79955 - 1845 79956 ], 79957 "deps": [ 79958 "dash", 79959 "org", 79960 "s" 79961 ], 79962 - "commit": "5310e208d151f460f9b7e3961b4796842e91a3ae", 79963 - "sha256": "1d7v9vn9bli4lj59lbcldhplg46g79038j9avzicwgrysm74ybic" 79964 }, 79965 "stable": { 79966 "version": [ 79967 0, 79968 6, 79969 - 3 79970 ], 79971 "deps": [ 79972 "dash", 79973 "org", 79974 "s" 79975 ], 79976 - "commit": "198ffa2066aadcdd9530dcc9b82cb5626c49e257", 79977 - "sha256": "1lh7hgzbkmhv7hqc0fvgvivkihg96c41ms1v7rcknnp3f1kj195h" 79978 } 79979 }, 79980 { ··· 81175 "repo": "jkitchin/org-ref", 81176 "unstable": { 81177 "version": [ 81178 - 20220505, 81179 - 2209 81180 ], 81181 "deps": [ 81182 "avy", ··· 81190 "parsebib", 81191 "s" 81192 ], 81193 - "commit": "a5a096b0c621fb42aa80cea14677bfb1d0df1f39", 81194 - "sha256": "1xirg1cjzr7dm6ffmhybl3s2vvwy72nz775dqmf3aa4kgvg6n47v" 81195 }, 81196 "stable": { 81197 "version": [ ··· 81338 "repo": "org-roam/org-roam", 81339 "unstable": { 81340 "version": [ 81341 - 20220508, 81342 - 19 81343 ], 81344 "deps": [ 81345 "dash", ··· 81348 "magit-section", 81349 "org" 81350 ], 81351 - "commit": "c0871c42bec9fa836e1b2a8c7691f06694f99714", 81352 - "sha256": "0d7dvmrpmvp0hw9aygflw4jvvjsq89yg227g7bgkcnq8970qbwfz" 81353 }, 81354 "stable": { 81355 "version": [ ··· 81479 "repo": "tyler-dodge/org-runbook", 81480 "unstable": { 81481 "version": [ 81482 - 20220107, 81483 - 451 81484 ], 81485 - "commit": "dd11d253d3ee94b70f0d2cc74c6e85c6f5ac189d", 81486 - "sha256": "1vjmpdvcsqrry4jg07l84nfp7kx0wmjn60l60bcfmzj2mwcz4nak" 81487 }, 81488 "stable": { 81489 "version": [ 81490 1, 81491 - 1, 81492 - 4 81493 ], 81494 - "deps": [ 81495 - "dash", 81496 - "f", 81497 - "ht", 81498 - "mustache", 81499 - "s", 81500 - "seq" 81501 - ], 81502 - "commit": "e5d1e30a05552ce1d63d13ada1487643a41b92cb", 81503 - "sha256": "093jbpanvpwxxdyb9136r804ai1147rbq1gfb7pdy0iymhrv3d9r" 81504 } 81505 }, 81506 { ··· 82383 20220220, 82384 1757 82385 ], 82386 - "commit": "350af0e5d53307c900e4f8b2617f3852f51a74d2", 82387 - "sha256": "097pd9ihnzjiaxbzrabcw0016wdwrljs9b5s6cbkrrbgicngb8vj" 82388 } 82389 }, 82390 { ··· 82889 "magit", 82890 "org" 82891 ], 82892 - "commit": "6dc4d4bfffd6c11550952203a51346b13e120165", 82893 - "sha256": "1xpkwp3qk2jr1rphrcxdmld498prh3cds12y2a9cln27yfg8lkql" 82894 }, 82895 "stable": { 82896 "version": [ ··· 82924 "org", 82925 "orgit" 82926 ], 82927 - "commit": "72285807707a802ebe7f3c6149de9a78a022b17e", 82928 - "sha256": "1n5vhpwy2ay1s106icr542wh7a8zrsr7jbprp76qaqhzfzddkiv7" 82929 }, 82930 "stable": { 82931 "version": [ ··· 82959 "org", 82960 "seq" 82961 ], 82962 - "commit": "36129691e60e992f31065be4c26d58645b83b033", 82963 - "sha256": "0k3x931fv66asdmmgfr44b9wy0z8xv1r324mw91fj8zf4v3ryj05" 82964 }, 82965 "stable": { 82966 "version": [ ··· 83242 "repo": "minad/osm", 83243 "unstable": { 83244 "version": [ 83245 - 20220508, 83246 - 853 83247 ], 83248 - "deps": [ 83249 - "compat" 83250 - ], 83251 - "commit": "45dfc686e527d69b7965752594020a936ddfa9ef", 83252 - "sha256": "1f5f3dgaqhryqachrzwr0wqknp88jmv62dnlgz5nx4k7pkhrmrfm" 83253 }, 83254 "stable": { 83255 "version": [ ··· 83530 "deps": [ 83531 "compat" 83532 ], 83533 - "commit": "e92af60c68c4cb05db84c13bb71becaca90763d7", 83534 - "sha256": "1h2qvvpqz3yi1chhdl8kxc7s98qgn5hyg9131qa5sdn41qx1gi4d" 83535 }, 83536 "stable": { 83537 "version": [ ··· 84040 "repo": "kaushalmodi/ox-hugo", 84041 "unstable": { 84042 "version": [ 84043 - 20220505, 84044 - 2123 84045 ], 84046 "deps": [ 84047 "tomelr" 84048 ], 84049 - "commit": "3c699a1ed3f666735974fb90610d60b41e86a3b2", 84050 - "sha256": "07bmjxqc3bwmn0rs6886jrmxvjag6y97a4zvnypf0yglq3g9aidx" 84051 }, 84052 "stable": { 84053 "version": [ ··· 84877 "repo": "melpa/package-build", 84878 "unstable": { 84879 "version": [ 84880 - 20220210, 84881 - 1334 84882 - ], 84883 - "deps": [ 84884 - "cl-lib" 84885 ], 84886 - "commit": "032e9bd086029b2fdff09c3c2e606e29682e1fb1", 84887 - "sha256": "0jjb1gl6qqkrvf4v03fp9sv69xc6qh3lc65blms46zkx64995c6r" 84888 }, 84889 "stable": { 84890 "version": [ 84891 - 2, 84892 - 4 84893 ], 84894 "deps": [ 84895 "cl-lib" 84896 ], 84897 - "commit": "bc06686806d676658b5e962497770e47025c17f1", 84898 - "sha256": "1lm5mgvjhpxqfw5gcv99h4mwbq728b6f2hj5vjh1j67kdwy7ws8k" 84899 } 84900 }, 84901 { ··· 85062 "deps": [ 85063 "compat" 85064 ], 85065 - "commit": "3489c97340434096f24c64a33feea22e19c18a2c", 85066 - "sha256": "04nz6gl7r9sv51n3yaids524v8ccq5wbblxci1vckzsipbc8ys2i" 85067 }, 85068 "stable": { 85069 "version": [ ··· 85450 20200510, 85451 5 85452 ], 85453 - "commit": "350af0e5d53307c900e4f8b2617f3852f51a74d2", 85454 - "sha256": "097pd9ihnzjiaxbzrabcw0016wdwrljs9b5s6cbkrrbgicngb8vj" 85455 } 85456 }, 85457 { ··· 85638 "deps": [ 85639 "compat" 85640 ], 85641 - "commit": "5dc2c2e06152dc51f7395073569f448a8f94d296", 85642 - "sha256": "0plw57g866z6nafgh8czb2hh87z1l2rihv9cvda3gs4fkh8hvimx" 85643 }, 85644 "stable": { 85645 "version": [ ··· 85852 "repo": "clojure-emacs/parseedn", 85853 "unstable": { 85854 "version": [ 85855 - 20220422, 85856 - 936 85857 ], 85858 "deps": [ 85859 "map", 85860 "parseclj" 85861 ], 85862 - "commit": "dce2eed418ad21acf3d2d6d75c37dfa679b22359", 85863 - "sha256": "0b3j69lym3mwakl7qbi1nj8v9xljxzvnxn5m16dhg50q20wqd5wp" 85864 }, 85865 "stable": { 85866 "version": [ ··· 86348 "repo": "JonWaltman/pcmpl-args.el", 86349 "unstable": { 86350 "version": [ 86351 - 20220131, 86352 - 2316 86353 ], 86354 - "commit": "94a19b693a226aa11b15627e01f9f4c9af752bab", 86355 - "sha256": "0y0mnm2fhshvvc9iz4mgzvxhvhj0xriinn155dilnm4skglzgxk1" 86356 }, 86357 "stable": { 86358 "version": [ ··· 86534 "repo": "vedang/pdf-tools", 86535 "unstable": { 86536 "version": [ 86537 - 20220426, 86538 - 2203 86539 ], 86540 "deps": [ 86541 "let-alist", 86542 "nadvice", 86543 "tablist" 86544 ], 86545 - "commit": "3ae9ba9ab9aaa03d1193667cb025a786bef9fe9a", 86546 - "sha256": "1rkhssb90id5vljk9lrlr8m2z7sxw9x2cb9cgiy06bzpfv4pggar" 86547 }, 86548 "stable": { 86549 "version": [ ··· 87396 "repo": "OVYA/php-cs-fixer", 87397 "unstable": { 87398 "version": [ 87399 - 20210923, 87400 - 718 87401 ], 87402 "deps": [ 87403 "cl-lib" 87404 ], 87405 - "commit": "7e12a1af5d65cd8a801eeb5564c6268a4e190c0c", 87406 - "sha256": "1i0jlszc5z59arwknclhi3vmwp0mf6jk18axisvh5xdqggiwpjqf" 87407 }, 87408 "stable": { 87409 "version": [ 87410 1, 87411 0, 87412 - 1 87413 ], 87414 "deps": [ 87415 "cl-lib" 87416 ], 87417 - "commit": "ebf78243b468592f4fbeb714923ecc8709d33ae0", 87418 - "sha256": "0ik5va5q7gpz6kmaaiarh6wjaafal22qcimflfwizs3nbl49y9mx" 87419 } 87420 }, 87421 { ··· 89519 20211231, 89520 1823 89521 ], 89522 - "commit": "3bf430270c74dad830ab9d776aab23cbf3ea3953", 89523 - "sha256": "1ldxv93gjcfr19smdajs081sli81fw6wr83w78i8mlqhw41ilslw" 89524 }, 89525 "stable": { 89526 "version": [ ··· 90079 }, 90080 { 90081 "ename": "prescient", 90082 - "commit": "ec02349e31531c347e4a43fbde56ae4386898cc6", 90083 - "sha256": "04js3hblavfrc6kqp942x5yjdl3ndazf3n64p83423ldsmhbip6s", 90084 "fetcher": "github", 90085 - "repo": "raxod502/prescient.el", 90086 "unstable": { 90087 "version": [ 90088 - 20211228, 90089 - 417 90090 ], 90091 - "commit": "d9b30d741c729a37eb2c6e51d72281c0844780ca", 90092 - "sha256": "1n9sa0wvw8yhq2l82hfpx1pgg7lmphd18xrjx6jfqfdkna9j3a8j" 90093 }, 90094 "stable": { 90095 "version": [ ··· 90799 "repo": "buzztaiki/project-rootfile.el", 90800 "unstable": { 90801 "version": [ 90802 - 20220505, 90803 - 1256 90804 ], 90805 - "commit": "a4c4f004fbf8ca44e74be845a1c3696d6db5b0d6", 90806 - "sha256": "00hg3hj2syz8n514h8fcwsyxxf28lbrg8cvhvnk0a2g74s8wk3d1" 90807 } 90808 }, 90809 { ··· 91256 20220329, 91257 655 91258 ], 91259 - "commit": "a894bcc5f915f1c76a2a83c12c12ea3497542426", 91260 - "sha256": "0s3glxi0382xhs6asv7ajrs3qzfj27qd8j4szdn8a8pmskl3c81m" 91261 } 91262 }, 91263 { ··· 91352 20220303, 91353 1716 91354 ], 91355 - "commit": "637a699969baf5930c77b87fbd89bd3286c09c98", 91356 - "sha256": "0av1bkv6h4q7p294v62w517d0wmr609k4cb488sr839h1y2kb8c5" 91357 }, 91358 "stable": { 91359 "version": [ 91360 - 3, 91361 - 20, 91362 1 91363 ], 91364 - "commit": "21027a27c4c2ec1000859ccbcfff46d83b16e1ed", 91365 - "sha256": "14042h3p5xav3kkd04li92kyllxjp4xv6iy6r9mfnh8l7mq1l0x4" 91366 } 91367 }, 91368 { ··· 92258 "repo": "tumashu/pyim", 92259 "unstable": { 92260 "version": [ 92261 - 20220508, 92262 - 655 92263 ], 92264 "deps": [ 92265 "async", 92266 "xr" 92267 ], 92268 - "commit": "069ff6b6b039b16ccc135a4288eebfcd76a0fbd2", 92269 - "sha256": "1wz2c24i530xz62hbx0ahbm3sn2y6iwdpq3wk9npqyvhrk11g6ih" 92270 }, 92271 "stable": { 92272 "version": [ ··· 92444 20210411, 92445 1931 92446 ], 92447 - "commit": "40ddfabcb0afe5dadab3c4dcd890b8302db9edd0", 92448 - "sha256": "14zh9mlm5fbsg0myyrw7pc253vw0in1jjx4302x3qsb2r1v20xyd" 92449 }, 92450 "stable": { 92451 "version": [ ··· 92792 "repo": "python-mode-devs/python-mode", 92793 "unstable": { 92794 "version": [ 92795 - 20220508, 92796 - 1854 92797 ], 92798 - "commit": "013f79b0f402ebda79c5c0c087a6a33797ef08ba", 92799 - "sha256": "0jmgm2gspyfq0spvyry50bsl3gv2lp295fqgr1y9zk2lbd53b3mz" 92800 }, 92801 "stable": { 92802 "version": [ ··· 93176 "leaf", 93177 "quelpa" 93178 ], 93179 - "commit": "e220893d29a095234076be1b255fade11f6410b8", 93180 - "sha256": "0sfz9yp0h45smqcs40an1a2hvmcgqd6fxi0brsx5hsvs4rxhpry2" 93181 }, 93182 "stable": { 93183 "version": [ ··· 93474 "repo": "greghendershott/racket-mode", 93475 "unstable": { 93476 "version": [ 93477 - 20220505, 93478 - 1350 93479 ], 93480 - "commit": "fbb4a4664e2cc2b5d21eee62735f73b7f0272e60", 93481 - "sha256": "0120v4z3qk59bkfcn1gazjp0xyn2vbmb4cpflpir4b0xndpgp92g" 93482 } 93483 }, 93484 { ··· 95901 "url": "https://codeberg.org/ideasman42/emacs-revert-buffer-all.git", 95902 "unstable": { 95903 "version": [ 95904 - 20220507, 95905 - 1118 95906 ], 95907 - "commit": "0296a7101f65d486e13c2674bd4b51631504523d", 95908 - "sha256": "0avizhbx0a7fnlbjbm4ivg5abbwymmvrzlshazxf5ngn261fgm2w" 95909 } 95910 }, 95911 { ··· 95973 "repo": "dajva/rg.el", 95974 "unstable": { 95975 "version": [ 95976 - 20220427, 95977 - 1613 95978 ], 95979 "deps": [ 95980 "transient", 95981 "wgrep" 95982 ], 95983 - "commit": "a6411f98a695d8b3ef0db156d41b2a62ca36ee7a", 95984 - "sha256": "046jws1qhi6spy616m7nzclp4jpx1945b6whayb0mr63as2yr886" 95985 }, 95986 "stable": { 95987 "version": [ ··· 96377 "repo": "jgkamat/rmsbolt", 96378 "unstable": { 96379 "version": [ 96380 - 20220503, 96381 - 1708 96382 ], 96383 - "commit": "de28f7903a3b895c3bf9628ac6d4db4378748fa8", 96384 - "sha256": "1j5s30rv6qxjiv73zzdl0mnm9qgndyiiqdc29j8iw5m2gv5p5ncl" 96385 } 96386 }, 96387 { ··· 97282 "repo": "brotzeit/rustic", 97283 "unstable": { 97284 "version": [ 97285 - 20220427, 97286 - 1413 97287 ], 97288 "deps": [ 97289 "dash", ··· 97297 "spinner", 97298 "xterm-color" 97299 ], 97300 - "commit": "8c214efb72be9731cd7d613c07672515a0f70664", 97301 - "sha256": "11kj8rndj907akzr07mqb78n6rc61kcywwmz8hlp1vl83h82885v" 97302 }, 97303 "stable": { 97304 "version": [ ··· 97807 20200830, 97808 301 97809 ], 97810 - "commit": "841808390d8d063c62c60cb70fa02064be2255d6", 97811 - "sha256": "1smmachhaazvbj9iparakza057bb4ql84dxkq76svizak0krf156" 97812 } 97813 }, 97814 { ··· 97899 "request", 97900 "s" 97901 ], 97902 - "commit": "b61fd8324b457cd75494d706a92af89bbf9a4e71", 97903 - "sha256": "1wqdr3n03a34xdnz0dnf07fgp12vamxf2dbfjl1k0yrbxyy449jc" 97904 } 97905 }, 97906 { ··· 98180 "url": "https://codeberg.org/ideasman42/emacs-scroll-on-drag.git", 98181 "unstable": { 98182 "version": [ 98183 - 20220507, 98184 - 1118 98185 ], 98186 - "commit": "fb9af984610f7ef83b031ff04efa32dbdf2eb741", 98187 - "sha256": "0lyaw728nnxwfaw2rsd4y16gfa66sdsw8b0s5ccfzrwd64vxbxc0" 98188 } 98189 }, 98190 { ··· 98195 "url": "https://codeberg.org/ideasman42/emacs-scroll-on-jump.git", 98196 "unstable": { 98197 "version": [ 98198 - 20220507, 98199 - 1118 98200 ], 98201 - "commit": "1cfa3e8a91427ef4066e5e62b035dda09cd6a7ae", 98202 - "sha256": "0ns3zfa421f7hg1kkgczkmj6v2pr0pj424bfak3y294fh6b15pc2" 98203 } 98204 }, 98205 { ··· 98296 "repo": "t-e-r-m/sculpture-themes", 98297 "unstable": { 98298 "version": [ 98299 - 20220406, 98300 - 2330 98301 ], 98302 - "commit": "a21871b75cc7cb575ceb43640d039307fbb412e1", 98303 - "sha256": "0ki45bvc93p76mxpsm5pyknqgf67xz6c122yssps1hcxhdazij5v" 98304 }, 98305 "stable": { 98306 "version": [ ··· 98585 "repo": "Kungsgeten/selected.el", 98586 "unstable": { 98587 "version": [ 98588 - 20200528, 98589 - 606 98590 ], 98591 - "commit": "3043fd2609f7e71d809763ae6e8dd4b6c904e63d", 98592 - "sha256": "11cr55g7rrr4gqb9r2znmff0bp112l7a96d26mznfdprzj7pdzvd" 98593 } 98594 }, 98595 { ··· 98641 }, 98642 { 98643 "ename": "selectrum-prescient", 98644 - "commit": "5724ebca5ab5a1c3087cc13ae0693548666ed62b", 98645 - "sha256": "1zr83pq39i56v5bx78cp5cg2lrwz01975ng4h1ziv6nrh9p7vvr0", 98646 "fetcher": "github", 98647 - "repo": "raxod502/prescient.el", 98648 "unstable": { 98649 "version": [ 98650 - 20211228, 98651 - 417 98652 ], 98653 "deps": [ 98654 "prescient", 98655 "selectrum" 98656 ], 98657 - "commit": "d9b30d741c729a37eb2c6e51d72281c0844780ca", 98658 - "sha256": "1n9sa0wvw8yhq2l82hfpx1pgg7lmphd18xrjx6jfqfdkna9j3a8j" 98659 }, 98660 "stable": { 98661 "version": [ ··· 99365 "repo": "qhga/shanty-themes", 99366 "unstable": { 99367 "version": [ 99368 - 20220405, 99369 - 1126 99370 ], 99371 - "commit": "55b6a2653e43187559ff8b5103bcb9dc54e68ab6", 99372 - "sha256": "0c11jkzalm714q0qj0rcbk946i2v4gxh73n22k7q63afqdk9sizw" 99373 } 99374 }, 99375 { ··· 99395 "repo": "sebasmonia/sharper", 99396 "unstable": { 99397 "version": [ 99398 - 20220321, 99399 - 422 99400 ], 99401 "deps": [ 99402 "transient" 99403 ], 99404 - "commit": "96edd4a1dbc267afdff0cb97298d1b05b7c2080c", 99405 - "sha256": "0pprbp9n43g1ijap96fjiz6sckplryi198gci0ywpyglx6illllg" 99406 } 99407 }, 99408 { ··· 99773 20220426, 99774 715 99775 ], 99776 - "commit": "2420e7fb0d11372f1fa898a3b996bf2ce00fe66a", 99777 - "sha256": "05m1nqcvwc7vlki3n8v3d4idpvvbb2lkwwj9z30033g0q4j125m8" 99778 } 99779 }, 99780 { ··· 100115 "repo": "riscy/shx-for-emacs", 100116 "unstable": { 100117 "version": [ 100118 - 20201121, 100119 - 1824 100120 ], 100121 - "commit": "09ae2124369ded4f38459d2456f72536d172227a", 100122 - "sha256": "1q07f1ppxx3z01c6zc20pg7kwfmzjzqbsmq3qxgkn3ggchyw0680" 100123 }, 100124 "stable": { 100125 "version": [ ··· 100223 "url": "https://codeberg.org/ideasman42/emacs-sidecar-locals.git", 100224 "unstable": { 100225 "version": [ 100226 - 20220507, 100227 - 1118 100228 ], 100229 - "commit": "3831db67c692f269d1ac8bfdc38c56ee2d110250", 100230 - "sha256": "1ypjk466z8cm5plm44l182zq5fwiyv6my2a9rbgfw9rb3ci6s2rg" 100231 } 100232 }, 100233 { ··· 100636 "repo": "laishulu/emacs-smart-input-source", 100637 "unstable": { 100638 "version": [ 100639 - 20220506, 100640 - 1606 100641 ], 100642 "deps": [ 100643 "terminal-focus-reporting" 100644 ], 100645 - "commit": "f26d25194c65e19b5473fa1a3cdf96be2b209e19", 100646 - "sha256": "1427qzmr1cmhld24iza0hrkfcs03h4flf3lcyhxfrykikqs486is" 100647 } 100648 }, 100649 { ··· 100661 "compat", 100662 "magit" 100663 ], 100664 - "commit": "2af8cec83790980a9a96c15ee3655a179aa3ddb1", 100665 - "sha256": "0g2rvh7vs3d4mmkflvr2jxl8q3hgwcw0wfq788mxhiwkknyrkfmj" 100666 } 100667 }, 100668 { ··· 100948 "repo": "slime/slime", 100949 "unstable": { 100950 "version": [ 100951 - 20220302, 100952 - 1215 100953 ], 100954 "deps": [ 100955 "cl-lib", 100956 "macrostep" 100957 ], 100958 - "commit": "6ef28864d4a6b4d9390dbd0cac64f2a56582682d", 100959 - "sha256": "0pscgg31slqggdzrjfmkg721lwvqph9qrp833p1j4b7wcc1j8xvv" 100960 }, 100961 "stable": { 100962 "version": [ ··· 101686 "repo": "Fuco1/smartparens", 101687 "unstable": { 101688 "version": [ 101689 - 20220204, 101690 - 1134 101691 ], 101692 "deps": [ 101693 "cl-lib", 101694 "dash" 101695 ], 101696 - "commit": "37f77bf2e2199be9fe27e981317b02cfd0e8c70e", 101697 - "sha256": "095aqr4mz6yx8xa2gr7k5nf6a82qxdrjh8qv47hfhbc3832gy8jk" 101698 }, 101699 "stable": { 101700 "version": [ ··· 103114 "repo": "condy0919/spdx.el", 103115 "unstable": { 103116 "version": [ 103117 - 20220429, 103118 - 126 103119 ], 103120 - "commit": "1405b4f050f8181b8bcbe2951760e6c5b68b08c7", 103121 - "sha256": "0l0kpmf3acsxr1xbq8kzfs72232vm2szjx9q8w2s982jfwqsfrxr" 103122 } 103123 }, 103124 { ··· 104294 20200606, 104295 1308 104296 ], 104297 - "commit": "03fc757c4255bfd445cdbc2a62ca3b02a65beba5", 104298 - "sha256": "1p6lcc2xnslkcm2d3pg5zd6nvbdy1y9m3ymrcv1kz0xj33cnphjf" 104299 }, 104300 "stable": { 104301 "version": [ ··· 104344 "repo": "motform/stimmung-themes", 104345 "unstable": { 104346 "version": [ 104347 - 20220508, 104348 - 1737 104349 ], 104350 - "commit": "d03558c2aeac781c65c4137839362790f8b36b3d", 104351 - "sha256": "1gqsbqlc1aygls34mk9l5qywkx71pps4qsh9sinvgyrdwlllyk56" 104352 } 104353 }, 104354 { ··· 106861 "repo": "minad/tempel", 106862 "unstable": { 106863 "version": [ 106864 - 20220430, 106865 - 1020 106866 ], 106867 - "commit": "1ce581e30455b113d9c8358e79952134ca2e0356", 106868 - "sha256": "1i5vaxfinmj5zrrh80yjjd61sncxvjkb90g2wwa65h3icpa9vvyr" 106869 }, 106870 "stable": { 106871 "version": [ ··· 107220 "repo": "davidshepherd7/terminal-here", 107221 "unstable": { 107222 "version": [ 107223 - 20210605, 107224 - 1453 107225 ], 107226 - "commit": "e0e89344624fadf080f6770132ebdd7991355fdd", 107227 - "sha256": "11hvyvnbr6skw6czwk8gjw9v08azf8s2kafqh5jb1nlznfghcr11" 107228 }, 107229 "stable": { 107230 "version": [ ··· 107907 20200212, 107908 1903 107909 ], 107910 - "commit": "321b08352d043708869d5c15f961610392afca16", 107911 - "sha256": "0pynyavfwwylqibj4az58a3q45di540d0j6dwdwywihn470cinvz" 107912 }, 107913 "stable": { 107914 "version": [ 107915 2022, 107916 5, 107917 - 2, 107918 0 107919 ], 107920 - "commit": "f7a27a8f7fba7b08cc8ff2452afe8e5ecd99acca", 107921 - "sha256": "0zczzrpc2nwzp48wyqssrv3iykrlmyjdmipwq2fqzdi10wb5paq3" 107922 } 107923 }, 107924 { ··· 108258 0 108259 ], 108260 "commit": "9e1a12a494537472fb1f9f9f23dc38b8bca1f9af", 108261 - "sha256": "1vav4f6g86fh71ddprql0m8b05f4h8l04n7jfskfmvpfwgw2w87r" 108262 } 108263 }, 108264 { ··· 108350 "repo": "duckwork/titlecase.el", 108351 "unstable": { 108352 "version": [ 108353 - 20220503, 108354 - 1344 108355 ], 108356 - "commit": "dafaa6ca09fdf1ae8413159cae2b5d74e9713440", 108357 - "sha256": "0kpg1l0rbbwqcmlj9i8xs2dv9h6yik9wgngik5z6wdgxbkaxjln7" 108358 }, 108359 "stable": { 108360 "version": [ ··· 108608 "repo": "topikettunen/tok-theme", 108609 "unstable": { 108610 "version": [ 108611 - 20220505, 108612 - 1155 108613 ], 108614 - "commit": "118565dab2d3cf1b083d666bc19ed1b063035732", 108615 - "sha256": "1l2s99n7gcm810di9z7v79znlg3yy3aj6pdgwgd7mnyjhlxm3m4a" 108616 } 108617 }, 108618 { ··· 108742 "repo": "trevorpogue/topspace", 108743 "unstable": { 108744 "version": [ 108745 - 20220504, 108746 - 2220 108747 ], 108748 - "commit": "cbd1f7e8dad4284455488f759946d2f38deff2c6", 108749 - "sha256": "0lbcabpp5a9zz36j710b1dw1zzjhhm1434nv3icq8q2z6k8n06xb" 108750 }, 108751 "stable": { 108752 "version": [ ··· 109122 "repo": "magit/transient", 109123 "unstable": { 109124 "version": [ 109125 - 20220508, 109126 - 1914 109127 ], 109128 "deps": [ 109129 "compat" 109130 ], 109131 - "commit": "d9b3a54128065222d35ce4ba49cdb39e23a06d2f", 109132 - "sha256": "0p9qkgfsqjp5qra10yalm53b74bvm32rfxrvlpl4pqcs3mqlxw3g" 109133 }, 109134 "stable": { 109135 "version": [ ··· 109186 "repo": "rayw000/translate-mode", 109187 "unstable": { 109188 "version": [ 109189 - 20220402, 109190 - 853 109191 ], 109192 - "commit": "fb73b3d928a8011a21402e2c14aa4aab56bd05ae", 109193 - "sha256": "1a01kvkpr0d2c7llj5hawwampz45ysv55gzvdvdldc0yc9qhvhyl" 109194 }, 109195 "stable": { 109196 "version": [ ··· 109370 "compat", 109371 "transient" 109372 ], 109373 - "commit": "7c70d499d08321337f860a3cd59cba7296cfcace", 109374 - "sha256": "0yl0ddn1iz7iph0vxh0fzavgsgrk8ks5axggzbgs8ywl6ya8r7g2" 109375 }, 109376 "stable": { 109377 "version": [ ··· 109559 "repo": "Alexander-Miller/treemacs", 109560 "unstable": { 109561 "version": [ 109562 - 20220506, 109563 - 1056 109564 ], 109565 "deps": [ 109566 "ace-window", ··· 109572 "pfuture", 109573 "s" 109574 ], 109575 - "commit": "07706547a2a927e6787645538d8bdb6e9418fb62", 109576 - "sha256": "14i6j0n3wqvjyz7k5gi6i7iwr30rjiqb14ini2ilvh5xmfhixf3x" 109577 }, 109578 "stable": { 109579 "version": [ ··· 109609 "all-the-icons", 109610 "treemacs" 109611 ], 109612 - "commit": "07706547a2a927e6787645538d8bdb6e9418fb62", 109613 - "sha256": "14i6j0n3wqvjyz7k5gi6i7iwr30rjiqb14ini2ilvh5xmfhixf3x" 109614 }, 109615 "stable": { 109616 "version": [ ··· 109633 "repo": "Alexander-Miller/treemacs", 109634 "unstable": { 109635 "version": [ 109636 - 20220427, 109637 - 1331 109638 ], 109639 "deps": [ 109640 "evil", 109641 "treemacs" 109642 ], 109643 - "commit": "07706547a2a927e6787645538d8bdb6e9418fb62", 109644 - "sha256": "14i6j0n3wqvjyz7k5gi6i7iwr30rjiqb14ini2ilvh5xmfhixf3x" 109645 }, 109646 "stable": { 109647 "version": [ ··· 109670 "deps": [ 109671 "treemacs" 109672 ], 109673 - "commit": "07706547a2a927e6787645538d8bdb6e9418fb62", 109674 - "sha256": "14i6j0n3wqvjyz7k5gi6i7iwr30rjiqb14ini2ilvh5xmfhixf3x" 109675 }, 109676 "stable": { 109677 "version": [ ··· 109701 "pfuture", 109702 "treemacs" 109703 ], 109704 - "commit": "07706547a2a927e6787645538d8bdb6e9418fb62", 109705 - "sha256": "14i6j0n3wqvjyz7k5gi6i7iwr30rjiqb14ini2ilvh5xmfhixf3x" 109706 }, 109707 "stable": { 109708 "version": [ ··· 109734 "persp-mode", 109735 "treemacs" 109736 ], 109737 - "commit": "07706547a2a927e6787645538d8bdb6e9418fb62", 109738 - "sha256": "14i6j0n3wqvjyz7k5gi6i7iwr30rjiqb14ini2ilvh5xmfhixf3x" 109739 }, 109740 "stable": { 109741 "version": [ ··· 109767 "perspective", 109768 "treemacs" 109769 ], 109770 - "commit": "07706547a2a927e6787645538d8bdb6e9418fb62", 109771 - "sha256": "14i6j0n3wqvjyz7k5gi6i7iwr30rjiqb14ini2ilvh5xmfhixf3x" 109772 }, 109773 "stable": { 109774 "version": [ ··· 109799 "projectile", 109800 "treemacs" 109801 ], 109802 - "commit": "07706547a2a927e6787645538d8bdb6e9418fb62", 109803 - "sha256": "14i6j0n3wqvjyz7k5gi6i7iwr30rjiqb14ini2ilvh5xmfhixf3x" 109804 }, 109805 "stable": { 109806 "version": [ ··· 109830 "dash", 109831 "treemacs" 109832 ], 109833 - "commit": "07706547a2a927e6787645538d8bdb6e9418fb62", 109834 - "sha256": "14i6j0n3wqvjyz7k5gi6i7iwr30rjiqb14ini2ilvh5xmfhixf3x" 109835 }, 109836 "stable": { 109837 "version": [ ··· 110899 "url": "https://codeberg.org/ideasman42/emacs-undo-fu.git", 110900 "unstable": { 110901 "version": [ 110902 - 20220507, 110903 - 1118 110904 ], 110905 - "commit": "08a9f1494957ca6513bdf8be5de6801b33e3ee59", 110906 - "sha256": "1yfkaqs7jkn6cfd2gixxscx303d97hngvni48a9hqa3n4hkg878p" 110907 } 110908 }, 110909 { ··· 110914 "url": "https://codeberg.org/ideasman42/emacs-undo-fu-session.git", 110915 "unstable": { 110916 "version": [ 110917 - 20220507, 110918 - 1118 110919 ], 110920 - "commit": "bc48bb6611d516891b61b2c4b5bc8d7fe8a520f6", 110921 - "sha256": "1r53bdip485wmyqq0qim7kwspgqgfa377nfb356ff1j0vmkjkwws" 110922 } 110923 }, 110924 { ··· 113305 20220414, 113306 930 113307 ], 113308 - "commit": "f5eb6387506b22ba7e21b4e335e689cf6768f18b", 113309 - "sha256": "10zpxnp5iv409jfcggvfwva35kr6vzybra4d4mirdkw898rsmsla" 113310 }, 113311 "stable": { 113312 "version": [ ··· 113328 20220414, 113329 931 113330 ], 113331 - "commit": "d585d0a3b87461b01dfad4ceaa7831668c6021d8", 113332 - "sha256": "0hl1zcf5w5m1lrz7jjk8ac7k6g8rhr9klzdh0nd9f6ksydvs9lfv" 113333 }, 113334 "stable": { 113335 "version": [ ··· 113658 "repo": "emacs-w3m/emacs-w3m", 113659 "unstable": { 113660 "version": [ 113661 - 20220426, 113662 - 717 113663 ], 113664 - "commit": "2420e7fb0d11372f1fa898a3b996bf2ce00fe66a", 113665 - "sha256": "05m1nqcvwc7vlki3n8v3d4idpvvbb2lkwwj9z30033g0q4j125m8" 113666 } 113667 }, 113668 { ··· 114944 "url": "https://codeberg.org/akib/emacs-why-this.git", 114945 "unstable": { 114946 "version": [ 114947 - 20220429, 114948 - 1227 114949 ], 114950 - "commit": "b69263c66b63680e1db81f6da98de00c230c7384", 114951 - "sha256": "1adsq14s4qkhf3d3n2137zrcz0x0gg31y6pa9viwq6hkhi59rddv" 114952 } 114953 }, 114954 { ··· 115486 "deps": [ 115487 "compat" 115488 ], 115489 - "commit": "7348f6d5ff90318a1c948d0499d8dc6721fe851a", 115490 - "sha256": "02m44jrn5yznx4j6dwxsdjxbz8ik0r6mjy6cx9jda2kh7yr9pnc9" 115491 }, 115492 "stable": { 115493 "version": [ ··· 116011 "repo": "bnbeckwith/writegood-mode", 116012 "unstable": { 116013 "version": [ 116014 - 20210418, 116015 - 110 116016 ], 116017 - "commit": "ed42d918d98826ad88928b7af9f2597502afc6b0", 116018 - "sha256": "1nwngnddlkcvix7qx39fadab7hqzg8snb0k63kwpr8v57lyrm48z" 116019 }, 116020 "stable": { 116021 "version": [ 116022 2, 116023 - 0, 116024 - 4 116025 ], 116026 - "commit": "ed42d918d98826ad88928b7af9f2597502afc6b0", 116027 - "sha256": "1nwngnddlkcvix7qx39fadab7hqzg8snb0k63kwpr8v57lyrm48z" 116028 } 116029 }, 116030 { ··· 116168 20210614, 116169 1527 116170 ], 116171 - "commit": "46c8a7c71275ced2c662c1222d4b85319f80dd83", 116172 - "sha256": "15qxs91inbpr9qk2xlaijargkvj9c6rmw0m4b05qrqni0cgb75dk" 116173 } 116174 }, 116175 { ··· 118160 "repo": "localauthor/zk", 118161 "unstable": { 118162 "version": [ 118163 - 20220423, 118164 - 944 118165 ], 118166 - "commit": "d6d7713cfac073940dcd96b55c18830a64d4ccca", 118167 - "sha256": "09vnhnf61l5ap60b2kbc11sxj2zqbf57gmcjv954wsd6zr01rzcg" 118168 } 118169 }, 118170 { ··· 118175 "repo": "localauthor/zk", 118176 "unstable": { 118177 "version": [ 118178 - 20220505, 118179 - 1403 118180 ], 118181 "deps": [ 118182 "zk" 118183 ], 118184 - "commit": "d6d7713cfac073940dcd96b55c18830a64d4ccca", 118185 - "sha256": "09vnhnf61l5ap60b2kbc11sxj2zqbf57gmcjv954wsd6zr01rzcg" 118186 } 118187 }, 118188 { ··· 118208 "repo": "nnicandro/emacs-zmq", 118209 "unstable": { 118210 "version": [ 118211 - 20210613, 118212 - 343 118213 ], 118214 "deps": [ 118215 "cl-lib" 118216 ], 118217 - "commit": "38dc6c4119aee57666caf8f97c8a3d7f678823e0", 118218 - "sha256": "0j7szww8fi2pyvln1bppyq8nly0vkbncz63kzqhi1zx7dfz127ry" 118219 }, 118220 "stable": { 118221 "version": [
··· 2641 "repo": "seagle0128/all-the-icons-ivy-rich", 2642 "unstable": { 2643 "version": [ 2644 + 20220510, 2645 + 752 2646 ], 2647 "deps": [ 2648 "all-the-icons", 2649 "ivy-rich" 2650 ], 2651 + "commit": "7c382ccbc8b1b2d0e18d280b24ee2029dca070d8", 2652 + "sha256": "0145agd3kg1m7ylishf4ypg6bc01jrps17rwxw0kdqrh3gp7xvg3" 2653 }, 2654 "stable": { 2655 "version": [ ··· 3271 20200914, 3272 644 3273 ], 3274 + "commit": "9a5f2b4a8cd14edbde9d16dcdfcb8db2a91be0d8", 3275 + "sha256": "1pn3w2prmz9ibhy5l22c6mmccr7lfy561gkd2s41hlcjsyd4ar00" 3276 }, 3277 "stable": { 3278 "version": [ ··· 3618 }, 3619 { 3620 "ename": "apheleia", 3621 + "commit": "118ec831528f718f0dc4bc331a708ecb4a0eefd5", 3622 + "sha256": "17aknfx1ii97lsqm4228rxawa6klnxpi948pl5bzwls9fx91g31v", 3623 "fetcher": "github", 3624 + "repo": "radian-software/apheleia", 3625 "unstable": { 3626 "version": [ 3627 + 20220512, 3628 + 1952 3629 ], 3630 + "commit": "b5dbab53eadf64529a0bfe217c7750f1d7d85fce", 3631 + "sha256": "1w7x7k5mrvp5yq5ppq9zps5z2c7h67yjxyaxcvbkjibvswb0c616" 3632 }, 3633 "stable": { 3634 "version": [ ··· 4661 "keytar", 4662 "s" 4663 ], 4664 + "commit": "5c6f0952f28ce722f4a75139f3dc1afc99e12396", 4665 + "sha256": "0v83s1gfyh1zbaaqgj2q9vg193k705kr18mszp6p8rdyffdw5fqi" 4666 }, 4667 "stable": { 4668 "version": [ ··· 4774 "compat", 4775 "packed" 4776 ], 4777 + "commit": "16de66c381dab3c1fb7bc248e0f81ef68966bd7d", 4778 + "sha256": "0ls5n124rl8s3dyj0kr7n1sv3dkn9bw7k61s2f2ads43gp3744qp" 4779 }, 4780 "stable": { 4781 "version": [ ··· 5148 "deps": [ 5149 "ht" 5150 ], 5151 + "commit": "e31a2d2bb97ffcbeb493f3501311b30c3f10952f", 5152 + "sha256": "0md8dlx1g5lxb4f5yxhm617kj49zysya9y6awjrvpj30crp78g5z" 5153 }, 5154 "stable": { 5155 "version": [ ··· 5466 "repo": "Fuco1/autobookmarks", 5467 "unstable": { 5468 "version": [ 5469 + 20220509, 5470 + 1712 5471 ], 5472 "deps": [ 5473 "cl-lib", 5474 "dash" 5475 ], 5476 + "commit": "8acd6f182181e23257e01c1b5cf90b872507a74d", 5477 + "sha256": "1q4r3l40lqdykhv4w675g6dz3mpp36abiilslhkyx2i7rxpa88z8" 5478 } 5479 }, 5480 { ··· 5711 "avy", 5712 "embark" 5713 ], 5714 + "commit": "81c7f751be1de33dee9f7523fd3429ee3fe9a0d1", 5715 + "sha256": "11yvhhq251qmbnljjcfxnc53dqa63jm6ximfd0618hcwcgxlkkdc" 5716 }, 5717 "stable": { 5718 "version": [ ··· 5922 "url": "https://bitbucket.org/pdo/axiom-environment", 5923 "unstable": { 5924 "version": [ 5925 + 20220512, 5926 + 1931 5927 ], 5928 + "commit": "b52fa715285e7ad182c8e679ebf05b130dd5b5e2", 5929 + "sha256": "1hb4npfpg1iy9j0p29q1jrjgx0mrn333m45nmsnxw8nlaxzd97x6" 5930 } 5931 }, 5932 { ··· 6051 "compat", 6052 "outline-minor-faces" 6053 ], 6054 + "commit": "edc5f1e8ca049c06d18d703479c4737f3530602e", 6055 + "sha256": "19fzjqb1a5g504qwb01j447rf5q6sa0farf9acq3slwv03bbwva6" 6056 }, 6057 "stable": { 6058 "version": [ ··· 6277 "repo": "belak/base16-emacs", 6278 "unstable": { 6279 "version": [ 6280 + 20220510, 6281 + 423 6282 ], 6283 + "commit": "43f3257aaf53e9c50f5db11b81fd66ec41ab2883", 6284 + "sha256": "07k73bgjb6ixfgbiwf8zswf6n0kb3bf1ka1pcv88h3a9hhndvgv5" 6285 }, 6286 "stable": { 6287 "version": [ 6288 2, 6289 + 4 6290 ], 6291 + "commit": "7b2bb8d05562fa8d75366e82eef895c03ab7b31c", 6292 + "sha256": "1jgqq52q2q7sgf46xip0sfpwyi8k43v2l688hx7p0whncjhd7cmr" 6293 } 6294 }, 6295 { ··· 7133 "a", 7134 "pdf-tools" 7135 ], 7136 + "commit": "2f38f3583295e05c9ea491b7d1f6b4791169ba86", 7137 + "sha256": "0jyy8nl4r70l0dwc55lg75k7chcwb9zprl185x0122fjqgmnq1ri" 7138 } 7139 }, 7140 { ··· 7242 "deps": [ 7243 "compat" 7244 ], 7245 + "commit": "e6d8ca47f77e0579fcb5a1dcb88218087102c355", 7246 + "sha256": "0hqrq3gcmsy20vsld6qkd8wsyqzy1kxmxl9hn0nxmc6cixz55qgj" 7247 }, 7248 "stable": { 7249 "version": [ ··· 7497 "repo": "canatella/bitbake-el", 7498 "unstable": { 7499 "version": [ 7500 + 20220509, 7501 + 1236 7502 ], 7503 "deps": [ 7504 "dash", 7505 "mmm-mode", 7506 "s" 7507 ], 7508 + "commit": "434b088ab8715731d62978264cb934e34c75c4b3", 7509 + "sha256": "15p265zigxki80h3gfq61cmssqqwcnp0990zl8xmj8p377523l6m" 7510 } 7511 }, 7512 { ··· 7610 }, 7611 { 7612 "ename": "blackout", 7613 + "commit": "118ec831528f718f0dc4bc331a708ecb4a0eefd5", 7614 + "sha256": "064k2xwk45sl0dfa2ck39lwlibh71yd4v03ba2zkbk9bva90arqs", 7615 "fetcher": "github", 7616 + "repo": "radian-software/blackout", 7617 "unstable": { 7618 "version": [ 7619 + 20220509, 7620 + 2350 7621 ], 7622 + "commit": "7707211370f03f03a2f74df15f42ac24a1e99300", 7623 + "sha256": "1lk7zvndd41aq67f9agjkzyp4xp1q9m9srjd30nfgsgi2qmbj45r" 7624 }, 7625 "stable": { 7626 "version": [ ··· 8153 "repo": "emacscollective/borg", 8154 "unstable": { 8155 "version": [ 8156 + 20220511, 8157 + 1643 8158 ], 8159 "deps": [ 8160 "epkg", 8161 "magit" 8162 ], 8163 + "commit": "55271c12e05c14e30102bd64bd609af29d58846e", 8164 + "sha256": "104kf3km7450jj7brgjhmw5idrvk3s1qjxclzpv7xypyvi53ab8l" 8165 }, 8166 "stable": { 8167 "version": [ ··· 8721 "repo": "lukhas/buffer-move", 8722 "unstable": { 8723 "version": [ 8724 + 20220512, 8725 + 755 8726 ], 8727 + "commit": "e7800b3ab1bd76ee475ef35507ec51ecd5a3f065", 8728 + "sha256": "1g7g71fzxrak9qkps6f7j52y83dic9ccq9ykc8babla2y79jr7x1" 8729 }, 8730 "stable": { 8731 "version": [ ··· 9756 "repo": "chenyanming/calibredb.el", 9757 "unstable": { 9758 "version": [ 9759 + 20220511, 9760 + 1104 9761 ], 9762 "deps": [ 9763 "dash", ··· 9767 "s", 9768 "transient" 9769 ], 9770 + "commit": "232fa1cf3af08200af439d1cbb5a131f38286183", 9771 + "sha256": "1ncyrrzk0a1wfyr3khvznda7l59g4vg9h3nglzbihnbvfkxqh6cn" 9772 }, 9773 "stable": { 9774 "version": [ 9775 2, 9776 + 12, 9777 0 9778 ], 9779 "deps": [ 9780 "dash", 9781 + "esxml", 9782 + "org", 9783 + "request", 9784 "s", 9785 "transient" 9786 ], 9787 + "commit": "1e09bd7cdf7e3274a0f43a66bba3121ea6b42f4a", 9788 + "sha256": "1l30s3wv21mpybbxni5fziq2awai9k60i87s6fid56hg262r7jp0" 9789 } 9790 }, 9791 { ··· 10364 "dash", 10365 "lsp-mode" 10366 ], 10367 + "commit": "ae74a39303457a5e6976dd1c6816cde97d357a0d", 10368 + "sha256": "0y1fyiq3m3xsbc82cq3wdmsi549risvpm5xc2bsid6vmmfnafl1y" 10369 } 10370 }, 10371 { ··· 10664 20171115, 10665 2108 10666 ], 10667 + "commit": "0d98e5a6f0c08e2b1d2c8e96c3dfc7e619210f72", 10668 + "sha256": "1i5icnrvfi83kxf4n6a83aksllnaddb653kcjnmg3n70q5mffavf" 10669 }, 10670 "stable": { 10671 "version": [ ··· 10820 20220318, 10821 1007 10822 ], 10823 + "commit": "0a526709f55f8074f8846f8e7b9090431f1d6a47", 10824 + "sha256": "118pc03zpv9c7haxvmf4xkd6lby7xrxsal6pwq5lw5sw840g1nhr" 10825 }, 10826 "stable": { 10827 "version": [ ··· 11808 "repo": "bdarcus/citar", 11809 "unstable": { 11810 "version": [ 11811 + 20220509, 11812 + 2336 11813 ], 11814 "deps": [ 11815 "citeproc", 11816 "org", 11817 "parsebib" 11818 ], 11819 + "commit": "9a6fc6da11ad2b475244cc4cbd51c77615e9aad3", 11820 + "sha256": "0q1hl8xsqb64lx10kcc4az3azaa8j3zly3pkf3lixh0qrc74bil2" 11821 }, 11822 "stable": { 11823 "version": [ ··· 12735 "compat", 12736 "emacsql-sqlite" 12737 ], 12738 + "commit": "87d2edae8bc3d390bcfc5e909e9c13ff9fce994a", 12739 + "sha256": "1grxpxrjzziqad840cw5ivp4xym0p3y0p3jwrf1j4dkbp670c75d" 12740 }, 12741 "stable": { 12742 "version": [ ··· 12912 20220322, 12913 1258 12914 ], 12915 + "commit": "a1c61a7e1a9f7a019809010e097f1e4c42c50022", 12916 + "sha256": "1qabbyqn450lhb5f1kaxqwv37fc9ahj89rka5c374kgzscjgjdna" 12917 }, 12918 "stable": { 12919 "version": [ ··· 14051 "axiom-environment", 14052 "company" 14053 ], 14054 + "commit": "b52fa715285e7ad182c8e679ebf05b130dd5b5e2", 14055 + "sha256": "1hb4npfpg1iy9j0p29q1jrjgx0mrn333m45nmsnxw8nlaxzd97x6" 14056 } 14057 }, 14058 { ··· 15161 }, 15162 { 15163 "ename": "company-prescient", 15164 + "commit": "118ec831528f718f0dc4bc331a708ecb4a0eefd5", 15165 + "sha256": "06cxvd7w7bw4gw061k3vsmvx7kvm2kz71nr4kmwya7zamz171gwh", 15166 "fetcher": "github", 15167 + "repo": "radian-software/prescient.el", 15168 "unstable": { 15169 "version": [ 15170 + 20220509, 15171 + 2300 15172 ], 15173 "deps": [ 15174 "company", 15175 "prescient" 15176 ], 15177 + "commit": "c05f8a43c6ff07a8b5a3ba8df7a2ec35677b7484", 15178 + "sha256": "0752dyl4fhi0jvbm238s5p1sv7z4jlkmkdrxvwn0dlhfr0rhfw1c" 15179 }, 15180 "stable": { 15181 "version": [ ··· 15592 "repo": "rafalcieslak/emacs-company-terraform", 15593 "unstable": { 15594 "version": [ 15595 + 20220509, 15596 + 1759 15597 ], 15598 "deps": [ 15599 "company", 15600 "terraform-mode" 15601 ], 15602 + "commit": "8d5a16d1bbeeb18ca49a8fd57b5d8cd30c8b8dc7", 15603 + "sha256": "0s3n2hi7x21pza8nfayy86w4m30l95x0lcbpsknl50v15z5sch0i" 15604 }, 15605 "stable": { 15606 "version": [ ··· 16468 "repo": "OlMon/consult-projectile", 16469 "unstable": { 16470 "version": [ 16471 + 20220511, 16472 + 2103 16473 ], 16474 "deps": [ 16475 "consult", 16476 "projectile" 16477 ], 16478 + "commit": "130ba9d3879bc293d81b1aa9fbfd0dffae3b5579", 16479 + "sha256": "0gvrhh58097lry1d13xx4il2kbkljrk170hgr8ibxdzq0jf09aah" 16480 } 16481 }, 16482 { ··· 16964 "deps": [ 16965 "counsel" 16966 ], 16967 + "commit": "3e731889dd4519d16c38d5ad20f4ecdea0c95475", 16968 + "sha256": "1c4y9j0dlwxcahg7r62llv6w66iz48zmsnfwj9pv9pdhw6cnpc23" 16969 } 16970 }, 16971 { ··· 18363 }, 18364 { 18365 "ename": "ctrlf", 18366 + "commit": "118ec831528f718f0dc4bc331a708ecb4a0eefd5", 18367 + "sha256": "1lls531qj0ls61byx0546diq2d8jkvk6x250rvwaiw225476mc0i", 18368 "fetcher": "github", 18369 + "repo": "radian-software/ctrlf", 18370 "unstable": { 18371 "version": [ 18372 + 20220509, 18373 + 2344 18374 ], 18375 + "commit": "d37d7a997e1e3ef5e2223aeecbbef92f369b0760", 18376 + "sha256": "1lfd20xknpxxb9qiqhj9mqabsgibzdkhf335mm4vl9jvgim6j7vs" 18377 }, 18378 "stable": { 18379 "version": [ ··· 18559 "repo": "russell/cue-mode", 18560 "unstable": { 18561 "version": [ 18562 + 20220512, 18563 + 2104 18564 ], 18565 + "commit": "f98b9f9088fcb66c97f9200f6c8a0cd16c11caae", 18566 + "sha256": "08nxlgf02v8gz92dif3fy72qz3yisybxlx1i0any3sxn5swi7g7y" 18567 }, 18568 "stable": { 18569 "version": [ 18570 1, 18571 0, 18572 + 9 18573 ], 18574 + "commit": "f98b9f9088fcb66c97f9200f6c8a0cd16c11caae", 18575 + "sha256": "08nxlgf02v8gz92dif3fy72qz3yisybxlx1i0any3sxn5swi7g7y" 18576 } 18577 }, 18578 { ··· 18858 20211111, 18859 1407 18860 ], 18861 + "commit": "89591f7c85f6b8eb580ac8f3a00014f28c61a139", 18862 + "sha256": "0yj3i2jrajh33v0h6djlzsl5l5gb2958z365d1zjbabqxj202wg3" 18863 }, 18864 "stable": { 18865 "version": [ ··· 19066 "repo": "emacs-lsp/dap-mode", 19067 "unstable": { 19068 "version": [ 19069 + 20220512, 19070 + 513 19071 ], 19072 "deps": [ 19073 "bui", ··· 19079 "posframe", 19080 "s" 19081 ], 19082 + "commit": "52ac284dafff3fbae561d1743b73131339421d76", 19083 + "sha256": "112qpba47csbhqha4y3vlccgzm14x7x522r2n1p9q4ssknn7va4i" 19084 }, 19085 "stable": { 19086 "version": [ ··· 19433 20220409, 19434 620 19435 ], 19436 + "commit": "0a86c0eabe6bb5e188e6ae915d971103248a3d26", 19437 + "sha256": "1ki4g5s4n2c4zvsk56w4ync2rrwbchz63ms68a2xjkmnihy83x90" 19438 }, 19439 "stable": { 19440 "version": [ ··· 19482 "deps": [ 19483 "dashboard" 19484 ], 19485 + "commit": "f9e199a20c654c3d1d8f405fdec9acb294afc004", 19486 + "sha256": "0l0bylzd9r6cc04r1b5ky3dqshzc2k6j47hqini35ibk331dm804" 19487 }, 19488 "stable": { 19489 "version": [ ··· 21012 "deps": [ 21013 "compat" 21014 ], 21015 + "commit": "81c94b0707d5ddd9a3b9962ee441206db1d25967", 21016 + "sha256": "00xba7dpmsiq13zhcxcvwlb65v4mnbl8xd32vwvr3pm54bv59fzs" 21017 }, 21018 "stable": { 21019 "version": [ ··· 22133 "repo": "alexluigit/dirvish", 22134 "unstable": { 22135 "version": [ 22136 + 20220512, 22137 + 1734 22138 ], 22139 + "commit": "e40cc2dd1594d4285ec78100e98a0b0516d23782", 22140 + "sha256": "0qzz9bzl0rjllr84hqfczjg6h4ra4ylpcsikhdx25gc7jfvah1zi" 22141 }, 22142 "stable": { 22143 "version": [ ··· 23756 "url": "https://git.sr.ht/~niklaseklund/dtache", 23757 "unstable": { 23758 "version": [ 23759 + 20220512, 23760 + 1524 23761 ], 23762 + "commit": "5a39733299cae60da2aab0e0b9f559bcc022369f", 23763 + "sha256": "166sbnq9n70yp7w8in2qkv921gzkzhzwkr3bjgnj427gxn34m1xd" 23764 }, 23765 "stable": { 23766 "version": [ ··· 23964 20210909, 23965 1010 23966 ], 23967 + "commit": "862831cd6e1146b0c18e6bdbf7daafb42868d439", 23968 + "sha256": "0kfykznv16lmbxhccnp9f1qn9wswadizp3mhq1kf1b29pvppf1yr" 23969 }, 23970 "stable": { 23971 "version": [ ··· 24614 "repo": "leoliu/easy-kill", 24615 "unstable": { 24616 "version": [ 24617 + 20220511, 24618 + 557 24619 ], 24620 "deps": [ 24621 "cl-lib" 24622 ], 24623 + "commit": "de7d66c3c864a4722a973ee9bc228a14be49ba0c", 24624 + "sha256": "0zr836c9c5bhf0cslwk6jqf1xn9w6wfjn4faisq5v8ydyxn78925" 24625 }, 24626 "stable": { 24627 "version": [ ··· 25145 "repo": "Fanael/edit-indirect", 25146 "unstable": { 25147 "version": [ 25148 + 20220511, 25149 + 1124 25150 ], 25151 + "commit": "f80f63822ffae78de38dbe72cacaeb1aaa96c732", 25152 + "sha256": "13v0fvzh3nv3bm4c3ld7pknw2g76cjkx81hsrmbrd1irlv4s4b00" 25153 }, 25154 "stable": { 25155 "version": [ 25156 0, 25157 1, 25158 + 10 25159 ], 25160 + "commit": "f80f63822ffae78de38dbe72cacaeb1aaa96c732", 25161 + "sha256": "13v0fvzh3nv3bm4c3ld7pknw2g76cjkx81hsrmbrd1irlv4s4b00" 25162 } 25163 }, 25164 { ··· 25623 "repo": "joaotavora/eglot", 25624 "unstable": { 25625 "version": [ 25626 + 20220509, 25627 + 1904 25628 ], 25629 "deps": [ 25630 "eldoc", ··· 25634 "seq", 25635 "xref" 25636 ], 25637 + "commit": "ba618d2cee55c8c339d46621b7e721957cc30a72", 25638 + "sha256": "08ynxy8wpb1ran8r7h51n5r1njpjvz7hdxkgvr5njlhwp5wz2jd5" 25639 }, 25640 "stable": { 25641 "version": [ ··· 25852 "repo": "kostafey/ejc-sql", 25853 "unstable": { 25854 "version": [ 25855 + 20220511, 25856 + 1619 25857 ], 25858 "deps": [ 25859 "clomacs", ··· 25861 "direx", 25862 "spinner" 25863 ], 25864 + "commit": "900cf3ff0a8cffeeb0155ca131fa2e425ca9137d", 25865 + "sha256": "0r7rfpfxxn620cafw2h3in384lql3qbnpdrc8j2yyqlqgp73yygk" 25866 }, 25867 "stable": { 25868 "version": [ ··· 25926 "repo": "xgqt/emacs-el-fetch", 25927 "unstable": { 25928 "version": [ 25929 + 20220510, 25930 + 1536 25931 ], 25932 + "commit": "3aa9594e807cb03af228c13224b381ecdd7ba2e3", 25933 + "sha256": "0rpdmhck3qn325jscysvgj2nzdy09rl895wsk5jhssmgmnp92zxs" 25934 }, 25935 "stable": { 25936 "version": [ 25937 + 2, 25938 + 0, 25939 + 0 25940 ], 25941 + "commit": "3fa818577238adf9db7264e302d9614ce973d307", 25942 + "sha256": "0fbbnwxm96zmj2hlsjjxki901vs98qcxn8shyz8bs3qzb6kvlwyw" 25943 } 25944 }, 25945 { ··· 26076 }, 26077 { 26078 "ename": "el-patch", 26079 + "commit": "118ec831528f718f0dc4bc331a708ecb4a0eefd5", 26080 + "sha256": "0xfpkpkyzf8bpp9fhlswc96vw9v3lwhhkc3qwsnzmqkzkim9idrk", 26081 "fetcher": "github", 26082 + "repo": "radian-software/el-patch", 26083 "unstable": { 26084 "version": [ 26085 + 20220509, 26086 + 2253 26087 ], 26088 + "commit": "156c61b72c1c9c61bd886b5931b8a382153f52fa", 26089 + "sha256": "043m4lpm7m7mbprnb5igx0rz2r6c425vl33m7is5j47pm1ysvp31" 26090 }, 26091 "stable": { 26092 "version": [ ··· 27654 833 27655 ], 27656 "commit": "bf0dd36eb2f5b339c6b561dbe3ee9693565b484b", 27657 + "sha256": "0dv71zc95m5sa4824vk3d1xk726nh2v50i0yp6w3ydfzzsfph6j6" 27658 }, 27659 "stable": { 27660 "version": [ ··· 27663 1 27664 ], 27665 "commit": "bf0dd36eb2f5b339c6b561dbe3ee9693565b484b", 27666 + "sha256": "0dv71zc95m5sa4824vk3d1xk726nh2v50i0yp6w3ydfzzsfph6j6" 27667 } 27668 }, 27669 { ··· 28213 "emacsql", 28214 "emacsql-sqlite" 28215 ], 28216 + "commit": "3e820c66fdaa9937f9e612900954dcd6c7d01943", 28217 + "sha256": "1mhffs3lxw5q9gccrdpj5bdg2ks04hbp183gmdn1rl5y51x8xp96" 28218 } 28219 }, 28220 { ··· 28233 "emacsql-sqlite", 28234 "sqlite3" 28235 ], 28236 + "commit": "3e820c66fdaa9937f9e612900954dcd6c7d01943", 28237 + "sha256": "1mhffs3lxw5q9gccrdpj5bdg2ks04hbp183gmdn1rl5y51x8xp96" 28238 } 28239 }, 28240 { ··· 28371 "repo": "oantolin/embark", 28372 "unstable": { 28373 "version": [ 28374 + 20220509, 28375 + 2259 28376 ], 28377 + "commit": "81c7f751be1de33dee9f7523fd3429ee3fe9a0d1", 28378 + "sha256": "11yvhhq251qmbnljjcfxnc53dqa63jm6ximfd0618hcwcgxlkkdc" 28379 }, 28380 "stable": { 28381 "version": [ ··· 28401 "consult", 28402 "embark" 28403 ], 28404 + "commit": "81c7f751be1de33dee9f7523fd3429ee3fe9a0d1", 28405 + "sha256": "11yvhhq251qmbnljjcfxnc53dqa63jm6ximfd0618hcwcgxlkkdc" 28406 }, 28407 "stable": { 28408 "version": [ ··· 29300 "repo": "emacscollective/epkg", 29301 "unstable": { 29302 "version": [ 29303 + 20220510, 29304 + 2036 29305 ], 29306 "deps": [ 29307 "closql", 29308 "compat" 29309 ], 29310 + "commit": "4524f9a8f19717c4afb84a184db7841b4ffcbf56", 29311 + "sha256": "01j2190srr9mkc68f1l9rcpxvqadn4qprddamj351n97079jw4cs" 29312 }, 29313 "stable": { 29314 "version": [ ··· 29331 "repo": "emacscollective/epkg-marginalia", 29332 "unstable": { 29333 "version": [ 29334 + 20220511, 29335 + 1942 29336 ], 29337 "deps": [ 29338 "compat", 29339 "epkg", 29340 "marginalia" 29341 ], 29342 + "commit": "ee784211346c7c374accec2bda78788cc68fa641", 29343 + "sha256": "0pl4qwh3fhrj306qrhkfgp8w3yv2hbz2y88gsx1ifsipq22n2343" 29344 }, 29345 "stable": { 29346 "version": [ ··· 29954 20200914, 29955 644 29956 ], 29957 + "commit": "9a5f2b4a8cd14edbde9d16dcdfcb8db2a91be0d8", 29958 + "sha256": "1pn3w2prmz9ibhy5l22c6mmccr7lfy561gkd2s41hlcjsyd4ar00" 29959 }, 29960 "stable": { 29961 "version": [ ··· 29979 20220215, 29980 1844 29981 ], 29982 + "commit": "4bf325feb5885056ad3315d9a0316b652613b3d9", 29983 + "sha256": "0dwjafw8ab71bqvwpv49cwqarrcd5pa0wyh7yxjn3spnl6f80j1l" 29984 }, 29985 "stable": { 29986 "version": [ ··· 31550 "repo": "emacs-evil/evil", 31551 "unstable": { 31552 "version": [ 31553 + 20220510, 31554 + 2302 31555 ], 31556 "deps": [ 31557 "cl-lib", 31558 "goto-chg" 31559 ], 31560 + "commit": "5a9cfbc443219c4063b17853b7828ec0a00d2736", 31561 + "sha256": "1vr46xn72l5m0r9v3d1xaz86q607ga5adxlqdh7mlymw15w004ha" 31562 }, 31563 "stable": { 31564 "version": [ ··· 32317 "repo": "redguardtoo/evil-matchit", 32318 "unstable": { 32319 "version": [ 32320 + 20220513, 32321 + 230 32322 ], 32323 "deps": [ 32324 "evil" 32325 ], 32326 + "commit": "b47931128c6b7924ea432895f469769986de410d", 32327 + "sha256": "1zjdwqqrc2znk2y8f424ygnkxsvx0hq46gicjb4nllbvvvbx6kyb" 32328 }, 32329 "stable": { 32330 "version": [ ··· 33077 "deps": [ 33078 "evil" 33079 ], 33080 + "commit": "5a9cfbc443219c4063b17853b7828ec0a00d2736", 33081 + "sha256": "1vr46xn72l5m0r9v3d1xaz86q607ga5adxlqdh7mlymw15w004ha" 33082 }, 33083 "stable": { 33084 "version": [ ··· 34316 "repo": "rejeep/f.el", 34317 "unstable": { 34318 "version": [ 34319 + 20220511, 34320 + 1502 34321 ], 34322 "deps": [ 34323 "dash", 34324 "s" 34325 ], 34326 + "commit": "ad2c7dd369a15988f1c6298b5edb901ce2e1f446", 34327 + "sha256": "0rjggym7a7sb12bspdydk2vx12hqjqv0qmkpfi0z6s7mcnpl7fhq" 34328 }, 34329 "stable": { 34330 "version": [ ··· 34487 "repo": "WJCFerguson/emacs-faff-theme", 34488 "unstable": { 34489 "version": [ 34490 + 20220512, 34491 + 21 34492 ], 34493 + "commit": "33b3344848ae17d45c19d222e53b368ea6867e7e", 34494 + "sha256": "1yi2xzp1a945p11h6ac5ci0n56ffd40sm3ja6i4hrw4dd41axgyg" 34495 }, 34496 "stable": { 34497 "version": [ ··· 34987 "url": "https://git.sr.ht/~technomancy/fennel-mode", 34988 "unstable": { 34989 "version": [ 34990 + 20220510, 34991 + 748 34992 ], 34993 + "commit": "0e9ed013a163d91993a2883ad5c37c02694c2b92", 34994 + "sha256": "0rdrap1kyj0csaa25d46xvb5hgbwlcqvmwrq6yicmbsnpdrwpwy7" 34995 }, 34996 "stable": { 34997 "version": [ ··· 35000 1 35001 ], 35002 "commit": "54ed0792d0ac43a2d5db39741cf070c627368419", 35003 + "sha256": "0dwas3ivhxdyw6njkcadc8c17cirq325cmby04qls8zkmrvlil1w" 35004 } 35005 }, 35006 { ··· 37276 "deps": [ 37277 "flycheck" 37278 ], 37279 + "commit": "c52ba814f299f62a2a339bae679f3d6d04566854", 37280 + "sha256": "11l69nj1f61lvw4arn9k0g9n5pczypn15qq4c02x1kljjlx0h1zs" 37281 }, 37282 "stable": { 37283 "version": [ ··· 37355 "grammarly", 37356 "s" 37357 ], 37358 + "commit": "abc66e71d542f65a90c394058cdd3a7b2002c6a6", 37359 + "sha256": "0irp6cpi9qy80wssrncdlxjr2612l2mnprrfjjm5hjggflp5wygg" 37360 }, 37361 "stable": { 37362 "version": [ ··· 37781 "deps": [ 37782 "flycheck" 37783 ], 37784 + "commit": "63674d8b928377d763df40317e15f4ca257f77d6", 37785 + "sha256": "14fjv2wckymhfw0sm89bkbn6lvmcxsivv5m1dva0wr5j0gppaj47" 37786 }, 37787 "stable": { 37788 "version": [ ··· 39088 "deps": [ 39089 "flymake" 39090 ], 39091 + "commit": "6ce75c17bc02ae9755deda50d5ac366785c94091", 39092 + "sha256": "0nbggmz3b6r2rixbn20r58dca05h45lsdyfbbw74syd4fv5g8s9c" 39093 }, 39094 "stable": { 39095 "version": [ ··· 39316 "grammarly", 39317 "s" 39318 ], 39319 + "commit": "74ab6bb817205dbf1cd77a161be76904c1e17b75", 39320 + "sha256": "0ngs38h3zcg2znqbfy0m886g4spn39bnch4s1zcl8f8zcn3s24mg" 39321 }, 39322 "stable": { 39323 "version": [ ··· 39572 "repo": "emacs-languagetool/flymake-languagetool", 39573 "unstable": { 39574 "version": [ 39575 + 20220512, 39576 + 2355 39577 ], 39578 "deps": [ 39579 "s" 39580 ], 39581 + "commit": "c24339b50a4b42cc2bd7e8e167c77a75d8227774", 39582 + "sha256": "1lvpyn9s3x9wyhdsa9krra03appn8p0dv8086hixpmqm10d21wl1" 39583 }, 39584 "stable": { 39585 "version": [ ··· 39695 "deps": [ 39696 "flymake" 39697 ], 39698 + "commit": "06d819c6d1292f8c87ebc0681c83c9fb48620bbe", 39699 + "sha256": "1blzcr2c176wlqv8fr4mna0qqm20cd77s8b4gz21jzrq44d7qqf8" 39700 }, 39701 "stable": { 39702 "version": [ ··· 39784 "deps": [ 39785 "flymake-easy" 39786 ], 39787 + "commit": "10d3e7e1c31c104e3da694b2b52cd34df61efa5e", 39788 + "sha256": "1gzg5xz2vchz6kq7hyc1pvd250kfnwkpy88gmh857v3mnzrq71dg" 39789 }, 39790 "stable": { 39791 "version": [ ··· 40764 20191004, 40765 1850 40766 ], 40767 + "commit": "2f38f3583295e05c9ea491b7d1f6b4791169ba86", 40768 + "sha256": "0jyy8nl4r70l0dwc55lg75k7chcwb9zprl185x0122fjqgmnq1ri" 40769 } 40770 }, 40771 { ··· 40857 "transient", 40858 "yaml" 40859 ], 40860 + "commit": "05babf69068de7a982bd2e8ad888f37dc7319003", 40861 + "sha256": "02mck5c2cbz61j2xwgpwaqlpbnp5svn6g05lylhmw7g0sprzcdvb" 40862 }, 40863 "stable": { 40864 "version": [ ··· 40913 "repo": "lassik/emacs-format-all-the-code", 40914 "unstable": { 40915 "version": [ 40916 + 20220510, 40917 + 2108 40918 ], 40919 "deps": [ 40920 "inheritenv", 40921 "language-id" 40922 ], 40923 + "commit": "828280eaf3b46112e17746a7d03235570a633425", 40924 + "sha256": "157bn3s0lrmfjzp7a8sw8sqbblp5r85yaqb1phjk0prvdn798q2n" 40925 }, 40926 "stable": { 40927 "version": [ ··· 41218 "repo": "tarsius/frameshot", 41219 "unstable": { 41220 "version": [ 41221 + 20220509, 41222 + 2010 41223 ], 41224 "deps": [ 41225 "compat" 41226 ], 41227 + "commit": "ea57484dbba917a437ad3a20ea956aa2275bdc9a", 41228 + "sha256": "18hv2ldysxf5s46a2pjbxfq9fc3bkbdlkr01mfqk7ghs0wg6h6xs" 41229 }, 41230 "stable": { 41231 "version": [ ··· 41682 "deps": [ 41683 "cl-lib" 41684 ], 41685 + "commit": "041430cda31c73fd51d7c16e736dcf08db13eb11", 41686 + "sha256": "10kv8hpqh08mgyhn04i72kvzncdaqyflai6h0flg89wv1air0m46" 41687 }, 41688 "stable": { 41689 "version": [ ··· 41881 20211231, 41882 1837 41883 ], 41884 + "commit": "7691a73a85f014a34cc161650e989801f2aba5a3", 41885 + "sha256": "1xm0cmfyvypxhygl36m3r68asixmrdq23q4c3vkx8y7i7yaml4w1" 41886 }, 41887 "stable": { 41888 "version": [ ··· 41955 "deps": [ 41956 "compat" 41957 ], 41958 + "commit": "e6eeac7552b61d4f7abd51aff6ce72394133663e", 41959 + "sha256": "0xs5fl74cxksab7pplvkaa0dd74fhlr35l3c7f80w44zh1mmpmff" 41960 }, 41961 "stable": { 41962 "version": [ ··· 42077 "repo": "ShiroTakeda/gams-mode", 42078 "unstable": { 42079 "version": [ 42080 + 20220512, 42081 + 222 42082 ], 42083 + "commit": "d7f5bb688e569c7c517e4c3af32a5319c492362b", 42084 + "sha256": "19p84xr9xs0224wmy4r7r0167vwd99qx4804hnrxw0y1855qih3g" 42085 }, 42086 "stable": { 42087 "version": [ ··· 42184 "repo": "godotengine/emacs-gdscript-mode", 42185 "unstable": { 42186 "version": [ 42187 + 20220510, 42188 + 944 42189 ], 42190 + "commit": "d9e1f7f766c73115de8ce2815bc249069636c3db", 42191 + "sha256": "165xf8sg0sfnw8cvgfpym0jcfkn1dm7skpnvhrl647wmhba175is" 42192 }, 42193 "stable": { 42194 "version": [ ··· 42872 "repo": "leoliu/ggtags", 42873 "unstable": { 42874 "version": [ 42875 + 20220511, 42876 + 610 42877 ], 42878 + "commit": "40635a1effd3a9c2adef63c4760010c9468a7a4d", 42879 + "sha256": "0ycvia6zabh02idl2j26j4r2lxhf0srpg0s2qxxr82n3wsk7z00q" 42880 }, 42881 "stable": { 42882 "version": [ ··· 43088 "let-alist", 43089 "treepy" 43090 ], 43091 + "commit": "f14c1bc84135fe149c42348dce6eaa23ba610224", 43092 + "sha256": "01ac9789ns56bsishxl904ypc3kvc1w6svfrww8phd6hpwl0f8wc" 43093 }, 43094 "stable": { 43095 "version": [ ··· 43455 "transient", 43456 "with-editor" 43457 ], 43458 + "commit": "12272c825d216148454b7cfa57fef202cdfe0c7d", 43459 + "sha256": "0h9f52c1kmgzr0w85knwvf1r2b6dw0dariy2sn9mpqsvpj3cyv2c" 43460 }, 43461 "stable": { 43462 "version": [ ··· 43796 20220422, 43797 1611 43798 ], 43799 + "commit": "eca3bb42ea8abed9ef8549b2ac91bbea445c5bb5", 43800 + "sha256": "0vyxczxf1dsszdnv6jbgg5vj7fys5mam0jwgfsyzmhclrfgp5kwy" 43801 }, 43802 "stable": { 43803 "version": [ ··· 46376 "repo": "vmware/govmomi", 46377 "unstable": { 46378 "version": [ 46379 + 20220509, 46380 + 1455 46381 ], 46382 "deps": [ 46383 "dash", ··· 46385 "magit-popup", 46386 "s" 46387 ], 46388 + "commit": "b4c0b4fe98b2692cf84e445ad2528911e3e1a622", 46389 + "sha256": "1wcr3bw7ck5v5w1x3ivhmgm4lq7ln0fvszl7sw0cyj95jqcd7brd" 46390 }, 46391 "stable": { 46392 "version": [ ··· 46612 "repo": "emacs-grammarly/grammarly", 46613 "unstable": { 46614 "version": [ 46615 + 20220509, 46616 + 1937 46617 ], 46618 "deps": [ 46619 "request", 46620 "s", 46621 "websocket" 46622 ], 46623 + "commit": "3e14e53b87465ca35b08b5355061e380afb87b31", 46624 + "sha256": "0zia9hpamwjhyc38l903jwfij06y237j5c2sx600g5r9y36byg9z" 46625 }, 46626 "stable": { 46627 "version": [ ··· 47810 "repo": "iain/hamburger-menu-mode", 47811 "unstable": { 47812 "version": [ 47813 + 20220509, 47814 + 1341 47815 ], 47816 + "commit": "06bc9d6872007a31226d7410d497a0acd98b272b", 47817 + "sha256": "0wwsfc114s1rksrja2cxhl2kkk550imm3rnwnwq9ng0nv855qc5m" 47818 }, 47819 "stable": { 47820 "version": [ 47821 1, 47822 0, 47823 + 6 47824 ], 47825 + "commit": "06bc9d6872007a31226d7410d497a0acd98b272b", 47826 + "sha256": "0wwsfc114s1rksrja2cxhl2kkk550imm3rnwnwq9ng0nv855qc5m" 47827 } 47828 }, 47829 { ··· 48449 "repo": "emacs-helm/helm", 48450 "unstable": { 48451 "version": [ 48452 + 20220512, 48453 + 1048 48454 ], 48455 "deps": [ 48456 "helm-core", 48457 "popup" 48458 ], 48459 + "commit": "0f7d7acf5724d79ed51ae22349ceb743c4868a3e", 48460 + "sha256": "177gpf0s722xdya74gdx8my3jw49f38im31i3impw5c25g8x9ajs" 48461 }, 48462 "stable": { 48463 "version": [ ··· 49355 "repo": "emacs-helm/helm", 49356 "unstable": { 49357 "version": [ 49358 + 20220512, 49359 + 856 49360 ], 49361 "deps": [ 49362 "async" 49363 ], 49364 + "commit": "0f7d7acf5724d79ed51ae22349ceb743c4868a3e", 49365 + "sha256": "177gpf0s722xdya74gdx8my3jw49f38im31i3impw5c25g8x9ajs" 49366 }, 49367 "stable": { 49368 "version": [ ··· 52357 "s", 52358 "searcher" 52359 ], 52360 + "commit": "d0a3aa7c4a882c6563c053c3317600582043d71c", 52361 + "sha256": "10hvm4xym1886b02jqpg83p2pz6s9nkkrs7ifnydhn2zn5khn855" 52362 }, 52363 "stable": { 52364 "version": [ ··· 54246 "deps": [ 54247 "compat" 54248 ], 54249 + "commit": "2337eac8cab0d4b73a96fb3936d2ac87600e3c91", 54250 + "sha256": "1l64inwrjvmjgm5852aclz3izy58vnf0xpxhr7rp3kg947qhr72a" 54251 }, 54252 "stable": { 54253 "version": [ ··· 56419 "deps": [ 56420 "compat" 56421 ], 56422 + "commit": "4dbc59789835396fdc76bfde4ae4971c8a9ceaed", 56423 + "sha256": "0hq6hvp5cvys13ms7zfd8477c4mwvwxgk6rqczyfnzgi4qjyjz54" 56424 }, 56425 "stable": { 56426 "version": [ ··· 58911 }, 58912 { 58913 "ename": "ivy-prescient", 58914 + "commit": "118ec831528f718f0dc4bc331a708ecb4a0eefd5", 58915 + "sha256": "15fynfhsr75v285szkqqamlcs25pzsz5nywp5j1asp33dnkvqdhi", 58916 "fetcher": "github", 58917 + "repo": "radian-software/prescient.el", 58918 "unstable": { 58919 "version": [ 58920 + 20220509, 58921 + 2300 58922 ], 58923 "deps": [ 58924 "ivy", 58925 "prescient" 58926 ], 58927 + "commit": "c05f8a43c6ff07a8b5a3ba8df7a2ec35677b7484", 58928 + "sha256": "0752dyl4fhi0jvbm238s5p1sv7z4jlkmkdrxvwn0dlhfr0rhfw1c" 58929 }, 58930 "stable": { 58931 "version": [ ··· 60056 "repo": "Michael-Allan/Java_Mode_Tamed", 60057 "unstable": { 60058 "version": [ 60059 + 20220510, 60060 + 430 60061 ], 60062 + "commit": "f968413df2c2bd1e00c5b6c61c53bdd208b90ee3", 60063 + "sha256": "0gyf61krqy6d5sjvj5c9z57vqx2nq0fia2pxmk32slisxc9drcqm" 60064 } 60065 }, 60066 { ··· 60990 "repo": "gcv/julia-snail", 60991 "unstable": { 60992 "version": [ 60993 + 20220512, 60994 + 539 60995 ], 60996 "deps": [ 60997 "dash", ··· 61001 "spinner", 61002 "vterm" 61003 ], 61004 + "commit": "88ce4fadc065736e154506538d365a8f1dd643e1", 61005 + "sha256": "1gj9mnv0kyq20hdz506qlz80kx28zwng12vnnahshji6bh6wbwj5" 61006 }, 61007 "stable": { 61008 "version": [ ··· 61029 "repo": "shg/julia-vterm.el", 61030 "unstable": { 61031 "version": [ 61032 + 20220510, 61033 + 2259 61034 ], 61035 "deps": [ 61036 "vterm" 61037 ], 61038 + "commit": "5374776991232de966efca245f9ce24c59728588", 61039 + "sha256": "0cg5mqiciawigb5n7w8q5hi8q1h253nbjif3p9n7vhbckwx318rx" 61040 }, 61041 "stable": { 61042 "version": [ ··· 61943 "deps": [ 61944 "compat" 61945 ], 61946 + "commit": "296fba536287e7a0d88109e75a0bc0181647dc5e", 61947 + "sha256": "14v77x0knvjb7czrhgarq0apxavbnxqi3ra833qf0f1s599wkv77" 61948 }, 61949 "stable": { 61950 "version": [ ··· 62043 "deps": [ 62044 "compat" 62045 ], 62046 + "commit": "f95fded924a7184a638ef233324fcda34c60ff7e", 62047 + "sha256": "0rbngqw577clsrxjkrhcpw9347796w52dqi2v94a2xmzvhq4rff8" 62048 }, 62049 "stable": { 62050 "version": [ ··· 62175 20220222, 62176 639 62177 ], 62178 + "commit": "d6fe2d51769ee5d1d84a74adeae5c3a0aa66a602", 62179 + "sha256": "0hkp0dl8aqc2javsnl3pm37iy9f534l6wf1vgh44ba6ws6bxxgl5" 62180 }, 62181 "stable": { 62182 "version": [ ··· 62746 "repo": "abrochard/kubel", 62747 "unstable": { 62748 "version": [ 62749 + 20220509, 62750 + 104 62751 ], 62752 "deps": [ 62753 "dash", ··· 62755 "transient", 62756 "yaml-mode" 62757 ], 62758 + "commit": "c45e19a215e8e7df80a61c10ca1fa26dcfd1de35", 62759 + "sha256": "03i6iyhiqhi2vxb8qvw99n6h6xg8jnxkazikw6sqnp0flnrgcf7q" 62760 }, 62761 "stable": { 62762 "version": [ ··· 62788 "evil", 62789 "kubel" 62790 ], 62791 + "commit": "c45e19a215e8e7df80a61c10ca1fa26dcfd1de35", 62792 + "sha256": "03i6iyhiqhi2vxb8qvw99n6h6xg8jnxkazikw6sqnp0flnrgcf7q" 62793 }, 62794 "stable": { 62795 "version": [ ··· 62926 "deps": [ 62927 "s" 62928 ], 62929 + "commit": "61d7211469ea3e2c429937869c5a29584103361a", 62930 + "sha256": "0mi5jln34pd372h7f3rvigis6dll6sxdqg9izj9bip93917cff0y" 62931 }, 62932 "stable": { 62933 "version": [ ··· 63010 "deps": [ 63011 "seq" 63012 ], 63013 + "commit": "3ab31ef28596ac2f95be4c4280cd86489232da97", 63014 + "sha256": "1vgwwzqnbd936lid4aniyvg27p593psnapzk9g8xncssagx7wc64" 63015 }, 63016 "stable": { 63017 "version": [ ··· 63034 "repo": "tecosaur/LaTeX-auto-activating-snippets", 63035 "unstable": { 63036 "version": [ 63037 + 20220509, 63038 + 1234 63039 ], 63040 "deps": [ 63041 "aas", 63042 "auctex", 63043 "yasnippet" 63044 ], 63045 + "commit": "44533de4968fee924d9cc81ce9a23c9d82847db3", 63046 + "sha256": "13rflldz3684qv6xvg44sj6r1dzaqclmjcg0rxfnksf6cb47l1yg" 63047 }, 63048 "stable": { 63049 "version": [ ··· 63167 "highlight", 63168 "math-symbol-lists" 63169 ], 63170 + "commit": "67ae434d6ce2073e9c914817d21269f5c6a2a66f", 63171 + "sha256": "14m9i4ikppbf4ffrxibhdlvanyvjfhx68xalga66lj5chhhdqbk5" 63172 }, 63173 "stable": { 63174 "version": [ ··· 63682 "repo": "AnselmC/le-thesaurus.el", 63683 "unstable": { 63684 "version": [ 63685 + 20220509, 63686 + 2120 63687 ], 63688 "deps": [ 63689 "request" 63690 ], 63691 + "commit": "2af1ab37097cdd17044ab217e9aa6839add98626", 63692 + "sha256": "1w2k2pvzgd5v008ma9bc6y16aiyjixhgvrn7bxf6cy43056mh0wf" 63693 } 63694 }, 63695 { ··· 64568 20220209, 64569 755 64570 ], 64571 + "commit": "7d706986636b5cfc04f14341c19046b56b61b51c", 64572 + "sha256": "0v7306fq02q36smg157xcsil0r99vznzf7fx0xnys2df5id0ww36" 64573 }, 64574 "stable": { 64575 "version": [ ··· 64578 3 64579 ], 64580 "commit": "8fcf8424cbfb06d3b5a89b2ce60826a5e4bf76f4", 64581 + "sha256": "12c0g379jx2m30c3m9rarhh7hwg8sjsb2bbh0j6f3k51ya90kcbh" 64582 } 64583 }, 64584 { ··· 64598 "indicators", 64599 "ov" 64600 ], 64601 + "commit": "c0cebef629a98556f5696f78436f4d8428ce8135", 64602 + "sha256": "0k7gzx3g33wf7w3wbpiv6b3amnl2miyynvr3x6wlpzmh3q57s11a" 64603 }, 64604 "stable": { 64605 "version": [ ··· 65435 "repo": "donkirkby/live-py-plugin", 65436 "unstable": { 65437 "version": [ 65438 + 20220512, 65439 + 34 65440 ], 65441 + "commit": "7eaf6dc55caaaa65c5d6937b25e1748df75dbdb3", 65442 + "sha256": "0gcszam4qsl64jx5yggbawsawrj74cqsp7mbzmvvs40gr8pvx2yp" 65443 }, 65444 "stable": { 65445 "version": [ ··· 65555 "deps": [ 65556 "seq" 65557 ], 65558 + "commit": "3dd1d99ebc99aa39b165569b3d02a87368d4849a", 65559 + "sha256": "0x41fagf4917yb5y3na5y1x60vfzdi44cpimdmg4dz4vcp3g23mm" 65560 }, 65561 "stable": { 65562 "version": [ ··· 66069 "repo": "okamsn/loopy", 66070 "unstable": { 66071 "version": [ 66072 + 20220510, 66073 + 323 66074 ], 66075 "deps": [ 66076 "map", 66077 "seq" 66078 ], 66079 + "commit": "98537cb29e28d32d3607fa61253ff1bf04db2539", 66080 + "sha256": "1skl536wmygbnnvcdh307zh5d3y0vz31q0nkwvbd5rpifl4rpk2h" 66081 }, 66082 "stable": { 66083 "version": [ ··· 66108 "dash", 66109 "loopy" 66110 ], 66111 + "commit": "98537cb29e28d32d3607fa61253ff1bf04db2539", 66112 + "sha256": "1skl536wmygbnnvcdh307zh5d3y0vz31q0nkwvbd5rpifl4rpk2h" 66113 }, 66114 "stable": { 66115 "version": [ ··· 66283 "repo": "emacs-grammarly/lsp-grammarly", 66284 "unstable": { 66285 "version": [ 66286 + 20220511, 66287 + 707 66288 ], 66289 "deps": [ 66290 "grammarly", ··· 66293 "request", 66294 "s" 66295 ], 66296 + "commit": "709c522df7a68e2724dbfb5bd210199dff5a2264", 66297 + "sha256": "188sx0a6n1kl9awcic1pjbzxsqhq2cbbk8chbp8zgpl0x67ph7d6" 66298 }, 66299 "stable": { 66300 "version": [ 66301 0, 66302 + 3, 66303 + 0 66304 ], 66305 "deps": [ 66306 "grammarly", ··· 66309 "request", 66310 "s" 66311 ], 66312 + "commit": "fe47a75700dc4f16ec4ff77d6d0306f39566464b", 66313 + "sha256": "09kylilfw9qysd8bqf9dbc4mlzxam5iph64c09c5xyfzagmmhx8n" 66314 } 66315 }, 66316 { ··· 66551 "deps": [ 66552 "lsp-mode" 66553 ], 66554 + "commit": "8c2ba735ed1e21777408167f6a7c7d9681d9e7bc", 66555 + "sha256": "1iqmvy870vllb794cpmsnpm65hindxym9dnhb0pnxz0mf6hcvz2v" 66556 }, 66557 "stable": { 66558 "version": [ ··· 66577 "repo": "emacs-lsp/lsp-metals", 66578 "unstable": { 66579 "version": [ 66580 + 20220510, 66581 + 1457 66582 ], 66583 "deps": [ 66584 "dap-mode", ··· 66590 "scala-mode", 66591 "treemacs" 66592 ], 66593 + "commit": "6980fb902c3c7b43ff0d4056a6cd7d8b4709866e", 66594 + "sha256": "0v2zj1jrgvx6gwhp414v9jg8j0qz724dv2fh8xwqksl5qjiq6kaz" 66595 }, 66596 "stable": { 66597 "version": [ ··· 66621 "repo": "emacs-lsp/lsp-mode", 66622 "unstable": { 66623 "version": [ 66624 + 20220511, 66625 + 1331 66626 ], 66627 "deps": [ 66628 "dash", ··· 66632 "markdown-mode", 66633 "spinner" 66634 ], 66635 + "commit": "465bcc5fbeb6293446a3241f5f2c1b872337958c", 66636 + "sha256": "151vc741rwi2gggkw39msql1y050b1n46rrjnzalz9nqsk6l5dp2" 66637 }, 66638 "stable": { 66639 "version": [ ··· 66871 "ht", 66872 "lsp-mode" 66873 ], 66874 + "commit": "a429be2aea7797369a3c751ef54e3554733117be", 66875 + "sha256": "11rgfn9sdwxsncc4xrchiqn9dbqi3zirjvbz91kc5rvjv436077b" 66876 }, 66877 "stable": { 66878 "version": [ ··· 66903 "deps": [ 66904 "lsp-mode" 66905 ], 66906 + "commit": "f877659babd3b5f8ec09a8ad7d08193d95b6822e", 66907 + "sha256": "0v7nz76wah1ihdi3rjrcm3xljj7p16161rzdiqk0ds4y0xll00xs" 66908 } 66909 }, 66910 { ··· 66981 "repo": "emacs-lsp/lsp-ui", 66982 "unstable": { 66983 "version": [ 66984 + 20220510, 66985 + 627 66986 ], 66987 "deps": [ 66988 "dash", 66989 "lsp-mode", 66990 "markdown-mode" 66991 ], 66992 + "commit": "eba9c4eaa255a14e2facd658e7122674c05390f8", 66993 + "sha256": "09c6qy17dlqh2jnzk6xf6cj8r7gbwgn59cmhaadzhh3v3n13362z" 66994 }, 66995 "stable": { 66996 "version": [ ··· 67325 "repo": "amake/macports.el", 67326 "unstable": { 67327 "version": [ 67328 + 20220512, 67329 + 1330 67330 ], 67331 "deps": [ 67332 "transient" 67333 ], 67334 + "commit": "ebca27f8e16d3607070582849bea81d40ca5f584", 67335 + "sha256": "0xz5y5smfa69ylngkfck935c03ak40i4aazzklzyslv385vv9kd4" 67336 } 67337 }, 67338 { ··· 67519 "repo": "magit/magit", 67520 "unstable": { 67521 "version": [ 67522 + 20220512, 67523 + 1218 67524 ], 67525 "deps": [ 67526 "compat", ··· 67530 "transient", 67531 "with-editor" 67532 ], 67533 + "commit": "12272c825d216148454b7cfa57fef202cdfe0c7d", 67534 + "sha256": "0h9f52c1kmgzr0w85knwvf1r2b6dw0dariy2sn9mpqsvpj3cyv2c" 67535 }, 67536 "stable": { 67537 "version": [ ··· 67610 "url": "https://codeberg.org/ideasman42/emacs-magit-commit-mark.git", 67611 "unstable": { 67612 "version": [ 67613 + 20220511, 67614 + 2341 67615 ], 67616 "deps": [ 67617 "magit" 67618 ], 67619 + "commit": "ce2cd6daeb46eaea597a3b2c9d9ead80da9f0d09", 67620 + "sha256": "0kawy31kd0ywmrz705i5yf7blpd3zllpik0688j7cn0rq663vv2r" 67621 } 67622 }, 67623 { ··· 67897 "libgit", 67898 "magit" 67899 ], 67900 + "commit": "12272c825d216148454b7cfa57fef202cdfe0c7d", 67901 + "sha256": "0h9f52c1kmgzr0w85knwvf1r2b6dw0dariy2sn9mpqsvpj3cyv2c" 67902 }, 67903 "stable": { 67904 "version": [ ··· 68053 "compat", 68054 "dash" 68055 ], 68056 + "commit": "12272c825d216148454b7cfa57fef202cdfe0c7d", 68057 + "sha256": "0h9f52c1kmgzr0w85knwvf1r2b6dw0dariy2sn9mpqsvpj3cyv2c" 68058 }, 68059 "stable": { 68060 "version": [ ··· 69303 "repo": "matsievskiysv/math-preview", 69304 "unstable": { 69305 "version": [ 69306 + 20220512, 69307 + 1853 69308 + ], 69309 + "deps": [ 69310 + "dash", 69311 + "json", 69312 + "s" 69313 + ], 69314 + "commit": "0f0b2315d23e5d18b627c9faa8f231f175b728a0", 69315 + "sha256": "003ih3nrv753rj4ssdvs6ddqzxgl63vzmrypd41xf4g5dfsbmsf0" 69316 + }, 69317 + "stable": { 69318 + "version": [ 69319 + 4, 69320 + 0, 69321 + 0 69322 ], 69323 "deps": [ 69324 "dash", 69325 + "json", 69326 "s" 69327 ], 69328 + "commit": "0f0b2315d23e5d18b627c9faa8f231f175b728a0", 69329 + "sha256": "003ih3nrv753rj4ssdvs6ddqzxgl63vzmrypd41xf4g5dfsbmsf0" 69330 } 69331 }, 69332 { ··· 70396 20210131, 70397 2152 70398 ], 70399 + "commit": "00f6045b1292d23a0579208521a470d685bdc59f", 70400 + "sha256": "05w41l2n7y2xrckx95hxa3m96py42m2wnzw2h1278zzbwpn5w1fm" 70401 }, 70402 "stable": { 70403 "version": [ ··· 70805 "deps": [ 70806 "compat" 70807 ], 70808 + "commit": "19dae1c41542777cb5b0311b6e2e77f43e2fd407", 70809 + "sha256": "0rngii17j938hpri6dlijrwyr18mdbxjkq9nkgi57h6aqvh2s49c" 70810 }, 70811 "stable": { 70812 "version": [ ··· 71325 "deps": [ 71326 "compat" 71327 ], 71328 + "commit": "e8e17b96df1b9fdc448bfc5367a24c2917de88d4", 71329 + "sha256": "1m13xvbh3msnxsr2q3ir88vmhd832rw5rih648064b0fbismszmc" 71330 }, 71331 "stable": { 71332 "version": [ ··· 71466 "url": "https://git.sr.ht/~protesilaos/modus-themes", 71467 "unstable": { 71468 "version": [ 71469 + 20220512, 71470 + 1808 71471 ], 71472 + "commit": "b6285162d80fe438b4ac99acff74d33b5f901c35", 71473 + "sha256": "139ycd3p63hlxs70g266xj6i7bng1p2xavwcsxf4j4nvfayib9r7" 71474 }, 71475 "stable": { 71476 "version": [ ··· 71819 "deps": [ 71820 "compat" 71821 ], 71822 + "commit": "d56a70bc71cdf90cfd5cf4d8517aa1d808659241", 71823 + "sha256": "07n4sqxbifkhsph45waa81ayqk9lpg51zr1zi9474s6wm9vmpf8i" 71824 }, 71825 "stable": { 71826 "version": [ ··· 71943 "deps": [ 71944 "compat" 71945 ], 71946 + "commit": "3b3716e3f865dd71e3acc3f54a0a9f7e2445695a", 71947 + "sha256": "01chyar1mss073c90ixnwjzkrxzi1fvvid9hwaddwfg224w3phql" 71948 }, 71949 "stable": { 71950 "version": [ ··· 74527 "repo": "m-cat/nimbus-theme", 74528 "unstable": { 74529 "version": [ 74530 + 20220513, 74531 + 240 74532 ], 74533 + "commit": "958a92a979c88bee909d03a78b2faf6726d0069b", 74534 + "sha256": "0l4bi6hnwk4lssmya8x6av0j0nhvwccxaiv2ar1byiy7i3bxvr16" 74535 }, 74536 "stable": { 74537 "version": [ ··· 74950 "repo": "emacscollective/no-littering", 74951 "unstable": { 74952 "version": [ 74953 + 20220509, 74954 + 1733 74955 ], 74956 "deps": [ 74957 "compat" 74958 ], 74959 + "commit": "fed46eb7060aca624bfe1a18f13b73f94e70f013", 74960 + "sha256": "169asd32iask7h6m861j1qfg60mxnmxxcwc3f8ddxkpfjb6b27sq" 74961 }, 74962 "stable": { 74963 "version": [ ··· 74995 "repo": "thomp/noaa", 74996 "unstable": { 74997 "version": [ 74998 + 20220509, 74999 + 1600 75000 ], 75001 "deps": [ 75002 "dash", 75003 "request" 75004 ], 75005 + "commit": "507831164b09a2d769bd68d5a45608fc0de626dd", 75006 + "sha256": "1xsnr4y3al9ps2v1y8yjapmghrvcgk8671h300l3w9w0gjcwkbhj" 75007 } 75008 }, 75009 { ··· 75322 "compat", 75323 "notmuch" 75324 ], 75325 + "commit": "dd852b09415e755cef6a345a2ee454a6cf1e1d06", 75326 + "sha256": "1v8idjm2z2jh6dqnwkslbj0masc04qw9yz6q3jxg7xm4biidw9sq" 75327 }, 75328 "stable": { 75329 "version": [ ··· 75412 "compat", 75413 "notmuch" 75414 ], 75415 + "commit": "b39cdeaec1afda6015cd0d5f4d851b3d59d0fd2b", 75416 + "sha256": "1y8nvxn715wpfxh48nxqpil277lknd70dmwnv3czr8iir909fmi1" 75417 }, 75418 "stable": { 75419 "version": [ ··· 75443 "compat", 75444 "notmuch" 75445 ], 75446 + "commit": "4f64de401b8d955dce528f76575142edd9815dc7", 75447 + "sha256": "0hrki24izxq34w7m21nqhv2rmngkjxra9s5mdr8mr6shl1678pvz" 75448 }, 75449 "stable": { 75450 "version": [ ··· 76110 "deps": [ 76111 "axiom-environment" 76112 ], 76113 + "commit": "b52fa715285e7ad182c8e679ebf05b130dd5b5e2", 76114 + "sha256": "1hb4npfpg1iy9j0p29q1jrjgx0mrn333m45nmsnxw8nlaxzd97x6" 76115 } 76116 }, 76117 { ··· 76622 "repo": "shg/ob-julia-vterm.el", 76623 "unstable": { 76624 "version": [ 76625 + 20220512, 76626 + 820 76627 ], 76628 "deps": [ 76629 + "julia-vterm", 76630 + "queue" 76631 ], 76632 + "commit": "448b1d0d2edf908c13a99a2424fec20de636f5a3", 76633 + "sha256": "040k25ikvngczd8yxm8i6qa0q6vbqgsiq1ddwq1wlvhaw9iam6qm" 76634 }, 76635 "stable": { 76636 "version": [ ··· 77645 "notmuch", 77646 "org" 77647 ], 77648 + "commit": "1a53d6c707514784cabf33d865b577bf77f45913", 77649 + "sha256": "16p7j51z8r047alwn2hkb6944f7ds29ckb97b4k8ia00vwch0d67" 77650 }, 77651 "stable": { 77652 "version": [ ··· 78600 "deps": [ 78601 "async" 78602 ], 78603 + "commit": "c3cbde261fd66b747374b667cb715ca9ee8c52ba", 78604 + "sha256": "084pfgjyf41nmwyixvza9vhmfbaq587hx78knpg7c19aiki2r8zx" 78605 }, 78606 "stable": { 78607 "version": [ 78608 0, 78609 + 4, 78610 0 78611 ], 78612 "deps": [ 78613 "async" 78614 ], 78615 + "commit": "c3cbde261fd66b747374b667cb715ca9ee8c52ba", 78616 + "sha256": "084pfgjyf41nmwyixvza9vhmfbaq587hx78knpg7c19aiki2r8zx" 78617 } 78618 }, 78619 { ··· 79849 "repo": "ahungry/org-jira", 79850 "unstable": { 79851 "version": [ 79852 + 20220509, 79853 + 2058 79854 ], 79855 "deps": [ 79856 "cl-lib", 79857 "dash", 79858 "request" 79859 ], 79860 + "commit": "c0c0086419b4e68bb45bf609931916d6d8ae48a2", 79861 + "sha256": "0yrmgr4jr49qr94j50cbbpgwszgsw6w7c2c0q4pdz2ckqff0y1fx" 79862 }, 79863 "stable": { 79864 "version": [ ··· 79962 "repo": "gizmomogwai/org-kanban", 79963 "unstable": { 79964 "version": [ 79965 + 20220510, 79966 + 2150 79967 ], 79968 "deps": [ 79969 "dash", 79970 "org", 79971 "s" 79972 ], 79973 + "commit": "1d3234359fa52fce5ac1006e2c51f14c760d275e", 79974 + "sha256": "1kvmr1sz3jcd4wc4gybazpigb9yv5wl246axbr7z4m6wjiq0k5nv" 79975 }, 79976 "stable": { 79977 "version": [ 79978 0, 79979 6, 79980 + 4 79981 ], 79982 "deps": [ 79983 "dash", 79984 "org", 79985 "s" 79986 ], 79987 + "commit": "1d3234359fa52fce5ac1006e2c51f14c760d275e", 79988 + "sha256": "1kvmr1sz3jcd4wc4gybazpigb9yv5wl246axbr7z4m6wjiq0k5nv" 79989 } 79990 }, 79991 { ··· 81186 "repo": "jkitchin/org-ref", 81187 "unstable": { 81188 "version": [ 81189 + 20220509, 81190 + 1414 81191 ], 81192 "deps": [ 81193 "avy", ··· 81201 "parsebib", 81202 "s" 81203 ], 81204 + "commit": "0d2355d1eb4dcac1095a03d885788a12fe566610", 81205 + "sha256": "019pbp02fnbb7rcr80cfyi7pa9b413lgdfmbwaak2icb5cpmj452" 81206 }, 81207 "stable": { 81208 "version": [ ··· 81349 "repo": "org-roam/org-roam", 81350 "unstable": { 81351 "version": [ 81352 + 20220512, 81353 + 1634 81354 ], 81355 "deps": [ 81356 "dash", ··· 81359 "magit-section", 81360 "org" 81361 ], 81362 + "commit": "2657f0b444194e1de6957f9cfc112383980d62f9", 81363 + "sha256": "1x1222nvy5fq2cyz8ds271xq03bcyn4252vxzdch9gai3n0vg00b" 81364 }, 81365 "stable": { 81366 "version": [ ··· 81490 "repo": "tyler-dodge/org-runbook", 81491 "unstable": { 81492 "version": [ 81493 + 20220512, 81494 + 1927 81495 ], 81496 + "commit": "ec8b933c1269804546c356fe379169d1f0fce9ea", 81497 + "sha256": "09lg1ycfb3qkzqnhk088ija62kvv0z5jgg4apcbr2y4plb0bgc6h" 81498 }, 81499 "stable": { 81500 "version": [ 81501 1, 81502 + 2 81503 ], 81504 + "commit": "253c2876446650249d59ac35200b373a0aee4e68", 81505 + "sha256": "007n6rjyvfk9ip0hz0wcfdj4qw86rwg05dk5l7zfynnkbb7ggkp6" 81506 } 81507 }, 81508 { ··· 82385 20220220, 82386 1757 82387 ], 82388 + "commit": "2f38f3583295e05c9ea491b7d1f6b4791169ba86", 82389 + "sha256": "0jyy8nl4r70l0dwc55lg75k7chcwb9zprl185x0122fjqgmnq1ri" 82390 } 82391 }, 82392 { ··· 82891 "magit", 82892 "org" 82893 ], 82894 + "commit": "b33b916915db5f91d2c9da4cb1a2457ccbb09332", 82895 + "sha256": "16cbyaafwlfkrnxr7vzcpd3qpg55k6v59qj77njqbzps5axq145b" 82896 }, 82897 "stable": { 82898 "version": [ ··· 82926 "org", 82927 "orgit" 82928 ], 82929 + "commit": "8baf1dee795f026d4555687022487fab89c9bcdf", 82930 + "sha256": "0zdp3yi4vmrhpl8v0vk5d4b8kz77k0qnnhmapm7arv7719ydwzff" 82931 }, 82932 "stable": { 82933 "version": [ ··· 82961 "org", 82962 "seq" 82963 ], 82964 + "commit": "59bec36eb91e78d508e290b69c4383b27466513f", 82965 + "sha256": "116c6vbpisdwkh51084768ar8djzl1bsaafgzfjwhc9f9mb9n384" 82966 }, 82967 "stable": { 82968 "version": [ ··· 83244 "repo": "minad/osm", 83245 "unstable": { 83246 "version": [ 83247 + 20220511, 83248 + 1756 83249 ], 83250 + "commit": "471f21f0f8bffc078d5ccfd86610a83e5269c2a0", 83251 + "sha256": "1w8xc4g2fgg9l0yibqc0190afgk71z697ni4yx1v1z1vy46s76c4" 83252 }, 83253 "stable": { 83254 "version": [ ··· 83529 "deps": [ 83530 "compat" 83531 ], 83532 + "commit": "ff862866a2c5eb7b20aa96a97fa982e2db1b6640", 83533 + "sha256": "0wjrf1b5hjrgxgwqz1701xr6hhlmbnnr79f99162py49clljd5mw" 83534 }, 83535 "stable": { 83536 "version": [ ··· 84039 "repo": "kaushalmodi/ox-hugo", 84040 "unstable": { 84041 "version": [ 84042 + 20220512, 84043 + 1805 84044 ], 84045 "deps": [ 84046 "tomelr" 84047 ], 84048 + "commit": "cab606a2098524ea7ac97704cc8df6d2d9d190f8", 84049 + "sha256": "13gfchjdhalijbf5d4xmz1zvl904syl4lm07ssrqck4h66y4nr9y" 84050 }, 84051 "stable": { 84052 "version": [ ··· 84876 "repo": "melpa/package-build", 84877 "unstable": { 84878 "version": [ 84879 + 20220510, 84880 + 2024 84881 ], 84882 + "commit": "899bb08963c21028a02894426a9d86f768fe06d8", 84883 + "sha256": "1zw68gg8ai5921kly35fnxapnxqzdqx8ll7w8bdxpv8f06vq24xj" 84884 }, 84885 "stable": { 84886 "version": [ 84887 + 3, 84888 + 0 84889 ], 84890 "deps": [ 84891 "cl-lib" 84892 ], 84893 + "commit": "032e9bd086029b2fdff09c3c2e606e29682e1fb1", 84894 + "sha256": "0jjb1gl6qqkrvf4v03fp9sv69xc6qh3lc65blms46zkx64995c6r" 84895 } 84896 }, 84897 { ··· 85058 "deps": [ 85059 "compat" 85060 ], 85061 + "commit": "6a427d9da742d78a8f6bd6ed9e31fbf241b2ea82", 85062 + "sha256": "03ypbz7m6qq37v0d2c6pbg17dclmrdyqxfcl7rzl4xfzy89q688p" 85063 }, 85064 "stable": { 85065 "version": [ ··· 85446 20200510, 85447 5 85448 ], 85449 + "commit": "2f38f3583295e05c9ea491b7d1f6b4791169ba86", 85450 + "sha256": "0jyy8nl4r70l0dwc55lg75k7chcwb9zprl185x0122fjqgmnq1ri" 85451 } 85452 }, 85453 { ··· 85634 "deps": [ 85635 "compat" 85636 ], 85637 + "commit": "2c5de87c494ccfbe92c3f1da45f1720d7ecf4acf", 85638 + "sha256": "0pgwdd6406nldsgbazpr4qmg31k0n60hk6b73p74iimjs3l27ri3" 85639 }, 85640 "stable": { 85641 "version": [ ··· 85848 "repo": "clojure-emacs/parseedn", 85849 "unstable": { 85850 "version": [ 85851 + 20220512, 85852 + 1328 85853 ], 85854 "deps": [ 85855 "map", 85856 "parseclj" 85857 ], 85858 + "commit": "35e9f3173a6cca60b6851dddace470b29654ac77", 85859 + "sha256": "06in2r87rn398bnqfc7bmpfvfbvrx9ybqs8r5yzy5y84f9gbfnm4" 85860 }, 85861 "stable": { 85862 "version": [ ··· 86344 "repo": "JonWaltman/pcmpl-args.el", 86345 "unstable": { 86346 "version": [ 86347 + 20220510, 86348 + 2056 86349 ], 86350 + "commit": "43229e1096f89c277190f09a3d794781f8fa0015", 86351 + "sha256": "0p2mpifr3ycy4ibr9y1r5lvq91dbw6vvi8g6n3jx1mqnxnh9ld63" 86352 }, 86353 "stable": { 86354 "version": [ ··· 86530 "repo": "vedang/pdf-tools", 86531 "unstable": { 86532 "version": [ 86533 + 20220512, 86534 + 145 86535 ], 86536 "deps": [ 86537 "let-alist", 86538 "nadvice", 86539 "tablist" 86540 ], 86541 + "commit": "fedd930a09a497c03df3ce5204ccbd80da724662", 86542 + "sha256": "13yl83ld5z1asjqrsfdzyhnz4nrrr064lwbsgfvk3mmlqpas7b08" 86543 }, 86544 "stable": { 86545 "version": [ ··· 87392 "repo": "OVYA/php-cs-fixer", 87393 "unstable": { 87394 "version": [ 87395 + 20220510, 87396 + 1407 87397 ], 87398 "deps": [ 87399 "cl-lib" 87400 ], 87401 + "commit": "225ca7127052e2b3d660495d04319e817ec302ab", 87402 + "sha256": "1zwl6hpw0ka4pdsk9i67dbv42idb0nhi5i3yajy1wzdihj7hqg3y" 87403 }, 87404 "stable": { 87405 "version": [ 87406 1, 87407 0, 87408 + 2 87409 ], 87410 "deps": [ 87411 "cl-lib" 87412 ], 87413 + "commit": "ac2d64c4b672a01744d14cc8ad80e9c9ff55c63c", 87414 + "sha256": "1jyjqwv4haibv526bwpvyyszs7ga9lmsjhn47hyk3ddffrr84c0y" 87415 } 87416 }, 87417 { ··· 89515 20211231, 89516 1823 89517 ], 89518 + "commit": "114d646f0f4dd49de19dfedd78630018f71470e5", 89519 + "sha256": "1hgia0d2j81mlkcl8bilznn4044qjjpy00cdd96zs7p2lbvaz3sb" 89520 }, 89521 "stable": { 89522 "version": [ ··· 90075 }, 90076 { 90077 "ename": "prescient", 90078 + "commit": "118ec831528f718f0dc4bc331a708ecb4a0eefd5", 90079 + "sha256": "04anqfn48ibmg11s8gp3i8wyghy724hg1qzbw44jfndmv6nibifz", 90080 "fetcher": "github", 90081 + "repo": "radian-software/prescient.el", 90082 "unstable": { 90083 "version": [ 90084 + 20220509, 90085 + 2300 90086 ], 90087 + "commit": "c05f8a43c6ff07a8b5a3ba8df7a2ec35677b7484", 90088 + "sha256": "0752dyl4fhi0jvbm238s5p1sv7z4jlkmkdrxvwn0dlhfr0rhfw1c" 90089 }, 90090 "stable": { 90091 "version": [ ··· 90795 "repo": "buzztaiki/project-rootfile.el", 90796 "unstable": { 90797 "version": [ 90798 + 20220512, 90799 + 443 90800 ], 90801 + "commit": "cb87657c4426e39aa2c481190e594c68fb0de8be", 90802 + "sha256": "07gb9b72gkwz748xwnsjayn68x5qn8b0ka8wmwvqgwgak14f1da3" 90803 } 90804 }, 90805 { ··· 91252 20220329, 91253 655 91254 ], 91255 + "commit": "2a8701209b273db5a35f15145ec62f32799e03b1", 91256 + "sha256": "05l65cwyw2pdyv6rn14h0axplgnlm5z7v90iwcxk9vysz74icdd7" 91257 } 91258 }, 91259 { ··· 91348 20220303, 91349 1716 91350 ], 91351 + "commit": "b3cbea18ea02ab82379ba5d014899035aad4b8f4", 91352 + "sha256": "0x60jy244xm1gkqvsidyj8xfqdfwpn0q8knr28n4giycwlzncgyr" 91353 }, 91354 "stable": { 91355 "version": [ 91356 + 21, 91357 + 0, 91358 + -1, 91359 1 91360 ], 91361 + "commit": "3cede25cef0c2f5f5b60461b608d8c07a621ac04", 91362 + "sha256": "0q024rd5y8kd9pjslh118vhl3awr95gfvc6zxxr6i4qwqq1jy5nj" 91363 } 91364 }, 91365 { ··· 92255 "repo": "tumashu/pyim", 92256 "unstable": { 92257 "version": [ 92258 + 20220512, 92259 + 930 92260 ], 92261 "deps": [ 92262 "async", 92263 "xr" 92264 ], 92265 + "commit": "dcdae4db85646de85b1ca75e4604691cf9273273", 92266 + "sha256": "1432ph59plnh41xrmq59n9z987r41xf34qsxl3sbzfw6v8m927ys" 92267 }, 92268 "stable": { 92269 "version": [ ··· 92441 20210411, 92442 1931 92443 ], 92444 + "commit": "2ea65b12176e575748db64d740ef834cba577d70", 92445 + "sha256": "18fv0kibj3rj8aydyxzda4mk7qi19hg82q3rm2mdi85082628wmy" 92446 }, 92447 "stable": { 92448 "version": [ ··· 92789 "repo": "python-mode-devs/python-mode", 92790 "unstable": { 92791 "version": [ 92792 + 20220512, 92793 + 1206 92794 ], 92795 + "commit": "97bb2d5ca50bec43a22ffc6187d13e3afb38238f", 92796 + "sha256": "02i5mqx3ip6k9n09yzr395ayhf4i1l7n8sk9q0ibcm2zadxnlqc7" 92797 }, 92798 "stable": { 92799 "version": [ ··· 93173 "leaf", 93174 "quelpa" 93175 ], 93176 + "commit": "ea60d14a6c8dbe65ad0b3353185945d43ae4393d", 93177 + "sha256": "0xddhjal99q3s537kcdrcimykmzca73ic3v2abv2ymwby2wm52b9" 93178 }, 93179 "stable": { 93180 "version": [ ··· 93471 "repo": "greghendershott/racket-mode", 93472 "unstable": { 93473 "version": [ 93474 + 20220512, 93475 + 1447 93476 ], 93477 + "commit": "3b351fbb0d3e81bf260cb3fc7b623f1b782550cc", 93478 + "sha256": "0gcyb47ld10jvrf3wm63njz0d9y70fi8dwsx14pbdcrw2xs2p4s3" 93479 } 93480 }, 93481 { ··· 95898 "url": "https://codeberg.org/ideasman42/emacs-revert-buffer-all.git", 95899 "unstable": { 95900 "version": [ 95901 + 20220509, 95902 + 1045 95903 ], 95904 + "commit": "91d0f4f7a0c0c3015887f4ed808537ebebd6385e", 95905 + "sha256": "1sja06pzvx1hds786q4a071zl8r8034is3l8s8zp5k4kxd6vg760" 95906 } 95907 }, 95908 { ··· 95970 "repo": "dajva/rg.el", 95971 "unstable": { 95972 "version": [ 95973 + 20220511, 95974 + 1328 95975 ], 95976 "deps": [ 95977 "transient", 95978 "wgrep" 95979 ], 95980 + "commit": "c46c5167ac03f68fd6fee07972017282c62bc942", 95981 + "sha256": "1pkbkh260k2r7x158b691ppqvxxzqkyylbapwlrxzc2ly23rmaxs" 95982 }, 95983 "stable": { 95984 "version": [ ··· 96374 "repo": "jgkamat/rmsbolt", 96375 "unstable": { 96376 "version": [ 96377 + 20220510, 96378 + 1621 96379 ], 96380 + "commit": "3fe322e5739e57cceea37c4104ac7bc5231555c3", 96381 + "sha256": "1nc7hh3psw548mzzbcz7226i7pbyrdadmlrw955cl91z51rahxah" 96382 } 96383 }, 96384 { ··· 97279 "repo": "brotzeit/rustic", 97280 "unstable": { 97281 "version": [ 97282 + 20220509, 97283 + 716 97284 ], 97285 "deps": [ 97286 "dash", ··· 97294 "spinner", 97295 "xterm-color" 97296 ], 97297 + "commit": "3b379fc25b7a097a014147d9c8b83ec1a418cd76", 97298 + "sha256": "129mclfyy6nji7c3avni4y3kzi3z67dv3cv40jmlv1m4isxf59n1" 97299 }, 97300 "stable": { 97301 "version": [ ··· 97804 20200830, 97805 301 97806 ], 97807 + "commit": "b929e705e76e8ff47d170c5e9849f86002f3e09f", 97808 + "sha256": "1iflrjldvabilvji1zmx1rmkl6z16s50k3hldn3l871gz16wa0h6" 97809 } 97810 }, 97811 { ··· 97896 "request", 97897 "s" 97898 ], 97899 + "commit": "cd0b42e5026426af2bfad57b692760bcb5d05dbb", 97900 + "sha256": "1kda2yrpm2c8c8p9lg183hf8limc4b2ay5gdssfhc7r29nvvagpv" 97901 } 97902 }, 97903 { ··· 98177 "url": "https://codeberg.org/ideasman42/emacs-scroll-on-drag.git", 98178 "unstable": { 98179 "version": [ 98180 + 20220510, 98181 + 1204 98182 ], 98183 + "commit": "01c14f4c024548ed1f644263faa0786c10afc978", 98184 + "sha256": "09fifi2gsjk47aif3j0vysfgpshh7az3zlyiblpw5zqnmq3xl1a1" 98185 } 98186 }, 98187 { ··· 98192 "url": "https://codeberg.org/ideasman42/emacs-scroll-on-jump.git", 98193 "unstable": { 98194 "version": [ 98195 + 20220509, 98196 + 1046 98197 ], 98198 + "commit": "8fde237ae6d6a54730445b399513bc6d31d7daba", 98199 + "sha256": "0fbqmwz519bqdafjygpbk5zj08m3z3rm62sd2071qsxqrf70z72v" 98200 } 98201 }, 98202 { ··· 98293 "repo": "t-e-r-m/sculpture-themes", 98294 "unstable": { 98295 "version": [ 98296 + 20220512, 98297 + 2235 98298 ], 98299 + "commit": "be3adaf9db276e899b44e5093316cae2014b22c9", 98300 + "sha256": "0wn066zc72djac8ccss95ydi69ggngknkjh2hg0hi17g3m2pj6f6" 98301 }, 98302 "stable": { 98303 "version": [ ··· 98582 "repo": "Kungsgeten/selected.el", 98583 "unstable": { 98584 "version": [ 98585 + 20220509, 98586 + 1810 98587 ], 98588 + "commit": "81cb32521a05ff2a9125e001b83608e108e480f6", 98589 + "sha256": "0zk5fnjw5czq71z3qgi7kl9r5y3cw5mx1hswyhli7xhxzjpldxp4" 98590 } 98591 }, 98592 { ··· 98638 }, 98639 { 98640 "ename": "selectrum-prescient", 98641 + "commit": "118ec831528f718f0dc4bc331a708ecb4a0eefd5", 98642 + "sha256": "0wwcjqqprz0yikc3cyg6n503dk6rrx8xbw5xjqvydq0204mvw1y9", 98643 "fetcher": "github", 98644 + "repo": "radian-software/prescient.el", 98645 "unstable": { 98646 "version": [ 98647 + 20220509, 98648 + 2300 98649 ], 98650 "deps": [ 98651 "prescient", 98652 "selectrum" 98653 ], 98654 + "commit": "c05f8a43c6ff07a8b5a3ba8df7a2ec35677b7484", 98655 + "sha256": "0752dyl4fhi0jvbm238s5p1sv7z4jlkmkdrxvwn0dlhfr0rhfw1c" 98656 }, 98657 "stable": { 98658 "version": [ ··· 99362 "repo": "qhga/shanty-themes", 99363 "unstable": { 99364 "version": [ 99365 + 20220509, 99366 + 1656 99367 ], 99368 + "commit": "14a0e9de08aa6412931b121ae97b700e10ccaa80", 99369 + "sha256": "188h918n55mhw3jss10nsdc2m04ngdy1mbh7kfh6hhc9d36ydj7y" 99370 } 99371 }, 99372 { ··· 99392 "repo": "sebasmonia/sharper", 99393 "unstable": { 99394 "version": [ 99395 + 20220510, 99396 + 2001 99397 ], 99398 "deps": [ 99399 "transient" 99400 ], 99401 + "commit": "8020a5da0327f9a18b4bdab474bf8d81c1b38ea7", 99402 + "sha256": "0nby923h8hprxqyx48592q5584p8rmq3zvi12g2fbglabff76bmp" 99403 } 99404 }, 99405 { ··· 99770 20220426, 99771 715 99772 ], 99773 + "commit": "7baf17355289c29d18f993f383c5d6a187f33b35", 99774 + "sha256": "1a2m6jkvnv852q07wvi80nbm7437wnvdfdyiq4iffhffmz8c2mrr" 99775 } 99776 }, 99777 { ··· 100112 "repo": "riscy/shx-for-emacs", 100113 "unstable": { 100114 "version": [ 100115 + 20220424, 100116 + 2124 100117 ], 100118 + "commit": "15bbc0f89a4927792e2e791378de827ab698ed69", 100119 + "sha256": "1llsf65yz2rzj0dyvqjirb5z3cxdr7251iaffbx9sl761nsg2nk9" 100120 }, 100121 "stable": { 100122 "version": [ ··· 100220 "url": "https://codeberg.org/ideasman42/emacs-sidecar-locals.git", 100221 "unstable": { 100222 "version": [ 100223 + 20220510, 100224 + 413 100225 ], 100226 + "commit": "7fd5daec1e0a7a091b343948bbb5c77e73724776", 100227 + "sha256": "1mbfvq1xbplk33363yqshqq7zmvqra73i0i126dcnzpd95pwqsqm" 100228 } 100229 }, 100230 { ··· 100633 "repo": "laishulu/emacs-smart-input-source", 100634 "unstable": { 100635 "version": [ 100636 + 20220511, 100637 + 1734 100638 ], 100639 "deps": [ 100640 "terminal-focus-reporting" 100641 ], 100642 + "commit": "0eeb75db3eb031bde3e5820ee39a2b7549dc5d8b", 100643 + "sha256": "06ky6358cc00z18srp6wcid9f0pjy1kwlvvmfznhsfqkjr6pshzp" 100644 } 100645 }, 100646 { ··· 100658 "compat", 100659 "magit" 100660 ], 100661 + "commit": "9626d9d26dc9f3cc57d41fa119a74e0cb1c4aab9", 100662 + "sha256": "0npyysnddfbm1dgidqn63jrgl9clx55in1cp1krz03zrif3injis" 100663 } 100664 }, 100665 { ··· 100945 "repo": "slime/slime", 100946 "unstable": { 100947 "version": [ 100948 + 20220510, 100949 + 2050 100950 ], 100951 "deps": [ 100952 "cl-lib", 100953 "macrostep" 100954 ], 100955 + "commit": "c5342a3086367c371e8d88b3140e6db070365d43", 100956 + "sha256": "008qav1p8angqczv8l1yd2ics0pyp69x93s8xvapcrxvhv8ishgn" 100957 }, 100958 "stable": { 100959 "version": [ ··· 101683 "repo": "Fuco1/smartparens", 101684 "unstable": { 101685 "version": [ 101686 + 20220510, 101687 + 934 101688 ], 101689 "deps": [ 101690 "cl-lib", 101691 "dash" 101692 ], 101693 + "commit": "ec15aaa748b21c9b8453dd95604ccc95fc1138cf", 101694 + "sha256": "0cza0wnk3fyyh13srczf2976xwhyfmq2v9m7q6k2lyn7jyfvfxiq" 101695 }, 101696 "stable": { 101697 "version": [ ··· 103111 "repo": "condy0919/spdx.el", 103112 "unstable": { 103113 "version": [ 103114 + 20220511, 103115 + 143 103116 ], 103117 + "commit": "701e7c49c38babaa2b2071febd2b112fef600683", 103118 + "sha256": "1wkqrlwh9n827x49m71j5ilkgk9xn6smxi11cfbd35hbdkdf5gyn" 103119 } 103120 }, 103121 { ··· 104291 20200606, 104292 1308 104293 ], 104294 + "commit": "9ce680a52bd90ce9bac568a6a182b1b3c00577e5", 104295 + "sha256": "0ab9ri7bdhq0w0hn7ady3xf5rvsvni3j1l9lr6y3nqf6kfrbhzhf" 104296 }, 104297 "stable": { 104298 "version": [ ··· 104341 "repo": "motform/stimmung-themes", 104342 "unstable": { 104343 "version": [ 104344 + 20220511, 104345 + 1245 104346 ], 104347 + "commit": "d34e83d6a00c248c7ce9ab34425773c30910f634", 104348 + "sha256": "0vfwa5iw6ac7yijqzridn07ybl295s2kxfc45ld9sp62gj4qxs95" 104349 } 104350 }, 104351 { ··· 106858 "repo": "minad/tempel", 106859 "unstable": { 106860 "version": [ 106861 + 20220509, 106862 + 2139 106863 ], 106864 + "commit": "b88c58a89390cf3834de898109c5e69a5cf434cd", 106865 + "sha256": "0mk2ghqvg4raja1hg5hwg6774blba56sg2bmfh8xma4slg5n8js5" 106866 }, 106867 "stable": { 106868 "version": [ ··· 107217 "repo": "davidshepherd7/terminal-here", 107218 "unstable": { 107219 "version": [ 107220 + 20220510, 107221 + 806 107222 ], 107223 + "commit": "24cb30dea30195108f85aceea28f086a84d47e5e", 107224 + "sha256": "0cqj8g1pbq24d6zgsd0dq85sam2sl7w2y29ksnv4a93krjw1i2hr" 107225 }, 107226 "stable": { 107227 "version": [ ··· 107904 20200212, 107905 1903 107906 ], 107907 + "commit": "200776bcf1296360707c5b8a3f18d2b8817da888", 107908 + "sha256": "0s1pzpcx6g12hnn48gfyfp9wai5yk6rnsjzn82661rdmhjwm2z64" 107909 }, 107910 "stable": { 107911 "version": [ 107912 2022, 107913 5, 107914 + 9, 107915 0 107916 ], 107917 + "commit": "321b08352d043708869d5c15f961610392afca16", 107918 + "sha256": "0pynyavfwwylqibj4az58a3q45di540d0j6dwdwywihn470cinvz" 107919 } 107920 }, 107921 { ··· 108255 0 108256 ], 108257 "commit": "9e1a12a494537472fb1f9f9f23dc38b8bca1f9af", 108258 + "sha256": "0bndwcpz2alzimlmkcpcdxsl5xvckks22xmqn78rkg9pscl10gjq" 108259 } 108260 }, 108261 { ··· 108347 "repo": "duckwork/titlecase.el", 108348 "unstable": { 108349 "version": [ 108350 + 20220510, 108351 + 331 108352 ], 108353 + "commit": "8f609e46d4d0c06cd442352ca7d296e2ccb1b62a", 108354 + "sha256": "12ghq6zcv3ldcfr9c0zhlrq8kscf7fz2irpil7zq926alcqiqxkl" 108355 }, 108356 "stable": { 108357 "version": [ ··· 108605 "repo": "topikettunen/tok-theme", 108606 "unstable": { 108607 "version": [ 108608 + 20220509, 108609 + 1324 108610 ], 108611 + "commit": "a1a224d96665ee14c059eed63dc4b458f6b7a8d8", 108612 + "sha256": "0amcvd7x1llfjk2a78rkgia6n7vmrpqnh4xq28aczsi1z6khnkvz" 108613 } 108614 }, 108615 { ··· 108739 "repo": "trevorpogue/topspace", 108740 "unstable": { 108741 "version": [ 108742 + 20220512, 108743 + 2008 108744 ], 108745 + "commit": "86127bf20f241a3c421b13523f0de6590fe42055", 108746 + "sha256": "1ahi1kgfis3khbgr3ps9ms71nc4b10aydd97q9mpm6h5rxvl2iv8" 108747 }, 108748 "stable": { 108749 "version": [ ··· 109119 "repo": "magit/transient", 109120 "unstable": { 109121 "version": [ 109122 + 20220509, 109123 + 1943 109124 ], 109125 "deps": [ 109126 "compat" 109127 ], 109128 + "commit": "6fc09a663e408ade0d1b88f47701c96a9b051e34", 109129 + "sha256": "0xihkzz94s84xkl60hi388lhcdiwnlyq2mpnnqn0vf54amjfdh7x" 109130 }, 109131 "stable": { 109132 "version": [ ··· 109183 "repo": "rayw000/translate-mode", 109184 "unstable": { 109185 "version": [ 109186 + 20220511, 109187 + 1357 109188 ], 109189 + "commit": "e1940b333241a4d0c224b7b875962736ca2b693b", 109190 + "sha256": "18s400rrpqji5dmn453f6cnk69cyskbmzsnkbxmss2wrqazp3l3c" 109191 }, 109192 "stable": { 109193 "version": [ ··· 109367 "compat", 109368 "transient" 109369 ], 109370 + "commit": "1292530acd05956a2f1bd19c94ef6ab59f05ad8a", 109371 + "sha256": "1vnv7npzwx3bbkd1c3dql98ggrkwr3dfvcx6jrnm15s041y9sjfz" 109372 }, 109373 "stable": { 109374 "version": [ ··· 109556 "repo": "Alexander-Miller/treemacs", 109557 "unstable": { 109558 "version": [ 109559 + 20220511, 109560 + 1852 109561 ], 109562 "deps": [ 109563 "ace-window", ··· 109569 "pfuture", 109570 "s" 109571 ], 109572 + "commit": "dca83bd42918b510173759df4cc8b3663d5d480d", 109573 + "sha256": "1cxz5kx9qiv0imlzsbwjkydks2xfrcdchcnia2hyxhjpldff5vnq" 109574 }, 109575 "stable": { 109576 "version": [ ··· 109606 "all-the-icons", 109607 "treemacs" 109608 ], 109609 + "commit": "dca83bd42918b510173759df4cc8b3663d5d480d", 109610 + "sha256": "1cxz5kx9qiv0imlzsbwjkydks2xfrcdchcnia2hyxhjpldff5vnq" 109611 }, 109612 "stable": { 109613 "version": [ ··· 109630 "repo": "Alexander-Miller/treemacs", 109631 "unstable": { 109632 "version": [ 109633 + 20220511, 109634 + 1852 109635 ], 109636 "deps": [ 109637 "evil", 109638 "treemacs" 109639 ], 109640 + "commit": "dca83bd42918b510173759df4cc8b3663d5d480d", 109641 + "sha256": "1cxz5kx9qiv0imlzsbwjkydks2xfrcdchcnia2hyxhjpldff5vnq" 109642 }, 109643 "stable": { 109644 "version": [ ··· 109667 "deps": [ 109668 "treemacs" 109669 ], 109670 + "commit": "dca83bd42918b510173759df4cc8b3663d5d480d", 109671 + "sha256": "1cxz5kx9qiv0imlzsbwjkydks2xfrcdchcnia2hyxhjpldff5vnq" 109672 }, 109673 "stable": { 109674 "version": [ ··· 109698 "pfuture", 109699 "treemacs" 109700 ], 109701 + "commit": "dca83bd42918b510173759df4cc8b3663d5d480d", 109702 + "sha256": "1cxz5kx9qiv0imlzsbwjkydks2xfrcdchcnia2hyxhjpldff5vnq" 109703 }, 109704 "stable": { 109705 "version": [ ··· 109731 "persp-mode", 109732 "treemacs" 109733 ], 109734 + "commit": "dca83bd42918b510173759df4cc8b3663d5d480d", 109735 + "sha256": "1cxz5kx9qiv0imlzsbwjkydks2xfrcdchcnia2hyxhjpldff5vnq" 109736 }, 109737 "stable": { 109738 "version": [ ··· 109764 "perspective", 109765 "treemacs" 109766 ], 109767 + "commit": "dca83bd42918b510173759df4cc8b3663d5d480d", 109768 + "sha256": "1cxz5kx9qiv0imlzsbwjkydks2xfrcdchcnia2hyxhjpldff5vnq" 109769 }, 109770 "stable": { 109771 "version": [ ··· 109796 "projectile", 109797 "treemacs" 109798 ], 109799 + "commit": "dca83bd42918b510173759df4cc8b3663d5d480d", 109800 + "sha256": "1cxz5kx9qiv0imlzsbwjkydks2xfrcdchcnia2hyxhjpldff5vnq" 109801 }, 109802 "stable": { 109803 "version": [ ··· 109827 "dash", 109828 "treemacs" 109829 ], 109830 + "commit": "dca83bd42918b510173759df4cc8b3663d5d480d", 109831 + "sha256": "1cxz5kx9qiv0imlzsbwjkydks2xfrcdchcnia2hyxhjpldff5vnq" 109832 }, 109833 "stable": { 109834 "version": [ ··· 110896 "url": "https://codeberg.org/ideasman42/emacs-undo-fu.git", 110897 "unstable": { 110898 "version": [ 110899 + 20220509, 110900 + 1045 110901 ], 110902 + "commit": "97e7f4f6e0754fd1b01db9638b3f534b5b4941c2", 110903 + "sha256": "0gx4cm6qdl06y9vrwy5wj3zn618zf3w0b8qpdnns3q4xc7qz3b6g" 110904 } 110905 }, 110906 { ··· 110911 "url": "https://codeberg.org/ideasman42/emacs-undo-fu-session.git", 110912 "unstable": { 110913 "version": [ 110914 + 20220509, 110915 + 1044 110916 ], 110917 + "commit": "52c71b1cee2fe944e0013a2823e6fde10b26bc65", 110918 + "sha256": "0ijw245wg9rxhz419hjw62jsgpwjy9r26z9jbd018r7f4qa5gh3s" 110919 } 110920 }, 110921 { ··· 113302 20220414, 113303 930 113304 ], 113305 + "commit": "2801a2354d93920dcd12da3d1090954aec9f7402", 113306 + "sha256": "1w4fkb7yp8cmpyxqyghiz4rqkzajjh1nqf5wjnxhvjv0av1lddhn" 113307 }, 113308 "stable": { 113309 "version": [ ··· 113325 20220414, 113326 931 113327 ], 113328 + "commit": "73e8431576e5b65c227dcf37c7d1a5c609221ac9", 113329 + "sha256": "0fxwcxdr7ssj7v5bsx42zinas6fp3iigdh98j1mqm54xm61a58jc" 113330 }, 113331 "stable": { 113332 "version": [ ··· 113655 "repo": "emacs-w3m/emacs-w3m", 113656 "unstable": { 113657 "version": [ 113658 + 20220508, 113659 + 2259 113660 ], 113661 + "commit": "7baf17355289c29d18f993f383c5d6a187f33b35", 113662 + "sha256": "1a2m6jkvnv852q07wvi80nbm7437wnvdfdyiq4iffhffmz8c2mrr" 113663 } 113664 }, 113665 { ··· 114941 "url": "https://codeberg.org/akib/emacs-why-this.git", 114942 "unstable": { 114943 "version": [ 114944 + 20220510, 114945 + 1146 114946 ], 114947 + "commit": "71baf80f9ae7c1117f3b1bf531e23e43bf567424", 114948 + "sha256": "1cwasg2dyy86c3hh71xqqsl7wy5c6mf9mnaf251l5fa5895xhbff" 114949 } 114950 }, 114951 { ··· 115483 "deps": [ 115484 "compat" 115485 ], 115486 + "commit": "4ab8c6148bb2698ff793d4a8acdbd8d0d642e133", 115487 + "sha256": "1mc0ayfhxl8jpdgw2p6prdi4m3ab3hh7hv0p0kyxmlc9m6f3ablc" 115488 }, 115489 "stable": { 115490 "version": [ ··· 116008 "repo": "bnbeckwith/writegood-mode", 116009 "unstable": { 116010 "version": [ 116011 + 20220511, 116012 + 2109 116013 ], 116014 + "commit": "d54eadeedb8bf3aa0e0a584c0a7373c69644f4b8", 116015 + "sha256": "1a3gmaaa344kigr209b6wnjiw9ikkmw1j5jda04h3g8f9817njyv" 116016 }, 116017 "stable": { 116018 "version": [ 116019 2, 116020 + 2, 116021 + 0 116022 ], 116023 + "commit": "d54eadeedb8bf3aa0e0a584c0a7373c69644f4b8", 116024 + "sha256": "1a3gmaaa344kigr209b6wnjiw9ikkmw1j5jda04h3g8f9817njyv" 116025 } 116026 }, 116027 { ··· 116165 20210614, 116166 1527 116167 ], 116168 + "commit": "cf29c6ae6f8d92f012feecec1dccb23b7e93c86f", 116169 + "sha256": "1nhmndzy936jkgdp30lvnv45y7ixv0hsmxdbibn0lwy8xpd51q7s" 116170 } 116171 }, 116172 { ··· 118157 "repo": "localauthor/zk", 118158 "unstable": { 118159 "version": [ 118160 + 20220509, 118161 + 2156 118162 ], 118163 + "commit": "9a3ed5e743c38725e7d9a7e4eaecfe624654c68d", 118164 + "sha256": "1az7n1f0203kk7x50ljjz3dcirkbk0zxzc54b3xxv64sd806vfw6" 118165 + }, 118166 + "stable": { 118167 + "version": [ 118168 + 0, 118169 + 4 118170 + ], 118171 + "commit": "9a3ed5e743c38725e7d9a7e4eaecfe624654c68d", 118172 + "sha256": "1az7n1f0203kk7x50ljjz3dcirkbk0zxzc54b3xxv64sd806vfw6" 118173 } 118174 }, 118175 { ··· 118180 "repo": "localauthor/zk", 118181 "unstable": { 118182 "version": [ 118183 + 20220509, 118184 + 802 118185 + ], 118186 + "deps": [ 118187 + "zk" 118188 + ], 118189 + "commit": "9a3ed5e743c38725e7d9a7e4eaecfe624654c68d", 118190 + "sha256": "1az7n1f0203kk7x50ljjz3dcirkbk0zxzc54b3xxv64sd806vfw6" 118191 + }, 118192 + "stable": { 118193 + "version": [ 118194 + 0, 118195 + 4 118196 ], 118197 "deps": [ 118198 "zk" 118199 ], 118200 + "commit": "9a3ed5e743c38725e7d9a7e4eaecfe624654c68d", 118201 + "sha256": "1az7n1f0203kk7x50ljjz3dcirkbk0zxzc54b3xxv64sd806vfw6" 118202 } 118203 }, 118204 { ··· 118224 "repo": "nnicandro/emacs-zmq", 118225 "unstable": { 118226 "version": [ 118227 + 20220510, 118228 + 1820 118229 ], 118230 "deps": [ 118231 "cl-lib" 118232 ], 118233 + "commit": "af5299d80715b1083a18145e9c84ef9563020676", 118234 + "sha256": "1jn1jkkl0pg2psncrf0rx9csp95pg9wm1pcmy1cb3kbqla9x27p4" 118235 }, 118236 "stable": { 118237 "version": [
+1 -1
pkgs/applications/misc/fspy/default.nix
··· 12 inherit pname version src; 13 14 extraInstallCommands = '' 15 - mv $out/bin/${pname}-v${version} $out/bin/${pname} 16 ''; 17 18 meta = with lib; {
··· 12 inherit pname version src; 13 14 extraInstallCommands = '' 15 + mv $out/bin/${pname}-${version} $out/bin/${pname} 16 ''; 17 18 meta = with lib; {
+4 -9
pkgs/applications/science/logic/coq/default.nix
··· 70 { case = range "8.7" "8.10"; out = ocamlPackages_4_09; } 71 { case = range "8.5" "8.6"; out = ocamlPackages_4_05; } 72 ] ocamlPackages_4_12; 73 - ocamlNativeBuildInputs = [ ocamlPackages.ocaml ] 74 ++ optional (coqAtLeast "8.14") ocamlPackages.dune_2; 75 - ocamlPropagatedNativeBuildInputs = [ ocamlPackages.findlib ]; 76 - ocamlPropagatedBuildInputs = [ ] 77 ++ optional (!coqAtLeast "8.10") ocamlPackages.camlp5 78 ++ optional (!coqAtLeast "8.13") ocamlPackages.num 79 ++ optional (coqAtLeast "8.13") ocamlPackages.zarith; ··· 83 84 passthru = { 85 inherit coq-version; 86 - inherit ocamlPackages ocamlNativeNuildInputs; 87 - inherit ocamlPropagatedBuildInputs ocamlPropagatedNativeBuildInputs; 88 # For compatibility 89 inherit (ocamlPackages) ocaml camlp5 findlib num ; 90 emacsBufferSetup = pkgs: '' ··· 138 ++ optional buildIde copyDesktopItems 139 ++ optional (buildIde && coqAtLeast "8.10") wrapGAppsHook 140 ++ optional (!coqAtLeast "8.6") gnumake42; 141 - buildInputs = [ ncurses ] 142 ++ optionals buildIde 143 (if coqAtLeast "8.10" 144 then [ ocamlPackages.lablgtk3-sourceview3 glib gnome.adwaita-icon-theme ] 145 else [ ocamlPackages.lablgtk ]) 146 ; 147 - 148 - propagatedNativeBuildInputs = ocamlPropagatedNativeBuildInputs; 149 - propagatedBuildInputs = ocamlPropagatedBuildInputs; 150 151 postPatch = '' 152 UNAME=$(type -tp uname)
··· 70 { case = range "8.7" "8.10"; out = ocamlPackages_4_09; } 71 { case = range "8.5" "8.6"; out = ocamlPackages_4_05; } 72 ] ocamlPackages_4_12; 73 + ocamlNativeBuildInputs = [ ocamlPackages.ocaml ocamlPackages.findlib ] 74 ++ optional (coqAtLeast "8.14") ocamlPackages.dune_2; 75 + ocamlBuildInputs = [] 76 ++ optional (!coqAtLeast "8.10") ocamlPackages.camlp5 77 ++ optional (!coqAtLeast "8.13") ocamlPackages.num 78 ++ optional (coqAtLeast "8.13") ocamlPackages.zarith; ··· 82 83 passthru = { 84 inherit coq-version; 85 + inherit ocamlPackages ocamlBuildInputs ocamlNativeBuildInputs; 86 # For compatibility 87 inherit (ocamlPackages) ocaml camlp5 findlib num ; 88 emacsBufferSetup = pkgs: '' ··· 136 ++ optional buildIde copyDesktopItems 137 ++ optional (buildIde && coqAtLeast "8.10") wrapGAppsHook 138 ++ optional (!coqAtLeast "8.6") gnumake42; 139 + buildInputs = [ ncurses ] ++ ocamlBuildInputs 140 ++ optionals buildIde 141 (if coqAtLeast "8.10" 142 then [ ocamlPackages.lablgtk3-sourceview3 glib gnome.adwaita-icon-theme ] 143 else [ ocamlPackages.lablgtk ]) 144 ; 145 146 postPatch = '' 147 UNAME=$(type -tp uname)
+2
pkgs/applications/video/ogmtools/default.nix
··· 11 12 buildInputs = [ libogg libvorbis libdvdread ]; 13 14 meta = { 15 description = "Tools for modifying and inspecting OGG media streams"; 16 longDescription = ''
··· 11 12 buildInputs = [ libogg libvorbis libdvdread ]; 13 14 + NIX_CFLAGS_COMPILE = [ "-std=c++14" ]; 15 + 16 meta = { 17 description = "Tools for modifying and inspecting OGG media streams"; 18 longDescription = ''
+13 -26
pkgs/build-support/coq/default.nix
··· 1 - { lib, stdenv, coqPackages, coq, which, fetchzip }@args: 2 let lib = import ./extra-lib.nix {inherit (args) lib;}; in 3 with builtins; with lib; 4 let ··· 15 releaseRev ? (v: v), 16 displayVersion ? {}, 17 release ? {}, 18 - buildInputs ? [], 19 - nativeBuildInputs ? [], 20 extraBuildInputs ? [], 21 extraNativeBuildInputs ? [], 22 - overrideBuildInputs ? [], 23 - overrideNativeBuildInputs ? [], 24 namePrefix ? [ "coq" ], 25 enableParallelBuilding ? true, 26 extraInstallFlags ? [], ··· 39 args-to-remove = foldl (flip remove) ([ 40 "version" "fetcher" "repo" "owner" "domain" "releaseRev" 41 "displayVersion" "defaultVersion" "useMelquiondRemake" 42 - "release" 43 - "buildInputs" "nativeBuildInputs" 44 - "extraBuildInputs" "extraNativeBuildInputs" 45 - "overrideBuildInputs" "overrideNativeBuildInputs" 46 - "namePrefix" 47 "meta" "useDune2ifVersion" "useDune2" "opam-name" 48 "extraInstallFlags" "setCOQBIN" "mlPlugin" 49 "dropAttrs" "dropDerivationAttrs" "keepAttrs" ] ++ dropAttrs) keepAttrs; ··· 65 ] "") + optionalString (v == null) "-broken"; 66 append-version = p: n: p + display-pkg n "" coqPackages.${n}.version + "-"; 67 prefix-name = foldl append-version "" namePrefix; 68 useDune2 = args.useDune2 or (useDune2ifVersion fetched.version); 69 - coqlib-flags = switch coq.coq-version [ 70 - { case = v: versions.isLe "8.6" v && v != "dev" ; 71 - out = [ "COQLIB=$(out)/lib/coq/${coq.coq-version}/" ]; } 72 - ] [ "COQLIBINSTALL=$(out)/lib/coq/${coq.coq-version}/user-contrib" 73 - "COQPLUGININSTALL=$(OCAMLFIND_DESTDIR)" ]; 74 - docdir-flags = switch coq.coq-version [ 75 - { case = v: versions.isLe "8.6" v && v != "dev"; 76 - out = [ "DOCDIR=$(out)/share/coq/${coq.coq-version}/" ]; } 77 - ] [ "COQDOCINSTALL=$(out)/share/coq/${coq.coq-version}/user-contrib" ]; 78 in 79 80 stdenv.mkDerivation (removeAttrs ({ ··· 83 84 inherit (fetched) version src; 85 86 - nativeBuildInputs = args.overrideNativeBuildInputs 87 - or ([ which ] ++ optional useDune2 coq.ocamlPackages.dune_2 88 - ++ optional (useDune2 || mlPlugin) coq.ocaml 89 - ++ (args.nativeBuildInputs or []) ++ extraNativeBuildInputs); 90 - buildInputs = args.overrideBuildInputs 91 - or ([ coq ] ++ (args.buildInputs or []) ++ extraBuildInputs); 92 inherit enableParallelBuilding; 93 94 meta = ({ platforms = coq.meta.platforms; } // ··· 103 // (optionalAttrs setCOQBIN { COQBIN = "${coq}/bin/"; }) 104 // (optionalAttrs (!args?installPhase && !args?useMelquiondRemake) { 105 installFlags = 106 - [ "DESTDIR=$(out)" ] ++ coqlib-flags ++ docdir-flags ++ 107 extraInstallFlags; 108 }) 109 // (optionalAttrs useDune2 {
··· 1 + { lib, stdenv, coqPackages, coq, fetchzip }@args: 2 let lib = import ./extra-lib.nix {inherit (args) lib;}; in 3 with builtins; with lib; 4 let ··· 15 releaseRev ? (v: v), 16 displayVersion ? {}, 17 release ? {}, 18 extraBuildInputs ? [], 19 extraNativeBuildInputs ? [], 20 namePrefix ? [ "coq" ], 21 enableParallelBuilding ? true, 22 extraInstallFlags ? [], ··· 35 args-to-remove = foldl (flip remove) ([ 36 "version" "fetcher" "repo" "owner" "domain" "releaseRev" 37 "displayVersion" "defaultVersion" "useMelquiondRemake" 38 + "release" "extraBuildInputs" "extraNativeBuildInputs" "extraPropagatedBuildInputs" "namePrefix" 39 "meta" "useDune2ifVersion" "useDune2" "opam-name" 40 "extraInstallFlags" "setCOQBIN" "mlPlugin" 41 "dropAttrs" "dropDerivationAttrs" "keepAttrs" ] ++ dropAttrs) keepAttrs; ··· 57 ] "") + optionalString (v == null) "-broken"; 58 append-version = p: n: p + display-pkg n "" coqPackages.${n}.version + "-"; 59 prefix-name = foldl append-version "" namePrefix; 60 + var-coqlib-install = 61 + (optionalString (versions.isGe "8.7" coq.coq-version || coq.coq-version == "dev") "COQMF_") + "COQLIB"; 62 useDune2 = args.useDune2 or (useDune2ifVersion fetched.version); 63 in 64 65 stdenv.mkDerivation (removeAttrs ({ ··· 68 69 inherit (fetched) version src; 70 71 + nativeBuildInputs = [ coq ] 72 + ++ optionals useDune2 [coq.ocaml coq.ocamlPackages.dune_2] 73 + ++ optionals mlPlugin coq.ocamlNativeBuildInputs 74 + ++ extraNativeBuildInputs; 75 + buildInputs = optionals mlPlugin coq.ocamlBuildInputs 76 + ++ extraBuildInputs; 77 inherit enableParallelBuilding; 78 79 meta = ({ platforms = coq.meta.platforms; } // ··· 88 // (optionalAttrs setCOQBIN { COQBIN = "${coq}/bin/"; }) 89 // (optionalAttrs (!args?installPhase && !args?useMelquiondRemake) { 90 installFlags = 91 + [ "${var-coqlib-install}=$(out)/lib/coq/${coq.coq-version}/" ] ++ 92 + optional (match ".*doc$" (args.installTargets or "") != null) 93 + "DOCDIR=$(out)/share/coq/${coq.coq-version}/" ++ 94 extraInstallFlags; 95 }) 96 // (optionalAttrs useDune2 {
+1 -1
pkgs/development/coq-modules/CoLoR/default.nix
··· 20 release."1.4.0".rev = "168c6b86c7d3f87ee51791f795a8828b1521589a"; 21 release."1.4.0".sha256 = "1d2whsgs3kcg5wgampd6yaqagcpmzhgb6a0hp6qn4lbimck5dfmm"; 22 23 - propagatedBuildInputs = [ bignums ]; 24 enableParallelBuilding = false; 25 26 meta = {
··· 20 release."1.4.0".rev = "168c6b86c7d3f87ee51791f795a8828b1521589a"; 21 release."1.4.0".sha256 = "1d2whsgs3kcg5wgampd6yaqagcpmzhgb6a0hp6qn4lbimck5dfmm"; 22 23 + extraBuildInputs = [ bignums ]; 24 enableParallelBuilding = false; 25 26 meta = {
+1 -1
pkgs/development/coq-modules/HoTT/default.nix
··· 8 release."20170921".rev = "e3557740a699167e6adb1a65855509d55a392fa1"; 9 release."20170921".sha256 = "0zwfp8g62b50vmmbb2kmskj3v6w7qx1pbf43yw0hr7asdz2zbx5v"; 10 11 - nativeBuildInputs = [ autoconf automake ]; 12 13 preConfigure = '' 14 patchShebangs ./autogen.sh
··· 8 release."20170921".rev = "e3557740a699167e6adb1a65855509d55a392fa1"; 9 release."20170921".sha256 = "0zwfp8g62b50vmmbb2kmskj3v6w7qx1pbf43yw0hr7asdz2zbx5v"; 10 11 + extraBuildInputs = [ autoconf automake ]; 12 13 preConfigure = '' 14 patchShebangs ./autogen.sh
+2 -1
pkgs/development/coq-modules/QuickChick/default.nix
··· 36 "substituteInPlace Makefile --replace quickChickTool.byte quickChickTool.native"; 37 38 mlPlugin = true; 39 - nativeBuildInputs = lib.optional recent coq.ocamlPackages.ocamlbuild; 40 propagatedBuildInputs = [ ssreflect ] 41 ++ lib.optionals recent [ coq-ext-lib simple-io ]; 42 extraInstallFlags = [ "-f Makefile.coq" ];
··· 36 "substituteInPlace Makefile --replace quickChickTool.byte quickChickTool.native"; 37 38 mlPlugin = true; 39 + extraNativeBuildInputs = lib.optional recent coq.ocamlPackages.ocamlbuild; 40 + extraBuildInputs = lib.optional recent coq.ocamlPackages.num; 41 propagatedBuildInputs = [ ssreflect ] 42 ++ lib.optionals recent [ coq-ext-lib simple-io ]; 43 extraInstallFlags = [ "-f Makefile.coq" ];
+1 -1
pkgs/development/coq-modules/VST/default.nix
··· 31 release."2.9".sha256 = "sha256:1adwzbl1pprrrwrm7cm493098fizxanxpv7nyfbvwdhgbhcnv6qf"; 32 release."2.8".sha256 = "sha256-cyK88uzorRfjapNQ6XgQEmlbWnDsiyLve5po1VG52q0="; 33 releaseRev = v: "v${v}"; 34 - buildInputs = [ ITree ]; 35 propagatedBuildInputs = [ compcert ]; 36 37 preConfigure = ''
··· 31 release."2.9".sha256 = "sha256:1adwzbl1pprrrwrm7cm493098fizxanxpv7nyfbvwdhgbhcnv6qf"; 32 release."2.8".sha256 = "sha256-cyK88uzorRfjapNQ6XgQEmlbWnDsiyLve5po1VG52q0="; 33 releaseRev = v: "v${v}"; 34 + extraBuildInputs = [ ITree ]; 35 propagatedBuildInputs = [ compcert ]; 36 37 preConfigure = ''
+1 -1
pkgs/development/coq-modules/bignums/default.nix
··· 5 owner = "coq"; 6 displayVersion = { bignums = ""; }; 7 inherit version; 8 - defaultVersion = if versions.isGe "8.6" coq.coq-version 9 then "${coq.coq-version}.0" else null; 10 11 release."8.15.0".sha256 = "093klwlhclgyrba1iv18dyz1qp5f0lwiaa7y0qwvgmai8rll5fns";
··· 5 owner = "coq"; 6 displayVersion = { bignums = ""; }; 7 inherit version; 8 + defaultVersion = if versions.isGe "8.5" coq.coq-version 9 then "${coq.coq-version}.0" else null; 10 11 release."8.15.0".sha256 = "093klwlhclgyrba1iv18dyz1qp5f0lwiaa7y0qwvgmai8rll5fns";
+5 -10
pkgs/development/coq-modules/compcert/default.nix
··· 1 { lib, fetchzip, mkCoqDerivation, coq, flocq, compcert 2 - , fetchpatch, makeWrapper, coq2html 3 , stdenv, tools ? stdenv.cc 4 , version ? null 5 }: ··· 15 releaseRev = v: "v${v}"; 16 17 defaultVersion = with versions; switch coq.version [ 18 - { case = range "8.13" "8.15"; out = "3.10"; } 19 - { case = isEq "8.12" ; out = "3.9"; } 20 { case = range "8.8" "8.11"; out = "3.8"; } 21 ] null; 22 23 release = { ··· 26 "3.10".sha256 = "sha256:19rmx8r8v46101ij5myfrz60arqjy7q3ra3fb8mxqqi3c8c4l4j6"; 27 }; 28 29 - mlPlugin = true; 30 nativeBuildInputs = [ makeWrapper ]; 31 - buildInputs = with coq.ocamlPackages; [ menhir menhirLib ] ++ [ coq2html ]; 32 propagatedBuildInputs = [ flocq ]; 33 34 enableParallelBuilding = true; ··· 49 ''; 50 51 installTargets = "documentation install"; 52 - installFlags = []; # trust ./configure 53 - preInstall = '' 54 - mkdir -p $out/share/man 55 - mkdir -p $man/share 56 - ''; 57 postInstall = '' 58 # move man into place 59 mv $out/share/man/ $man/share/ 60 61 # move docs into place
··· 1 { lib, fetchzip, mkCoqDerivation, coq, flocq, compcert 2 + , ocamlPackages, fetchpatch, makeWrapper, coq2html 3 , stdenv, tools ? stdenv.cc 4 , version ? null 5 }: ··· 15 releaseRev = v: "v${v}"; 16 17 defaultVersion = with versions; switch coq.version [ 18 { case = range "8.8" "8.11"; out = "3.8"; } 19 + { case = isEq "8.12" ; out = "3.9"; } 20 + { case = range "8.12" "8.15"; out = "3.10"; } 21 ] null; 22 23 release = { ··· 26 "3.10".sha256 = "sha256:19rmx8r8v46101ij5myfrz60arqjy7q3ra3fb8mxqqi3c8c4l4j6"; 27 }; 28 29 nativeBuildInputs = [ makeWrapper ]; 30 + buildInputs = with ocamlPackages; [ ocaml findlib menhir menhirLib ] ++ [ coq coq2html ]; 31 propagatedBuildInputs = [ flocq ]; 32 33 enableParallelBuilding = true; ··· 48 ''; 49 50 installTargets = "documentation install"; 51 postInstall = '' 52 # move man into place 53 + mkdir -p $man/share 54 mv $out/share/man/ $man/share/ 55 56 # move docs into place
+24 -8
pkgs/development/coq-modules/coq-bits/default.nix
··· 1 - { lib, mkCoqDerivation, coq, mathcomp-algebra, version ? null }: 2 3 with lib; mkCoqDerivation { 4 pname = "coq-bits"; 5 repo = "bits"; 6 inherit version; 7 - defaultVersion = with versions; switch coq.coq-version [ 8 - { case = isGe "8.10"; out = "1.1.0"; } 9 - { case = isGe "8.7"; out = "1.0.0"; } 10 - ] null; 11 12 - release."1.1.0".sha256 = "sha256-TCw1kSXeW0ysIdLeNr+EGmpGumEE9i8tinEMp57UXaE="; 13 - release."1.0.0".sha256 = "0nv5mdgrd075dpd8bc7h0xc5i95v0pkm0bfyq5rj6ii1s54dwcjl"; 14 15 - propagatedBuildInputs = [ mathcomp-algebra ]; 16 17 meta = { 18 description = "A formalization of bitset operations in Coq";
··· 1 + { lib, mkCoqDerivation, coq, mathcomp, version ? null }: 2 3 with lib; mkCoqDerivation { 4 pname = "coq-bits"; 5 repo = "bits"; 6 inherit version; 7 + defaultVersion = 8 + if versions.isGe "8.10" coq.version 9 + then "1.1.0" 10 + else if versions.isGe "8.7" coq.version 11 + then "1.0.0" 12 + else null; 13 14 + release = { 15 + "1.0.0" = { 16 + rev = "1.0.0"; 17 + sha256 = "0nv5mdgrd075dpd8bc7h0xc5i95v0pkm0bfyq5rj6ii1s54dwcjl"; 18 + }; 19 + "1.1.0" = { 20 + rev = "1.1.0"; 21 + sha256 = "sha256-TCw1kSXeW0ysIdLeNr+EGmpGumEE9i8tinEMp57UXaE="; 22 + }; 23 + }; 24 25 + extraBuildInputs = [ mathcomp.ssreflect mathcomp.fingroup ]; 26 + propagatedBuildInputs = [ mathcomp.algebra ]; 27 + 28 + installPhase = '' 29 + make -f Makefile CoqMakefile 30 + make -f CoqMakefile COQLIB=$out/lib/coq/${coq.coq-version}/ install 31 + ''; 32 33 meta = { 34 description = "A formalization of bitset operations in Coq";
+2 -2
pkgs/development/coq-modules/coq-elpi/default.nix
··· 7 { case = "8.13"; out = { version = "1.13.7"; };} 8 { case = "8.14"; out = { version = "1.13.7"; };} 9 { case = "8.15"; out = { version = "1.14.1"; };} 10 - ] { version = "1.14.1"; } ); 11 in mkCoqDerivation { 12 pname = "elpi"; 13 repo = "coq-elpi"; ··· 48 release."1.6.0".sha256 = "0kf99i43mlf750fr7fric764mm495a53mg5kahnbp6zcjcxxrm0b"; 49 releaseRev = v: "v${v}"; 50 51 mlPlugin = true; 52 - propagatedBuildInputs = [ elpi ]; 53 54 meta = { 55 description = "Coq plugin embedding ELPI.";
··· 7 { case = "8.13"; out = { version = "1.13.7"; };} 8 { case = "8.14"; out = { version = "1.13.7"; };} 9 { case = "8.15"; out = { version = "1.14.1"; };} 10 + ] {}); 11 in mkCoqDerivation { 12 pname = "elpi"; 13 repo = "coq-elpi"; ··· 48 release."1.6.0".sha256 = "0kf99i43mlf750fr7fric764mm495a53mg5kahnbp6zcjcxxrm0b"; 49 releaseRev = v: "v${v}"; 50 51 + extraNativeBuildInputs = [ which elpi ]; 52 mlPlugin = true; 53 54 meta = { 55 description = "Coq plugin embedding ELPI.";
+2 -1
pkgs/development/coq-modules/coqeal/default.nix
··· 1 { coq, mkCoqDerivation, mathcomp, bignums, paramcoq, multinomials, 2 mathcomp-real-closed, 3 - lib, version ? null }: 4 5 with lib; 6 ··· 22 release."1.0.4".sha256 = "1g5m26lr2lwxh6ld2gykailhay4d0ayql4bfh0aiwqpmmczmxipk"; 23 release."1.0.3".sha256 = "0hc63ny7phzbihy8l7wxjvn3haxx8jfnhi91iw8hkq8n29i23v24"; 24 25 propagatedBuildInputs = [ mathcomp.algebra bignums paramcoq multinomials ]; 26 27 meta = {
··· 1 { coq, mkCoqDerivation, mathcomp, bignums, paramcoq, multinomials, 2 mathcomp-real-closed, 3 + lib, which, version ? null }: 4 5 with lib; 6 ··· 22 release."1.0.4".sha256 = "1g5m26lr2lwxh6ld2gykailhay4d0ayql4bfh0aiwqpmmczmxipk"; 23 release."1.0.3".sha256 = "0hc63ny7phzbihy8l7wxjvn3haxx8jfnhi91iw8hkq8n29i23v24"; 24 25 + extraBuildInputs = [ which ]; 26 propagatedBuildInputs = [ mathcomp.algebra bignums paramcoq multinomials ]; 27 28 meta = {
+2 -4
pkgs/development/coq-modules/coqhammer/default.nix
··· 28 release."1.3-coq8.12".sha256 = "1q1y3cwhd98pkm98g71fsdjz85bfwgcz2xn7s7wwmiraifv5l6z8"; 29 release."1.3-coq8.11".sha256 = "08zf8qfna7b9p2myfaz4g7bas3a1q1156x78n5isqivlnqfrjc1b"; 30 release."1.3-coq8.10".sha256 = "1fj8497ir4m79hyrmmmmrag01001wrby0h24wv6525vz0w5py3cd"; 31 - release."1.1.1-coq8.9" = { sha256 = "1knjmz4hr8vlp103j8n4fyb2lfxysnm512gh3m2kp85n6as6fvb9"; 32 - rev = "f8b4d81a213aa1f25afbe53c7c9ca1b15e3d42bc"; }; 33 - release."1.1-coq8.8" = { sha256 = "0ms086wp4jmrzyglb8wymchzyflflk01nsfsk4r6qv8rrx81nx9h"; 34 - rev = "c3cb54b4d5f33fab372d33c7189861368a08fa22"; }; 35 36 release."1.3.1-coq8.13".version = "1.3.1"; 37 release."1.3.1-coq8.12".version = "1.3.1";
··· 28 release."1.3-coq8.12".sha256 = "1q1y3cwhd98pkm98g71fsdjz85bfwgcz2xn7s7wwmiraifv5l6z8"; 29 release."1.3-coq8.11".sha256 = "08zf8qfna7b9p2myfaz4g7bas3a1q1156x78n5isqivlnqfrjc1b"; 30 release."1.3-coq8.10".sha256 = "1fj8497ir4m79hyrmmmmrag01001wrby0h24wv6525vz0w5py3cd"; 31 + release."1.1.1-coq8.9".sha256 = "1knjmz4hr8vlp103j8n4fyb2lfxysnm512gh3m2kp85n6as6fvb9"; 32 + release."1.1-coq8.8".sha256 = "0ms086wp4jmrzyglb8wymchzyflflk01nsfsk4r6qv8rrx81nx9h"; 33 34 release."1.3.1-coq8.13".version = "1.3.1"; 35 release."1.3.1-coq8.12".version = "1.3.1";
+1
pkgs/development/coq-modules/coqprime/default.nix
··· 20 release."8.7.2".sha256 = "15zlcrx06qqxjy3nhh22wzy0rb4npc8l4nx2bbsfsvrisbq1qb7k"; 21 releaseRev = v: "v${v}"; 22 23 propagatedBuildInputs = [ bignums ]; 24 25 meta = with lib; {
··· 20 release."8.7.2".sha256 = "15zlcrx06qqxjy3nhh22wzy0rb4npc8l4nx2bbsfsvrisbq1qb7k"; 21 releaseRev = v: "v${v}"; 22 23 + extraBuildInputs = [ which ]; 24 propagatedBuildInputs = [ bignums ]; 25 26 meta = with lib; {
+3 -1
pkgs/development/coq-modules/coqtail-math/default.nix
··· 14 release."8.14".sha256 = "sha256:1k8f8idjnx0mf4z479vcx55iz42rjxrbplbznv80m2famxakq03c"; 15 release."20201124".rev = "5c22c3d7dcd8cf4c47cf84a281780f5915488e9e"; 16 release."20201124".sha256 = "sha256-wd+Lh7dpAD4zfpyKuztDmSFEZo5ZiFrR8ti2jUCVvoQ="; 17 - mlPlugin = true; 18 meta = { 19 license = licenses.lgpl3Only; 20 maintainers = [ maintainers.siraben ];
··· 14 release."8.14".sha256 = "sha256:1k8f8idjnx0mf4z479vcx55iz42rjxrbplbznv80m2famxakq03c"; 15 release."20201124".rev = "5c22c3d7dcd8cf4c47cf84a281780f5915488e9e"; 16 release."20201124".sha256 = "sha256-wd+Lh7dpAD4zfpyKuztDmSFEZo5ZiFrR8ti2jUCVvoQ="; 17 + 18 + extraNativeBuildInputs = with coq.ocamlPackages; [ ocaml findlib ]; 19 + 20 meta = { 21 license = licenses.lgpl3Only; 22 maintainers = [ maintainers.siraben ];
+2 -2
pkgs/development/coq-modules/coquelicot/default.nix
··· 1 - { lib, mkCoqDerivation, autoconf, 2 coq, ssreflect, version ? null }: 3 4 with lib; mkCoqDerivation { ··· 16 release."3.0.2".sha256 = "1rqfbbskgz7b1bcpva8wh3v3456sq2364y804f94sc8y5sij23nl"; 17 releaseRev = v: "coquelicot-${v}"; 18 19 - nativeBuildInputs = [ autoconf ]; 20 propagatedBuildInputs = [ ssreflect ]; 21 useMelquiondRemake.logpath = "Coquelicot"; 22
··· 1 + { lib, mkCoqDerivation, which, autoconf, 2 coq, ssreflect, version ? null }: 3 4 with lib; mkCoqDerivation { ··· 16 release."3.0.2".sha256 = "1rqfbbskgz7b1bcpva8wh3v3456sq2364y804f94sc8y5sij23nl"; 17 releaseRev = v: "coquelicot-${v}"; 18 19 + extraNativeBuildInputs = [ which autoconf ]; 20 propagatedBuildInputs = [ ssreflect ]; 21 useMelquiondRemake.logpath = "Coquelicot"; 22
+2 -2
pkgs/development/coq-modules/dpdgraph/default.nix
··· 39 release."0.6".sha256 = "0qvar8gfbrcs9fmvkph5asqz4l5fi63caykx3bsn8zf0xllkwv0n"; 40 releaseRev = v: "v${v}"; 41 42 - nativeBuildInputs = [ autoreconfHook ]; 43 mlPlugin = true; 44 - buildInputs = [ coq.ocamlPackages.ocamlgraph ]; 45 46 # dpd_compute.ml uses deprecated Pervasives.compare 47 # Versions prior to 0.6.5 do not have the WARN_ERR build flag
··· 39 release."0.6".sha256 = "0qvar8gfbrcs9fmvkph5asqz4l5fi63caykx3bsn8zf0xllkwv0n"; 40 releaseRev = v: "v${v}"; 41 42 + extraNativeBuildInputs = [ autoreconfHook ]; 43 mlPlugin = true; 44 + extraBuildInputs = [ coq.ocamlPackages.ocamlgraph ]; 45 46 # dpd_compute.ml uses deprecated Pervasives.compare 47 # Versions prior to 0.6.5 do not have the WARN_ERR build flag
+2 -2
pkgs/development/coq-modules/fiat/HEAD.nix
··· 8 inherit version; 9 defaultVersion = if coq.coq-version == "8.5" then "2016-10-24" else null; 10 release."2016-10-24".rev = "7feb6c64be9ebcc05924ec58fe1463e73ec8206a"; 11 - release."2016-10-24".sha256 = "16y57vibq3f5i5avgj80f4i3aw46wdwzx36k5d3pf3qk17qrlrdi"; 12 13 mlPlugin = true; 14 - buildInputs = [ python27 ]; 15 16 prePatch = "patchShebangs etc/coq-scripts"; 17
··· 8 inherit version; 9 defaultVersion = if coq.coq-version == "8.5" then "2016-10-24" else null; 10 release."2016-10-24".rev = "7feb6c64be9ebcc05924ec58fe1463e73ec8206a"; 11 + release."2016-10-24".sha256 = "0griqc675yylf9rvadlfsabz41qy5f5idya30p5rv6ysiakxya64"; 12 13 mlPlugin = true; 14 + extraBuildInputs = [ python27 ]; 15 16 prePatch = "patchShebangs etc/coq-scripts"; 17
+2 -2
pkgs/development/coq-modules/flocq/default.nix
··· 1 - { lib, bash, autoconf, automake, 2 mkCoqDerivation, coq, version ? null }: 3 4 with lib; mkCoqDerivation { ··· 16 release."2.6.1".sha256 = "0q5a038ww5dn72yvwn5298d3ridkcngb1dik8hdyr3xh7gr5qibj"; 17 releaseRev = v: "flocq-${v}"; 18 19 - nativeBuildInputs = [ bash autoconf ]; 20 mlPlugin = true; 21 useMelquiondRemake.logpath = "Flocq"; 22
··· 1 + { lib, which, autoconf, automake, 2 mkCoqDerivation, coq, version ? null }: 3 4 with lib; mkCoqDerivation { ··· 16 release."2.6.1".sha256 = "0q5a038ww5dn72yvwn5298d3ridkcngb1dik8hdyr3xh7gr5qibj"; 17 releaseRev = v: "flocq-${v}"; 18 19 + nativeBuildInputs = [ which autoconf ]; 20 mlPlugin = true; 21 useMelquiondRemake.logpath = "Flocq"; 22
+1 -1
pkgs/development/coq-modules/gappalib/default.nix
··· 13 release."1.4.4".sha256 = "114q2hgw64j6kqa9mg3qcp1nlf0ia46z2xadq81fnkxqm856ml7l"; 14 releaseRev = v: "gappalib-coq-${v}"; 15 16 - nativeBuildInputs = [ autoconf ]; 17 mlPlugin = true; 18 propagatedBuildInputs = [ flocq ]; 19 useMelquiondRemake.logpath = "Gappa";
··· 13 release."1.4.4".sha256 = "114q2hgw64j6kqa9mg3qcp1nlf0ia46z2xadq81fnkxqm856ml7l"; 14 releaseRev = v: "gappalib-coq-${v}"; 15 16 + extraNativeBuildInputs = [ which autoconf ]; 17 mlPlugin = true; 18 propagatedBuildInputs = [ flocq ]; 19 useMelquiondRemake.logpath = "Gappa";
+6 -10
pkgs/development/coq-modules/heq/default.nix
··· 1 {lib, fetchzip, mkCoqDerivation, coq, version ? null }: 2 3 - let fetcher = {rev, repo, owner, sha256, domain, ...}: 4 - fetchzip { 5 - url = "https://${domain}/${owner}/${repo}/download/${repo}-${rev}.zip"; 6 - inherit sha256; 7 - }; in 8 with lib; mkCoqDerivation { 9 pname = "heq"; 10 repo = "Heq"; 11 - owner = "gil.hur"; 12 - domain = "sf.snu.ac.kr"; 13 inherit version fetcher; 14 defaultVersion = if versions.isLt "8.8" coq.coq-version then "0.92" else null; 15 release."0.92".sha256 = "0cf8y6728n81wwlbpq3vi7l2dbzi7759klypld4gpsjjp1y1fj74"; 16 17 mlPlugin = true; 18 - preBuild = "cd src"; 19 20 - extraInstallFlags = [ "COQLIB=$(out)/lib/coq/${coq.coq-version}/" ]; 21 22 meta = { 23 - homepage = "https://ropas.snu.ac.kr/~gil.hur/Heq/"; 24 description = "Heq : a Coq library for Heterogeneous Equality"; 25 maintainers = with maintainers; [ jwiegley ]; 26 };
··· 1 {lib, fetchzip, mkCoqDerivation, coq, version ? null }: 2 3 with lib; mkCoqDerivation { 4 pname = "heq"; 5 repo = "Heq"; 6 + owner = "gil"; 7 + domain = "mpi-sws.org"; 8 inherit version fetcher; 9 defaultVersion = if versions.isLt "8.8" coq.coq-version then "0.92" else null; 10 release."0.92".sha256 = "0cf8y6728n81wwlbpq3vi7l2dbzi7759klypld4gpsjjp1y1fj74"; 11 12 mlPlugin = true; 13 + propagatedBuildInputs = [ coq ]; 14 15 + extraInstallFlags = [ "COQLIB=$out/lib/coq/${coq.coq-version}" ]; 16 + preBuild = "cd src"; 17 18 meta = { 19 + homepage = "https://www.mpi-sws.org/~gil/Heq/"; 20 description = "Heq : a Coq library for Heterogeneous Equality"; 21 maintainers = with maintainers; [ jwiegley ]; 22 };
+4 -1
pkgs/development/coq-modules/hierarchy-builder/default.nix
··· 1 - { lib, mkCoqDerivation, coq, coq-elpi, version ? null }: 2 3 with lib; let hb = mkCoqDerivation { 4 pname = "hierarchy-builder"; ··· 17 release."0.10.0".sha256 = "1a3vry9nzavrlrdlq3cys3f8kpq3bz447q8c4c7lh2qal61wb32h"; 18 releaseRev = v: "v${v}"; 19 20 propagatedBuildInputs = [ coq-elpi ]; 21 22 mlPlugin = true; 23 24 extraInstallFlags = [ "VFILES=structures.v" ]; 25 26 meta = {
··· 1 + { lib, mkCoqDerivation, which, coq, coq-elpi, version ? null }: 2 3 with lib; let hb = mkCoqDerivation { 4 pname = "hierarchy-builder"; ··· 17 release."0.10.0".sha256 = "1a3vry9nzavrlrdlq3cys3f8kpq3bz447q8c4c7lh2qal61wb32h"; 18 releaseRev = v: "v${v}"; 19 20 + extraNativeBuildInputs = [ which ]; 21 + 22 propagatedBuildInputs = [ coq-elpi ]; 23 24 mlPlugin = true; 25 26 + installFlags = [ "DESTDIR=$(out)" "COQMF_COQLIB=lib/coq/${coq.coq-version}" ]; 27 extraInstallFlags = [ "VFILES=structures.v" ]; 28 29 meta = {
+3 -5
pkgs/development/coq-modules/interval/default.nix
··· 1 - { lib, mkCoqDerivation, autoconf, coq, coquelicot, flocq, 2 - mathcomp-ssreflect, mathcomp-fingroup, bignums ? null, gnuplot_qt, version ? null }: 3 4 mkCoqDerivation rec { 5 pname = "interval"; ··· 21 release."3.3.0".sha256 = "0lz2hgggzn4cvklvm8rpaxvwaryf37i8mzqajqgdxdbd8f12acsz"; 22 releaseRev = v: "interval-${v}"; 23 24 - nativeBuildInputs = [ autoconf ]; 25 - propagatedBuildInputs = lib.optional (lib.versions.isGe "8.6" coq.coq-version) bignums 26 - ++ [ coquelicot flocq mathcomp-ssreflect mathcomp-fingroup ] 27 ++ lib.optionals (lib.versions.isGe "4.2.0" defaultVersion) [ gnuplot_qt ]; 28 useMelquiondRemake.logpath = "Interval"; 29 mlPlugin = true;
··· 1 + { lib, mkCoqDerivation, which, autoconf, coq, coquelicot, flocq, mathcomp-ssreflect, mathcomp-fingroup, bignums ? null, gnuplot_qt, version ? null }: 2 3 mkCoqDerivation rec { 4 pname = "interval"; ··· 20 release."3.3.0".sha256 = "0lz2hgggzn4cvklvm8rpaxvwaryf37i8mzqajqgdxdbd8f12acsz"; 21 releaseRev = v: "interval-${v}"; 22 23 + extraNativeBuildInputs = [ which autoconf ]; 24 + propagatedBuildInputs = [ bignums coquelicot flocq mathcomp-ssreflect mathcomp-fingroup ] 25 ++ lib.optionals (lib.versions.isGe "4.2.0" defaultVersion) [ gnuplot_qt ]; 26 useMelquiondRemake.logpath = "Interval"; 27 mlPlugin = true;
+1 -1
pkgs/development/coq-modules/itauto/default.nix
··· 17 ] null; 18 19 mlPlugin = true; 20 - nativeBuildInputs = (with coq.ocamlPackages; [ ocamlbuild ]); 21 enableParallelBuilding = false; 22 23 meta = {
··· 17 ] null; 18 19 mlPlugin = true; 20 + extraNativeBuildInputs = (with coq.ocamlPackages; [ ocamlbuild ]); 21 enableParallelBuilding = false; 22 23 meta = {
+1
pkgs/development/coq-modules/ltac2/default.nix
··· 17 release."0.1-8.7".rev = "v0.1-8.7"; 18 release."0.1-8.7".sha256 = "0l6wiwi4cvd0i324fb29i9mdh0ijlxzggw4mrjjy695l2qdnlgg0"; 19 20 mlPlugin = true; 21 22 meta = {
··· 17 release."0.1-8.7".rev = "v0.1-8.7"; 18 release."0.1-8.7".sha256 = "0l6wiwi4cvd0i324fb29i9mdh0ijlxzggw4mrjjy695l2qdnlgg0"; 19 20 + nativeBuildInputs = [ which ]; 21 mlPlugin = true; 22 23 meta = {
+1 -1
pkgs/development/coq-modules/math-classes/default.nix
··· 9 release."8.13.0".sha256 = "1ln7ziivfbxzbdvlhbvyg3v30jgblncmwcsam6gg3d1zz6r7cbby"; 10 release."8.15.0".sha256 = "10w1hm537k6jx8a8vghq1yx12rsa0sjk2ipv3scgir71ln30hllw"; 11 12 - propagatedBuildInputs = [ bignums ]; 13 14 meta = { 15 homepage = "https://math-classes.github.io";
··· 9 release."8.13.0".sha256 = "1ln7ziivfbxzbdvlhbvyg3v30jgblncmwcsam6gg3d1zz6r7cbby"; 10 release."8.15.0".sha256 = "10w1hm537k6jx8a8vghq1yx12rsa0sjk2ipv3scgir71ln30hllw"; 11 12 + extraBuildInputs = [ bignums ]; 13 14 meta = { 15 homepage = "https://math-classes.github.io";
+4 -5
pkgs/development/coq-modules/mathcomp/default.nix
··· 10 # See the documentation at doc/languages-frameworks/coq.section.md. # 11 ############################################################################ 12 13 - { lib, ncurses, graphviz, lua, fetchzip, 14 mkCoqDerivation, recurseIntoAttrs, withDoc ? false, single ? false, 15 - coqPackages, coq, version ? null }@args: 16 with builtins // lib; 17 let 18 repo = "math-comp"; ··· 60 inherit version pname defaultVersion release releaseRev repo owner; 61 62 mlPlugin = versions.isLe "8.6" coq.coq-version; 63 - nativeBuildInputs = optionals withDoc [ graphviz lua ]; 64 - buildInputs = [ ncurses ]; 65 - propagatedBuildInputs = mathcomp-deps; 66 67 buildFlags = optional withDoc "doc"; 68
··· 10 # See the documentation at doc/languages-frameworks/coq.section.md. # 11 ############################################################################ 12 13 + { lib, ncurses, which, graphviz, lua, fetchzip, 14 mkCoqDerivation, recurseIntoAttrs, withDoc ? false, single ? false, 15 + coqPackages, coq, ocamlPackages, version ? null }@args: 16 with builtins // lib; 17 let 18 repo = "math-comp"; ··· 60 inherit version pname defaultVersion release releaseRev repo owner; 61 62 mlPlugin = versions.isLe "8.6" coq.coq-version; 63 + extraNativeBuildInputs = [ which ] ++ optionals withDoc [ graphviz lua ]; 64 + extraBuildInputs = [ ncurses ] ++ mathcomp-deps; 65 66 buildFlags = optional withDoc "doc"; 67
+4 -2
pkgs/development/coq-modules/metacoq/default.nix
··· 1 - { lib, fetchzip, 2 mkCoqDerivation, recurseIntoAttrs, single ? false, 3 coqPackages, coq, equations, version ? null }@args: 4 with builtins // lib; ··· 36 derivation = mkCoqDerivation ({ 37 inherit version pname defaultVersion release releaseRev repo owner; 38 39 mlPlugin = true; 40 - propagatedBuildInputs = [ equations coq.ocamlPackages.zarith ] ++ metacoq-deps; 41 42 patchPhase = '' 43 patchShebangs ./configure.sh
··· 1 + { lib, which, fetchzip, 2 mkCoqDerivation, recurseIntoAttrs, single ? false, 3 coqPackages, coq, equations, version ? null }@args: 4 with builtins // lib; ··· 36 derivation = mkCoqDerivation ({ 37 inherit version pname defaultVersion release releaseRev repo owner; 38 39 + extraNativeBuildInputs = [ which ]; 40 mlPlugin = true; 41 + extraBuildInputs = [ coq.ocamlPackages.zarith ]; 42 + propagatedBuildInputs = [ equations ] ++ metacoq-deps; 43 44 patchPhase = '' 45 patchShebangs ./configure.sh
+1
pkgs/development/coq-modules/metalib/default.nix
··· 13 release."8.10".sha256 = "0wbypc05d2lqfm9qaw98ynr5yc1p0ipsvyc3bh1rk9nz7zwirmjs"; 14 15 sourceRoot = "source/Metalib"; 16 17 meta = { 18 license = licenses.mit;
··· 13 release."8.10".sha256 = "0wbypc05d2lqfm9qaw98ynr5yc1p0ipsvyc3bh1rk9nz7zwirmjs"; 14 15 sourceRoot = "source/Metalib"; 16 + installFlags = "COQMF_COQLIB=$(out)/lib/coq/${coq.coq-version}"; 17 18 meta = { 19 license = licenses.mit;
+2 -2
pkgs/development/coq-modules/semantics/default.nix
··· 24 ] null; 25 26 mlPlugin = true; 27 - nativeBuildInputs = (with coq.ocamlPackages; [ ocamlbuild ]); 28 - propagatedBuildInputs = (with coq.ocamlPackages; [ num ]); 29 30 postPatch = '' 31 for p in Make Makefile.coq.local
··· 24 ] null; 25 26 mlPlugin = true; 27 + extraNativeBuildInputs = (with coq.ocamlPackages; [ ocamlbuild ]); 28 + extraBuildInputs = (with coq.ocamlPackages; [ num ]); 29 30 postPatch = '' 31 for p in Make Makefile.coq.local
+4 -2
pkgs/development/coq-modules/simple-io/default.nix
··· 11 ] null; 12 release."1.7.0".sha256 = "sha256:1a1q9x2abx71hqvjdai3n12jxzd49mhf3nqqh3ya2ssl2lj609ci"; 13 release."1.3.0".sha256 = "1yp7ca36jyl9kz35ghxig45x6cd0bny2bpmy058359p94wc617ax"; 14 mlPlugin = true; 15 - nativeBuildInputs = [ coq.ocamlPackages.cppo ]; 16 - propagatedBuildInputs = [ coq-ext-lib coq.ocamlPackages.ocamlbuild ]; 17 18 doCheck = true; 19 checkTarget = "test";
··· 11 ] null; 12 release."1.7.0".sha256 = "sha256:1a1q9x2abx71hqvjdai3n12jxzd49mhf3nqqh3ya2ssl2lj609ci"; 13 release."1.3.0".sha256 = "1yp7ca36jyl9kz35ghxig45x6cd0bny2bpmy058359p94wc617ax"; 14 + extraNativeBuildInputs = (with coq.ocamlPackages; [ cppo zarith ]); 15 + propagatedBuildInputs = [ coq-ext-lib ] 16 + ++ (with coq.ocamlPackages; [ ocaml ocamlbuild ]); 17 + 18 mlPlugin = true; 19 20 doCheck = true; 21 checkTarget = "test";
+3 -5
pkgs/development/coq-modules/smtcoq/default.nix
··· 13 { case = isEq "8.13"; out = "itp22"; } 14 ] null; 15 16 - propagatedBuildInputs = [ trakt cvc4 ] 17 - ++ lib.optionals (!stdenv.isDarwin) [ veriT ] 18 - ++ (with coq.ocamlPackages; [ num zarith ]); 19 - mlPlugin = true; 20 - nativeBuildInputs = with coq.ocamlPackages; [ ocamlbuild ]; 21 22 meta = { 23 description = "Communication between Coq and SAT/SMT solvers ";
··· 13 { case = isEq "8.13"; out = "itp22"; } 14 ] null; 15 16 + propagatedBuildInputs = [ trakt cvc4 ] ++ lib.optionals (!stdenv.isDarwin) [ veriT ]; 17 + extraNativeBuildInputs = with coq.ocamlPackages; [ ocaml ocamlbuild ]; 18 + extraBuildInputs = with coq.ocamlPackages; [ findlib num zarith ]; 19 20 meta = { 21 description = "Communication between Coq and SAT/SMT solvers ";
+1 -1
pkgs/development/haskell-modules/configuration-nix.nix
··· 866 buildTools = drv.buildTools or [ ] ++ [ pkgs.buildPackages.makeWrapper ]; 867 postInstall = drv.postInstall or "" + '' 868 wrapProgram "$out/bin/nvfetcher" --prefix 'PATH' ':' "${ 869 - pkgs.lib.makeBinPath [ pkgs.nvchecker pkgs.nix-prefetch-git ] 870 }" 871 ''; 872 }) super.nvfetcher);
··· 866 buildTools = drv.buildTools or [ ] ++ [ pkgs.buildPackages.makeWrapper ]; 867 postInstall = drv.postInstall or "" + '' 868 wrapProgram "$out/bin/nvfetcher" --prefix 'PATH' ':' "${ 869 + pkgs.lib.makeBinPath [ pkgs.nvchecker pkgs.nix-prefetch ] 870 }" 871 ''; 872 }) super.nvfetcher);
+3
pkgs/development/libraries/libcutl/default.nix
··· 14 homepage = "https://codesynthesis.com/projects/libcutl/"; 15 changelog = "https://git.codesynthesis.com/cgit/libcutl/libcutl/plain/NEWS?h=${version}"; 16 platforms = platforms.all; 17 maintainers = with maintainers; [ ]; 18 license = licenses.mit; 19 }; ··· 26 27 buildInputs = [ xercesc ]; 28 enableParallelBuilding = true; 29 }
··· 14 homepage = "https://codesynthesis.com/projects/libcutl/"; 15 changelog = "https://git.codesynthesis.com/cgit/libcutl/libcutl/plain/NEWS?h=${version}"; 16 platforms = platforms.all; 17 + broken = stdenv.isDarwin; 18 maintainers = with maintainers; [ ]; 19 license = licenses.mit; 20 }; ··· 27 28 buildInputs = [ xercesc ]; 29 enableParallelBuilding = true; 30 + 31 + NIX_CFLAGS_COMPILE = [ "-std=c++14" ]; 32 }
+9 -2
pkgs/development/libraries/libde265/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config }: 2 3 stdenv.mkDerivation rec { 4 version = "1.0.8"; ··· 11 sha256 = "1dzflqbk248lz5ws0ni5acmf32b3rmnq5gsfaz7691qqjxkl1zml"; 12 }; 13 14 nativeBuildInputs = [ autoreconfHook pkg-config ]; 15 16 enableParallelBuilding = true; ··· 22 platforms = lib.platforms.unix; 23 maintainers = with lib.maintainers; [ gebner ]; 24 }; 25 - 26 }
··· 1 + { lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, pkg-config }: 2 3 stdenv.mkDerivation rec { 4 version = "1.0.8"; ··· 11 sha256 = "1dzflqbk248lz5ws0ni5acmf32b3rmnq5gsfaz7691qqjxkl1zml"; 12 }; 13 14 + patches = [ 15 + (fetchpatch { 16 + name = "CVE-2022-1253.patch"; 17 + url = "https://github.com/strukturag/libde265/commit/8e89fe0e175d2870c39486fdd09250b230ec10b8.patch"; 18 + sha256 = "sha256-F1BOWFx9oXR2trM22atyD3AJ5x6vVfURQ/PTlYP2Ibg="; 19 + }) 20 + ]; 21 + 22 nativeBuildInputs = [ autoreconfHook pkg-config ]; 23 24 enableParallelBuilding = true; ··· 30 platforms = lib.platforms.unix; 31 maintainers = with lib.maintainers; [ gebner ]; 32 }; 33 }
+2 -2
pkgs/development/libraries/opengrm-ngram/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "opengrm-ngram"; 5 - version = "1.3.13"; 6 7 src = fetchurl { 8 url = "http://www.openfst.org/twiki/pub/GRM/NGramDownload/ngram-${version}.tar.gz"; 9 - sha256 = "sha256-5CXf6OXs7owny3yZQrWYA6yhIyN0dgA2B8TSDEUTF1Q="; 10 }; 11 12 nativeBuildInputs = [ autoreconfHook ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "opengrm-ngram"; 5 + version = "1.3.14"; 6 7 src = fetchurl { 8 url = "http://www.openfst.org/twiki/pub/GRM/NGramDownload/ngram-${version}.tar.gz"; 9 + sha256 = "sha256-ivMPDy6CPM17hWCToLOVzUgcWZiEt2pjYeizeBLYnYc="; 10 }; 11 12 nativeBuildInputs = [ autoreconfHook ];
+1
pkgs/development/libraries/wlroots/0.14.nix
··· 20 # $out for the library and $examples for the example programs (in examples): 21 outputs = [ "out" "examples" ]; 22 23 depsBuildBuild = [ pkg-config ]; 24 25 nativeBuildInputs = [ meson ninja pkg-config wayland-scanner ];
··· 20 # $out for the library and $examples for the example programs (in examples): 21 outputs = [ "out" "examples" ]; 22 23 + strictDeps = true; 24 depsBuildBuild = [ pkg-config ]; 25 26 nativeBuildInputs = [ meson ninja pkg-config wayland-scanner ];
+1
pkgs/development/libraries/wlroots/0.15.nix
··· 22 # $out for the library and $examples for the example programs (in examples): 23 outputs = [ "out" "examples" ]; 24 25 depsBuildBuild = [ pkg-config ]; 26 27 nativeBuildInputs = [ meson ninja pkg-config wayland-scanner glslang ];
··· 22 # $out for the library and $examples for the example programs (in examples): 23 outputs = [ "out" "examples" ]; 24 25 + strictDeps = true; 26 depsBuildBuild = [ pkg-config ]; 27 28 nativeBuildInputs = [ meson ninja pkg-config wayland-scanner glslang ];
+1
pkgs/development/libraries/wlroots/protocols.nix
··· 12 sha256 = "1vw8b10d1pwsj6f4sr3imvwsy55d3435sp068sj4hdszkxc6axsr"; 13 }; 14 15 checkInputs = [ wayland-scanner ]; 16 17 patchPhase = ''
··· 12 sha256 = "1vw8b10d1pwsj6f4sr3imvwsy55d3435sp068sj4hdszkxc6axsr"; 13 }; 14 15 + strictDeps = true; 16 checkInputs = [ wayland-scanner ]; 17 18 patchPhase = ''
+3 -9
pkgs/development/ocaml-modules/elpi/default.nix
··· 1 - { stdenv, lib, fetchzip, bash 2 - , buildDunePackage, camlp5 3 , re, perl, ncurses 4 , ppxlib, ppx_deriving 5 , ppxlib_0_15, ppx_deriving_0_15 6 - , coqPackages 7 , version ? "1.14.1" 8 }: 9 with lib; 10 - let fetched = coqPackages.metaFetch ({ 11 release."1.14.1".sha256 = "sha256-BZPVL8ymjrE9kVGyf6bpc+GA2spS5JBpkUtZi04nPis="; 12 release."1.13.7".sha256 = "10fnwz30bsvj7ii1vg4l1li5pd7n0qqmwj18snkdr5j9gk0apc1r"; 13 release."1.13.5".sha256 = "02a6r23mximrdvs6kgv6rp0r2dgk7zynbs99nn7lphw2c4189kka"; ··· 32 then [ ppxlib ppx_deriving ] 33 else [ ppxlib_0_15 ppx_deriving_0_15 ] 34 ); 35 - 36 - patchPhase = '' 37 - sed -e "s/SHELL:=/SHELL?=/" -i Makefile || true 38 - ''; 39 - buildPhase = "SHELL=${bash} make build"; 40 41 meta = { 42 description = "Embeddable λProlog Interpreter";
··· 1 + { stdenv, lib, fetchzip, buildDunePackage, camlp5 2 , re, perl, ncurses 3 , ppxlib, ppx_deriving 4 , ppxlib_0_15, ppx_deriving_0_15 5 , version ? "1.14.1" 6 }: 7 with lib; 8 + let fetched = import ../../../build-support/coq/meta-fetch/default.nix 9 + {inherit lib stdenv fetchzip; } ({ 10 release."1.14.1".sha256 = "sha256-BZPVL8ymjrE9kVGyf6bpc+GA2spS5JBpkUtZi04nPis="; 11 release."1.13.7".sha256 = "10fnwz30bsvj7ii1vg4l1li5pd7n0qqmwj18snkdr5j9gk0apc1r"; 12 release."1.13.5".sha256 = "02a6r23mximrdvs6kgv6rp0r2dgk7zynbs99nn7lphw2c4189kka"; ··· 31 then [ ppxlib ppx_deriving ] 32 else [ ppxlib_0_15 ppx_deriving_0_15 ] 33 ); 34 35 meta = { 36 description = "Embeddable λProlog Interpreter";
+2
pkgs/development/python-modules/container-inspector/default.nix
··· 24 hash = "sha256-YwtyNZsTMb8iFXo/rojvjkKUbMNRCXVamzFykpwYCOk="; 25 }; 26 27 dontConfigure = true; 28 29 nativeBuildInputs = [
··· 24 hash = "sha256-YwtyNZsTMb8iFXo/rojvjkKUbMNRCXVamzFykpwYCOk="; 25 }; 26 27 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 28 + 29 dontConfigure = true; 30 31 nativeBuildInputs = [
+9 -3
pkgs/development/python-modules/debian-inspector/default.nix
··· 6 , commoncode 7 , pytestCheckHook 8 , setuptools-scm 9 }: 10 11 buildPythonPackage rec { 12 pname = "debian-inspector"; 13 version = "30.0.0"; 14 15 src = fetchPypi { 16 pname = "debian_inspector"; 17 inherit version; 18 - sha256 = "sha256-0PT5sT6adaqgYQtWjks12ys0z1C3n116aeJaEKR/Wxg="; 19 }; 20 21 nativeBuildInputs = [ 22 setuptools-scm 23 ]; 24 - 25 - dontConfigure = true; 26 27 propagatedBuildInputs = [ 28 chardet
··· 6 , commoncode 7 , pytestCheckHook 8 , setuptools-scm 9 + , pythonOlder 10 }: 11 12 buildPythonPackage rec { 13 pname = "debian-inspector"; 14 version = "30.0.0"; 15 + format = "setuptools"; 16 + 17 + disabled = pythonOlder "3.6"; 18 19 src = fetchPypi { 20 pname = "debian_inspector"; 21 inherit version; 22 + hash = "sha256-0PT5sT6adaqgYQtWjks12ys0z1C3n116aeJaEKR/Wxg="; 23 }; 24 25 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 26 + 27 + dontConfigure = true; 28 + 29 nativeBuildInputs = [ 30 setuptools-scm 31 ]; 32 33 propagatedBuildInputs = [ 34 chardet
+48
pkgs/development/python-modules/evtx/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pytestCheckHook 5 + , pythonOlder 6 + , rustPlatform 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "evtx"; 11 + version = "0.7.3"; 12 + format = "pyproject"; 13 + 14 + disabled = pythonOlder "3.6"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "omerbenamram"; 18 + repo = "pyevtx-rs"; 19 + rev = version; 20 + sha256 = "sha256-59iEmgF1m+Yr5k4oxZGqMs5oMZxToUFYuwQDeLEQ2jY="; 21 + }; 22 + 23 + cargoDeps = rustPlatform.fetchCargoTarball { 24 + inherit src; 25 + name = "${pname}-${version}"; 26 + sha256 = "sha256-Q2SpJohLSQCMYmx1ZMWZ7a/NC0lPsHkwxom00qVooNM="; 27 + }; 28 + 29 + nativeBuildInputs = with rustPlatform; [ 30 + cargoSetupHook 31 + maturinBuildHook 32 + ]; 33 + 34 + checkInputs = [ 35 + pytestCheckHook 36 + ]; 37 + 38 + pythonImportsCheck = [ 39 + "evtx" 40 + ]; 41 + 42 + meta = with lib; { 43 + description = "Bindings for evtx"; 44 + homepage = "https://github.com/omerbenamram/pyevtx-rs"; 45 + license = with licenses; [ mit ]; 46 + maintainers = with maintainers; [ fab ]; 47 + }; 48 + }
+11 -3
pkgs/development/python-modules/jwcrypto/default.nix
··· 3 , fetchPypi 4 , cryptography 5 , deprecated 6 }: 7 8 buildPythonPackage rec { 9 pname = "jwcrypto"; 10 - version = "1.2"; 11 12 src = fetchPypi { 13 inherit pname version; 14 - sha256 = "sha256-7fQwkyFyHlFhzvzN1ksEUJ4Dkk/q894IW0d4B2WYmuM="; 15 }; 16 17 propagatedBuildInputs = [ ··· 19 deprecated 20 ]; 21 22 meta = with lib; { 23 description = "Implementation of JOSE Web standards"; 24 homepage = "https://github.com/latchset/jwcrypto"; 25 license = licenses.lgpl3Plus; 26 - maintainers = [ maintainers.costrouc ]; 27 }; 28 }
··· 3 , fetchPypi 4 , cryptography 5 , deprecated 6 + , pythonOlder 7 }: 8 9 buildPythonPackage rec { 10 pname = "jwcrypto"; 11 + version = "1.3"; 12 + format = "setuptools"; 13 + 14 + disabled = pythonOlder "3.7"; 15 16 src = fetchPypi { 17 inherit pname version; 18 + hash = "sha256-DWRhuhP3wnHYusUBjuYN28rl/zlAP6+kI3X1fQjjmLs="; 19 }; 20 21 propagatedBuildInputs = [ ··· 23 deprecated 24 ]; 25 26 + pythonImportsCheck = [ 27 + "jwcrypto" 28 + ]; 29 + 30 meta = with lib; { 31 description = "Implementation of JOSE Web standards"; 32 homepage = "https://github.com/latchset/jwcrypto"; 33 license = licenses.lgpl3Plus; 34 + maintainers = with maintainers; [ costrouc ]; 35 }; 36 }
+2
pkgs/development/python-modules/license-expression/default.nix
··· 20 hash = "sha256-tGXNZm9xH8sXa7dtBFsTzGgT+hfbmkwps7breR7KUWU="; 21 }; 22 23 dontConfigure = true; 24 25 nativeBuildInputs = [
··· 20 hash = "sha256-tGXNZm9xH8sXa7dtBFsTzGgT+hfbmkwps7breR7KUWU="; 21 }; 22 23 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 24 + 25 dontConfigure = true; 26 27 nativeBuildInputs = [
+12 -4
pkgs/development/python-modules/parameter-expansion-patched/default.nix
··· 3 , fetchPypi 4 , pytestCheckHook 5 , pythonOlder 6 }: 7 8 buildPythonPackage rec { 9 pname = "parameter-expansion-patched"; 10 - version = "0.2.1b4"; 11 12 - disabled = pythonOlder "3.6"; 13 14 src = fetchPypi { 15 inherit pname version; 16 - sha256 = "1vhshscjifi78qapzwn29gln6p8jhyc7cccszl8ai2jamhcph5zs"; 17 }; 18 19 checkInputs = [ 20 pytestCheckHook 21 ]; ··· 26 27 meta = with lib; { 28 description = "POSIX parameter expansion in Python"; 29 - homepage = "https://github.com/nexB/commoncode"; 30 license = licenses.asl20; 31 maintainers = with maintainers; [ fab ]; 32 };
··· 3 , fetchPypi 4 , pytestCheckHook 5 , pythonOlder 6 + , setuptools-scm 7 }: 8 9 buildPythonPackage rec { 10 pname = "parameter-expansion-patched"; 11 + version = "0.3.1"; 12 + format = "setuptools"; 13 14 + disabled = pythonOlder "3.7"; 15 16 src = fetchPypi { 17 inherit pname version; 18 + hash = "sha256-/128ifveWC8zNlYtGWtxB3HpK6p7bVk1ahSwhaC2dAs="; 19 }; 20 21 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 22 + 23 + nativeBuildInputs = [ 24 + setuptools-scm 25 + ]; 26 + 27 checkInputs = [ 28 pytestCheckHook 29 ]; ··· 34 35 meta = with lib; { 36 description = "POSIX parameter expansion in Python"; 37 + homepage = "https://github.com/nexB/parameter_expansion_patched"; 38 license = licenses.asl20; 39 maintainers = with maintainers; [ fab ]; 40 };
+2
pkgs/development/python-modules/pip-requirements-parser/default.nix
··· 21 hash = "sha256-i4hw3tS4i2ek2JzcDiGo5aFFJ9J2JJ9MB5vxDhOilb0="; 22 }; 23 24 dontConfigure = true; 25 26 nativeBuildInputs = [
··· 21 hash = "sha256-i4hw3tS4i2ek2JzcDiGo5aFFJ9J2JJ9MB5vxDhOilb0="; 22 }; 23 24 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 25 + 26 dontConfigure = true; 27 28 nativeBuildInputs = [
+13 -3
pkgs/development/python-modules/plugincode/default.nix
··· 7 , pluggy 8 , pytestCheckHook 9 , pytest-xdist 10 }: 11 buildPythonPackage rec { 12 pname = "plugincode"; 13 - version = "21.1.21"; 14 15 src = fetchPypi { 16 inherit pname version; 17 - sha256 = "97b5a2c96f0365c80240be103ecd86411c68b11a16f137913cbea9129c54907a"; 18 }; 19 20 dontConfigure = true; ··· 38 "plugincode" 39 ]; 40 41 meta = with lib; { 42 - description = "A library that provides plugin functionality for ScanCode toolkit"; 43 homepage = "https://github.com/nexB/plugincode"; 44 license = licenses.asl20; 45 maintainers = teams.determinatesystems.members;
··· 7 , pluggy 8 , pytestCheckHook 9 , pytest-xdist 10 + , pythonOlder 11 }: 12 + 13 buildPythonPackage rec { 14 pname = "plugincode"; 15 + version = "30.0.0"; 16 + format = "setuptools"; 17 + 18 + disabled = pythonOlder "3.7"; 19 20 src = fetchPypi { 21 inherit pname version; 22 + hash = "sha256-QjcQCvhlaBzcbBB8MIhbsx4cRy7XkdvUcmG7rM48Sos="; 23 }; 24 25 dontConfigure = true; ··· 43 "plugincode" 44 ]; 45 46 + disabledTests = [ 47 + # We don't want black as an input 48 + "test_skeleton_codestyle" 49 + ]; 50 + 51 meta = with lib; { 52 + description = "Library that provides plugin functionality for ScanCode toolkit"; 53 homepage = "https://github.com/nexB/plugincode"; 54 license = licenses.asl20; 55 maintainers = teams.determinatesystems.members;
+3 -2
pkgs/development/python-modules/pontos/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "pontos"; 16 - version = "22.4.0"; 17 format = "pyproject"; 18 19 disabled = pythonOlder "3.7"; ··· 22 owner = "greenbone"; 23 repo = pname; 24 rev = "v${version}"; 25 - hash = "sha256-W+l5QIpum1uTsx/mxZGkRoJAZaC1viURVYg4Kvjv32Y="; 26 }; 27 28 nativeBuildInputs = [ ··· 53 "test_find_unreleased_information" 54 # CLI test fails 55 "test_missing_cmd" 56 ]; 57 58 pythonImportsCheck = [
··· 13 14 buildPythonPackage rec { 15 pname = "pontos"; 16 + version = "22.5.0"; 17 format = "pyproject"; 18 19 disabled = pythonOlder "3.7"; ··· 22 owner = "greenbone"; 23 repo = pname; 24 rev = "v${version}"; 25 + hash = "sha256-WTIuK5kPPqft4u44dN5NDJJKxIPrZGCJjZ5pR6HgOxw="; 26 }; 27 28 nativeBuildInputs = [ ··· 53 "test_find_unreleased_information" 54 # CLI test fails 55 "test_missing_cmd" 56 + "test_update_file_changed" 57 ]; 58 59 pythonImportsCheck = [
+2 -6
pkgs/development/python-modules/pyahocorasick/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "pyahocorasick"; 11 - version = "1.4.4"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.7"; ··· 17 owner = "WojciechMula"; 18 repo = pname; 19 rev = version; 20 - hash = "sha256-X6ifwOwf7GAaNUxInKhR3NX6hKhvFMkvfbK6XpH8CBo="; 21 }; 22 23 checkInputs = [ 24 pytestCheckHook 25 - ]; 26 - 27 - pytestFlagsArray = [ 28 - "unittests.py" 29 ]; 30 31 pythonImportsCheck = [
··· 8 9 buildPythonPackage rec { 10 pname = "pyahocorasick"; 11 + version = "2.0.0b1"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.7"; ··· 17 owner = "WojciechMula"; 18 repo = pname; 19 rev = version; 20 + hash = "sha256-APpL99kOwzIQjePvRDeJ0FDm1kjBi6083JMKuBqtaRk="; 21 }; 22 23 checkInputs = [ 24 pytestCheckHook 25 ]; 26 27 pythonImportsCheck = [
+2 -2
pkgs/development/python-modules/pytest-cases/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "pytest-cases"; 13 - version = "3.6.11"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.6"; 17 18 src = fetchPypi { 19 inherit pname version; 20 - sha256 = "sha256-9rcXPoGxR3sxX3tFbv1O/T7kfrKnIB2XV1mJvSH5WQ4="; 21 }; 22 23 nativeBuildInputs = [
··· 10 11 buildPythonPackage rec { 12 pname = "pytest-cases"; 13 + version = "3.6.12"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.6"; 17 18 src = fetchPypi { 19 inherit pname version; 20 + sha256 = "sha256-pZ7GGqc+Nd71V+3I2LYVMYbaLBPG5+Ze+d7Mb5CONCI="; 21 }; 22 23 nativeBuildInputs = [
+12 -8
pkgs/development/python-modules/scancode-toolkit/default.nix
··· 8 , click 9 , colorama 10 , commoncode 11 , debian-inspector 12 - , dparse 13 , extractcode 14 , extractcode-7z 15 , extractcode-libarchive ··· 32 , packaging 33 , parameter-expansion-patched 34 , pefile 35 - , pkginfo 36 , pluggy 37 , plugincode 38 , publicsuffix2 ··· 58 59 buildPythonPackage rec { 60 pname = "scancode-toolkit"; 61 - version = "30.1.0"; 62 63 disabled = pythonOlder "3.6"; 64 65 src = fetchPypi { 66 inherit pname version; 67 - hash = "sha256-UYQf+cBi2FmyZxIbQJo7vLjPuoePIMC8FugvoG1Ebj0="; 68 }; 69 70 dontConfigure = true; ··· 78 click 79 colorama 80 commoncode 81 debian-inspector 82 - dparse 83 extractcode 84 extractcode-7z 85 extractcode-libarchive ··· 88 ftfy 89 gemfileparser 90 html5lib 91 intbitset 92 jaraco_functools 93 javaproperties ··· 100 packaging 101 parameter-expansion-patched 102 pefile 103 - pkginfo 104 pluggy 105 plugincode 106 publicsuffix2 ··· 118 typecode-libmagic 119 urlpy 120 xmltodict 121 - zipp 122 ] ++ lib.optionals (pythonOlder "3.9") [ 123 - importlib-metadata 124 ] ++ lib.optionals (pythonOlder "3.7") [ 125 typing 126 ];
··· 8 , click 9 , colorama 10 , commoncode 11 + , container-inspector 12 , debian-inspector 13 + , dparse2 14 , extractcode 15 , extractcode-7z 16 , extractcode-libarchive ··· 33 , packaging 34 , parameter-expansion-patched 35 , pefile 36 + , pip-requirements-parser 37 + , pkginfo2 38 , pluggy 39 , plugincode 40 , publicsuffix2 ··· 60 61 buildPythonPackage rec { 62 pname = "scancode-toolkit"; 63 + version = "31.0.0b4"; 64 65 disabled = pythonOlder "3.6"; 66 67 src = fetchPypi { 68 inherit pname version; 69 + hash = "sha256-sPFHaIbbWw/wk3Q1PBDj5O4il9ntigoyanecg938a9A="; 70 }; 71 72 dontConfigure = true; ··· 80 click 81 colorama 82 commoncode 83 + container-inspector 84 debian-inspector 85 + dparse2 86 extractcode 87 extractcode-7z 88 extractcode-libarchive ··· 91 ftfy 92 gemfileparser 93 html5lib 94 + importlib-metadata 95 intbitset 96 jaraco_functools 97 javaproperties ··· 104 packaging 105 parameter-expansion-patched 106 pefile 107 + pip-requirements-parser 108 + pkginfo2 109 pluggy 110 plugincode 111 publicsuffix2 ··· 123 typecode-libmagic 124 urlpy 125 xmltodict 126 ] ++ lib.optionals (pythonOlder "3.9") [ 127 + zipp 128 ] ++ lib.optionals (pythonOlder "3.7") [ 129 typing 130 ];
+2 -2
pkgs/development/python-modules/tubeup/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "tubeup"; 12 - version = "0.0.28"; 13 14 disabled = isPy27; 15 16 src = fetchPypi { 17 inherit pname version; 18 - sha256 = "sha256-+RvDwOHL+zwpM/nOWWS7pZIFEOx+jMrgt3FLYSshANo="; 19 }; 20 21 postPatch = ''
··· 9 10 buildPythonPackage rec { 11 pname = "tubeup"; 12 + version = "0.0.30"; 13 14 disabled = isPy27; 15 16 src = fetchPypi { 17 inherit pname version; 18 + sha256 = "sha256-xN3H3l4ANT7/tXg+oGScvE0Atf6h9CVbODaWybe8a9o="; 19 }; 20 21 postPatch = ''
+5 -2
pkgs/development/python-modules/typecode/default.nix
··· 10 , typecode-libmagic 11 , pytestCheckHook 12 , pytest-xdist 13 }: 14 15 buildPythonPackage rec { 16 pname = "typecode"; 17 - version = "21.6.1"; 18 format = "setuptools"; 19 20 src = fetchPypi { 21 inherit pname version; 22 - sha256 = "d3a82859df5607c900972e08e1bca31e3fe2daed37afd1b8231cad2ef613d8d6"; 23 }; 24 25 dontConfigure = true;
··· 10 , typecode-libmagic 11 , pytestCheckHook 12 , pytest-xdist 13 + , pythonOlder 14 }: 15 16 buildPythonPackage rec { 17 pname = "typecode"; 18 + version = "30.0.0"; 19 format = "setuptools"; 20 21 + disabled = pythonOlder "3.7"; 22 + 23 src = fetchPypi { 24 inherit pname version; 25 + hash = "sha256-pRGLU/xzQQqDZMIsrq1Fy7VgGIpFjnHtpmO+yL7t4g8="; 26 }; 27 28 dontConfigure = true;
+31
pkgs/development/tools/database/sqlc/default.nix
···
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + let 4 + version = "1.13.0"; 5 + in 6 + buildGoModule { 7 + pname = "sqlc"; 8 + inherit version; 9 + 10 + src = fetchFromGitHub { 11 + owner = "kyleconroy"; 12 + repo = "sqlc"; 13 + rev = "v${version}"; 14 + sha256 = "sha256-HPCt47tctVV8Oz9/7AoVMezIAv6wEsaB7B4rgo9/fNU="; 15 + }; 16 + 17 + proxyVendor = true; 18 + vendorSha256 = "sha256-zZ0IrtfQvczoB7th9ZCUlYOtyZr3Y3yF0pKzRCqmCjo="; 19 + 20 + subPackages = [ "cmd/sqlc" ]; 21 + 22 + meta = let 23 + inherit (lib) licenses platforms maintainers; 24 + in { 25 + description = " Generate type-safe code from SQL"; 26 + homepage = "https://sqlc.dev/"; 27 + license = licenses.mit; 28 + platforms = platforms.all; 29 + maintainers = [ maintainers.adisbladis ]; 30 + }; 31 + }
+3 -3
pkgs/development/tools/dprint/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "dprint"; 5 - version = "0.27.0"; 6 7 src = fetchCrate { 8 inherit pname version; 9 - sha256 = "sha256-F/uO4hkVL0PczR59TxCTSOOKnQQQoxvAD8b1p1YdcjY="; 10 }; 11 12 - cargoSha256 = "sha256-B9nVsm/ml2hm+Yr6io4tf4JQsPRCtG7dBJQvF2WwWm0="; 13 14 buildInputs = lib.optionals stdenv.isDarwin [ Security ]; 15
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "dprint"; 5 + version = "0.28.0"; 6 7 src = fetchCrate { 8 inherit pname version; 9 + sha256 = "sha256-MGAkjjP6efdME4SncV18aLOOC4XxWutaYTINSIRCSp0="; 10 }; 11 12 + cargoSha256 = "sha256-k2BrkdLRFmppQcPm2dkbQIOlmIv/jsfwD8S/rsLxm+0="; 13 14 buildInputs = lib.optionals stdenv.isDarwin [ Security ]; 15
+9 -10
pkgs/development/tools/goconst/default.nix
··· 1 - { buildGoPackage 2 - , lib 3 - , fetchFromGitHub 4 - }: 5 6 - buildGoPackage rec { 7 pname = "goconst"; 8 - version = "1.4.0"; 9 - 10 - goPackagePath = "github.com/jgautheron/goconst"; 11 12 excludedPackages = [ "tests" ]; 13 14 src = fetchFromGitHub { 15 owner = "jgautheron"; 16 repo = "goconst"; 17 - rev = version; 18 - sha256 = "0jp9vg5l4wcvnf653h3d8ay2n7y717l9z34rls1vrsaf0qdf1r6v"; 19 }; 20 21 meta = with lib; { 22 description = "Find in Go repeated strings that could be replaced by a constant";
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 3 + buildGoModule rec { 4 pname = "goconst"; 5 + version = "1.5.1"; 6 7 excludedPackages = [ "tests" ]; 8 9 src = fetchFromGitHub { 10 owner = "jgautheron"; 11 repo = "goconst"; 12 + rev = "v${version}"; 13 + sha256 = "sha256-chBWxOy9V4pO3hMaeCoKwnQxIEYiSejUOD3QDBCpaoE="; 14 }; 15 + 16 + vendorSha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo="; 17 + 18 + ldflags = [ "-s" "-w" ]; 19 20 meta = with lib; { 21 description = "Find in Go repeated strings that could be replaced by a constant";
+107 -24
pkgs/development/tools/misc/hydra/common.nix pkgs/development/tools/misc/hydra/unstable.nix
··· 1 - { stdenv, nix, perlPackages, buildEnv 2 - , makeWrapper, autoconf, automake, libtool, unzip, pkg-config, sqlite, libpqxx_6 3 - , top-git, mercurial, darcs, subversion, breezy, openssl, bzip2, libxslt 4 - , perl, postgresql, nukeReferences, git, boehmgc, nlohmann_json 5 - , docbook_xsl, openssh, gnused, coreutils, findutils, gzip, xz, gnutar 6 - , rpm, dpkg, cdrkit, pixz, lib, boost, autoreconfHook, src ? null, version ? null 7 - , migration ? false, patches ? [] 8 - , tests ? {}, mdbook 9 , foreman 10 , python3 11 , libressl 12 , cacert 13 , glibcLocales 14 }: 15 16 - with stdenv; 17 - 18 - if lib.versions.major nix.version == "1" 19 - then throw "This Hydra version doesn't support Nix 1.x" 20 - else 21 - 22 let 23 perlDeps = buildEnv { 24 name = "hydra-perl-deps"; 25 paths = with perlPackages; lib.closePropagation 26 - [ ModulePluggable 27 AuthenSASL 28 CatalystActionREST 29 CatalystAuthenticationStoreDBIxClass ··· 92 git 93 ]; 94 }; 95 - in stdenv.mkDerivation rec { 96 pname = "hydra"; 97 98 - inherit stdenv src version patches; 99 100 buildInputs = 101 - [ makeWrapper libtool unzip nukeReferences sqlite libpqxx_6 102 - top-git mercurial darcs subversion breezy openssl bzip2 libxslt 103 - perlDeps perl nix 104 postgresql # for running the tests 105 nlohmann_json 106 boost ··· 108 ]; 109 110 hydraPath = lib.makeBinPath ( 111 - [ sqlite subversion openssh nix coreutils findutils pixz 112 - gzip bzip2 xz gnutar unzip git top-git mercurial /*darcs*/ gnused breezy 113 - ] ++ lib.optionals stdenv.isLinux [ rpm dpkg cdrkit ] ); 114 115 nativeBuildInputs = [ autoreconfHook pkg-config mdbook autoconf automake ]; 116 ··· 120 glibcLocales 121 python3 122 libressl.nc 123 ]; 124 125 configureFlags = [ "--with-docbook-xsl=${docbook_xsl}/xml/xsl/docbook" ]; ··· 158 159 doCheck = true; 160 161 - passthru = { inherit perlDeps migration tests; }; 162 163 meta = with lib; { 164 description = "Nix-based continuous build system";
··· 1 + { stdenv 2 + , lib 3 + , nix 4 + , perlPackages 5 + , buildEnv 6 + , makeWrapper 7 + , autoconf 8 + , automake 9 + , libtool 10 + , unzip 11 + , pkg-config 12 + , sqlite 13 + , libpqxx_6 14 + , top-git 15 + , mercurial 16 + , darcs 17 + , subversion 18 + , breezy 19 + , openssl 20 + , bzip2 21 + , libxslt 22 + , perl 23 + , postgresql 24 + , nukeReferences 25 + , git 26 + , boehmgc 27 + , nlohmann_json 28 + , docbook_xsl 29 + , openssh 30 + , gnused 31 + , coreutils 32 + , findutils 33 + , gzip 34 + , xz 35 + , gnutar 36 + , rpm 37 + , dpkg 38 + , cdrkit 39 + , pixz 40 + , boost 41 + , autoreconfHook 42 + , mdbook 43 , foreman 44 , python3 45 , libressl 46 , cacert 47 , glibcLocales 48 + , fetchFromGitHub 49 + , fetchpatch 50 + , nixosTests 51 }: 52 53 let 54 perlDeps = buildEnv { 55 name = "hydra-perl-deps"; 56 paths = with perlPackages; lib.closePropagation 57 + [ 58 + ModulePluggable 59 AuthenSASL 60 CatalystActionREST 61 CatalystAuthenticationStoreDBIxClass ··· 124 git 125 ]; 126 }; 127 + in 128 + stdenv.mkDerivation rec { 129 pname = "hydra"; 130 + version = "2022-02-07"; 131 132 + src = fetchFromGitHub { 133 + owner = "NixOS"; 134 + repo = "hydra"; 135 + rev = "517dce285a851efd732affc084c7083aed2e98cd"; 136 + sha256 = "sha256-abWhd/VLNse3Gz7gcVbFANJLAhHV4nbOKjhVDmq/Zmg="; 137 + }; 138 139 buildInputs = 140 + [ 141 + makeWrapper 142 + libtool 143 + unzip 144 + nukeReferences 145 + sqlite 146 + libpqxx_6 147 + top-git 148 + mercurial 149 + darcs 150 + subversion 151 + breezy 152 + openssl 153 + bzip2 154 + libxslt 155 + perlDeps 156 + perl 157 + nix 158 postgresql # for running the tests 159 nlohmann_json 160 boost ··· 162 ]; 163 164 hydraPath = lib.makeBinPath ( 165 + [ 166 + sqlite 167 + subversion 168 + openssh 169 + nix 170 + coreutils 171 + findutils 172 + pixz 173 + gzip 174 + bzip2 175 + xz 176 + gnutar 177 + unzip 178 + git 179 + top-git 180 + mercurial /*darcs*/ 181 + gnused 182 + breezy 183 + ] ++ lib.optionals stdenv.isLinux [ rpm dpkg cdrkit ] 184 + ); 185 186 nativeBuildInputs = [ autoreconfHook pkg-config mdbook autoconf automake ]; 187 ··· 191 glibcLocales 192 python3 193 libressl.nc 194 + ]; 195 + 196 + patches = [ 197 + ./eval.patch 198 + ./missing-std-string.patch 199 + (fetchpatch { 200 + url = "https://github.com/NixOS/hydra/commit/5ae26aa7604f714dcc73edcb74fe71ddc8957f6c.patch"; 201 + sha256 = "sha256-wkbWo8SFbT3qwVxwkKQWpQT5Jgb1Bb51yiLTlFdDN/I="; 202 + }) 203 ]; 204 205 configureFlags = [ "--with-docbook-xsl=${docbook_xsl}/xml/xsl/docbook" ]; ··· 238 239 doCheck = true; 240 241 + passthru = { 242 + inherit perlDeps; 243 + tests.basic = nixosTests.hydra.hydra_unstable; 244 + }; 245 246 meta = with lib; { 247 description = "Nix-based continuous build system";
-26
pkgs/development/tools/misc/hydra/default.nix
··· 1 - { lib, fetchFromGitHub, callPackage, nixVersions, nixosTests, fetchpatch }: 2 - 3 - { 4 - hydra-unstable = callPackage ./common.nix { 5 - version = "2022-02-07"; 6 - src = fetchFromGitHub { 7 - owner = "NixOS"; 8 - repo = "hydra"; 9 - rev = "517dce285a851efd732affc084c7083aed2e98cd"; 10 - sha256 = "sha256-abWhd/VLNse3Gz7gcVbFANJLAhHV4nbOKjhVDmq/Zmg="; 11 - }; 12 - patches = [ 13 - ./eval.patch 14 - ./missing-std-string.patch 15 - (fetchpatch { 16 - url = "https://github.com/NixOS/hydra/commit/5ae26aa7604f714dcc73edcb74fe71ddc8957f6c.patch"; 17 - sha256 = "sha256-wkbWo8SFbT3qwVxwkKQWpQT5Jgb1Bb51yiLTlFdDN/I="; 18 - }) 19 - ]; 20 - nix = nixVersions.nix_2_6; 21 - 22 - tests = { 23 - basic = nixosTests.hydra.hydra-unstable; 24 - }; 25 - }; 26 - }
···
+1 -1
pkgs/development/tools/poetry2nix/poetry2nix/default.nix
··· 5 }: 6 let 7 # Poetry2nix version 8 - version = "1.28.0"; 9 10 inherit (poetryLib) isCompatible readTOML moduleName; 11
··· 5 }: 6 let 7 # Poetry2nix version 8 + version = "1.29.0"; 9 10 inherit (poetryLib) isCompatible readTOML moduleName; 11
+31 -35
pkgs/development/tools/poetry2nix/poetry2nix/hooks/default.nix
··· 3 , makeSetupHook 4 , wheel 5 , pip 6 }: 7 let 8 callPackage = python.pythonForBuild.pkgs.callPackage; 9 pythonInterpreter = python.pythonForBuild.interpreter; 10 pythonSitePackages = python.sitePackages; 11 in 12 { 13 14 - removePathDependenciesHook = callPackage 15 - ( 16 - {}: 17 - makeSetupHook 18 - { 19 - name = "remove-path-dependencies.sh"; 20 - deps = [ ]; 21 - substitutions = { 22 - inherit pythonInterpreter; 23 - yj = "${buildPackages.yj}/bin/yj"; 24 - pyprojectPatchScript = "${./pyproject-without-special-deps.py}"; 25 - fields = [ "path" ]; 26 - kind = "path"; 27 - }; 28 - } ./remove-special-dependencies.sh 29 - ) 30 - { }; 31 32 - removeGitDependenciesHook = callPackage 33 - ({}: 34 - makeSetupHook 35 - { 36 - name = "remove-git-dependencies.sh"; 37 - deps = [ ]; 38 - substitutions = { 39 - inherit pythonInterpreter; 40 - yj = "${buildPackages.yj}/bin/yj"; 41 - pyprojectPatchScript = "${./pyproject-without-special-deps.py}"; 42 - fields = [ "git" "branch" "rev" "tag" ]; 43 - kind = "git"; 44 - }; 45 - } ./remove-special-dependencies.sh 46 - ) 47 - { }; 48 49 pipBuildHook = callPackage 50 ( ··· 89 } ./wheel-unpack-hook.sh 90 ) 91 { }; 92 - 93 - 94 }
··· 3 , makeSetupHook 4 , wheel 5 , pip 6 + , pkgs 7 }: 8 let 9 callPackage = python.pythonForBuild.pkgs.callPackage; 10 pythonInterpreter = python.pythonForBuild.interpreter; 11 pythonSitePackages = python.sitePackages; 12 + 13 + nonOverlayedPython = pkgs.python3.pythonForBuild.withPackages (ps: [ ps.tomlkit ]); 14 + makeRemoveSpecialDependenciesHook = { fields, kind }: 15 + nonOverlayedPython.pkgs.callPackage 16 + ( 17 + {}: 18 + makeSetupHook 19 + { 20 + name = "remove-path-dependencies.sh"; 21 + deps = [ ]; 22 + substitutions = { 23 + # NOTE: We have to use a non-overlayed Python here because otherwise we run into an infinite recursion 24 + # because building of tomlkit and its dependencies also use these hooks. 25 + pythonPath = nonOverlayedPython.pkgs.makePythonPath [ nonOverlayedPython ]; 26 + pythonInterpreter = nonOverlayedPython.interpreter; 27 + pyprojectPatchScript = "${./pyproject-without-special-deps.py}"; 28 + fields = fields; 29 + kind = kind; 30 + }; 31 + } ./remove-special-dependencies.sh 32 + ) 33 + { }; 34 in 35 { 36 + removePathDependenciesHook = makeRemoveSpecialDependenciesHook { 37 + fields = [ "path" ]; 38 + kind = "path"; 39 + }; 40 41 + removeGitDependenciesHook = makeRemoveSpecialDependenciesHook { 42 + fields = [ "git" "branch" "rev" "tag" ]; 43 + kind = "git"; 44 + }; 45 46 47 pipBuildHook = callPackage 48 ( ··· 87 } ./wheel-unpack-hook.sh 88 ) 89 { }; 90 }
+8 -12
pkgs/development/tools/poetry2nix/poetry2nix/hooks/pyproject-without-special-deps.py
··· 1 #!/usr/bin/env python 2 - # Patch out special dependencies (git and path) from a pyproject.json file 3 4 import argparse 5 - import json 6 import sys 7 8 9 def main(input, output, fields_to_remove): 10 - data = json.load(input) 11 12 try: 13 deps = data["tool"]["poetry"]["dependencies"] ··· 22 if any_removed: 23 dep["version"] = "*" 24 25 - # Set ensure_ascii to False because TOML is valid UTF-8 so text that can't 26 - # be represented in ASCII is perfectly legitimate 27 - # HACK: Setting ensure_asscii to False breaks Python2 for some dependencies (like cachy==0.3.0) 28 - json.dump( 29 - data, output, separators=(",", ":"), ensure_ascii=sys.version_info.major < 3 30 - ) 31 32 33 if __name__ == "__main__": ··· 37 "--input", 38 type=argparse.FileType("r"), 39 default=sys.stdin, 40 - help="Location from which to read input JSON", 41 ) 42 p.add_argument( 43 "-o", 44 "--output", 45 type=argparse.FileType("w"), 46 default=sys.stdout, 47 - help="Location to write output JSON", 48 ) 49 p.add_argument( 50 "-f", 51 "--fields-to-remove", 52 nargs="+", 53 - help="The fields to remove from the dependency's JSON", 54 ) 55 56 args = p.parse_args()
··· 1 #!/usr/bin/env python 2 + # Patch out special dependencies (git and path) from a pyproject.toml file 3 4 import argparse 5 import sys 6 7 + import tomlkit 8 + 9 10 def main(input, output, fields_to_remove): 11 + data = tomlkit.loads(input.read()) 12 13 try: 14 deps = data["tool"]["poetry"]["dependencies"] ··· 23 if any_removed: 24 dep["version"] = "*" 25 26 + output.write(tomlkit.dumps(data)) 27 28 29 if __name__ == "__main__": ··· 33 "--input", 34 type=argparse.FileType("r"), 35 default=sys.stdin, 36 + help="Location from which to read input TOML", 37 ) 38 p.add_argument( 39 "-o", 40 "--output", 41 type=argparse.FileType("w"), 42 default=sys.stdout, 43 + help="Location to write output TOML", 44 ) 45 p.add_argument( 46 "-f", 47 "--fields-to-remove", 48 nargs="+", 49 + help="The fields to remove from the dependency's TOML", 50 ) 51 52 args = p.parse_args()
+10 -7
pkgs/development/tools/poetry2nix/poetry2nix/hooks/remove-special-dependencies.sh
··· 1 remove-@kind@-dependencies-hook() { 2 if ! test -f pyproject.toml; then 3 return 4 fi 5 6 echo "Removing @kind@ dependencies" 7 8 - # Tell poetry not to resolve special dependencies. Any version is fine! 9 - @yj@ -tj < pyproject.toml | \ 10 - @pythonInterpreter@ \ 11 - @pyprojectPatchScript@ \ 12 - --fields-to-remove @fields@ > pyproject.json 13 - @yj@ -jt < pyproject.json > pyproject.toml 14 15 - rm pyproject.json 16 17 echo "Finished removing @kind@ dependencies" 18 }
··· 1 remove-@kind@-dependencies-hook() { 2 + # Tell poetry not to resolve special dependencies. Any version is fine! 3 + 4 if ! test -f pyproject.toml; then 5 return 6 fi 7 8 echo "Removing @kind@ dependencies" 9 10 + # NOTE: We have to reset PYTHONPATH to avoid having propagatedBuildInputs 11 + # from the currently building derivation leaking into our unrelated Python 12 + # environment. 13 + PYTHONPATH=@pythonPath@ \ 14 + @pythonInterpreter@ \ 15 + @pyprojectPatchScript@ \ 16 + --fields-to-remove @fields@ < pyproject.toml > pyproject.formatted.toml 17 18 + mv pyproject.formatted.toml pyproject.toml 19 20 echo "Finished removing @kind@ dependencies" 21 }
+63
pkgs/development/tools/poetry2nix/poetry2nix/overrides/build-systems.json
··· 50 "aiokafka": [ 51 "cython" 52 ], 53 "aiomultiprocess": [ 54 "flit-core" 55 ], ··· 229 "flit-core", 230 "flitBuildHook" 231 ], 232 "cpyparsing": [ 233 "cython" 234 ], ··· 239 "cython", 240 "poetry-core" 241 ], 242 "cssselect2": [ 243 "flit", 244 "flit-core" ··· 350 "enumatch": [ 351 "poetry" 352 ], 353 "exceptiongroup": [ 354 "flit-core", 355 "flitBuildHook" ··· 364 "poetry" 365 ], 366 "fastavro": [ 367 "cython" 368 ], 369 "fastdtw": [ ··· 429 "gensim": [ 430 "cython" 431 ], 432 "glances-api": [ 433 "poetry-core" 434 ], ··· 479 ], 480 "hashids": [ 481 "flit-core" 482 ], 483 "hdate": [ 484 "poetry-core" ··· 711 "monosat": [ 712 "cython" 713 ], 714 "motioneye-client": [ 715 "poetry-core" 716 ], ··· 720 "msgpack-numpy": [ 721 "cython" 722 ], 723 "msoffcrypto-tool": [ 724 "poetry-core" 725 ], ··· 734 ], 735 "mypy-boto3-builder": [ 736 "poetry-core" 737 ], 738 "nats-python": [ 739 "poetry-core" ··· 807 "openstacksdk": [ 808 "pbr" 809 ], 810 "openvino": [ 811 "cython" 812 ], ··· 889 "pixelmatch": [ 890 "poetry-core" 891 ], 892 "poetry": [ 893 "poetry-core" 894 ], ··· 924 ], 925 "prometheus-fastapi-instrumentator": [ 926 "poetry" 927 ], 928 "ptyprocess": [ 929 "flit-core" ··· 1234 "python-swiftclient": [ 1235 "pbr" 1236 ], 1237 "python_openzwave": [ 1238 "cython" 1239 ], ··· 1275 ], 1276 "qiskit-terra": [ 1277 "cython" 1278 ], 1279 "questionary": [ 1280 "poetry-core" ··· 1330 "rich": [ 1331 "poetry-core" 1332 ], 1333 "ripser": [ 1334 "cython" 1335 ], ··· 1366 ], 1367 "sarif-om": [ 1368 "pbr" 1369 ], 1370 "scikit-bio": [ 1371 "cython" ··· 1429 ], 1430 "single-version": [ 1431 "poetry-core" 1432 ], 1433 "slowapi": [ 1434 "poetry-core" ··· 1602 "toggl-cli": [ 1603 "pbr" 1604 ], 1605 "toml-sort": [ 1606 "poetry" 1607 ], ··· 1619 ], 1620 "traceback2": [ 1621 "pbr" 1622 ], 1623 "transmission-rpc": [ 1624 "poetry-core"
··· 50 "aiokafka": [ 51 "cython" 52 ], 53 + "aiolimiter": [ 54 + "poetry-core" 55 + ], 56 "aiomultiprocess": [ 57 "flit-core" 58 ], ··· 232 "flit-core", 233 "flitBuildHook" 234 ], 235 + "copier": [ 236 + "poetry-core" 237 + ], 238 "cpyparsing": [ 239 "cython" 240 ], ··· 245 "cython", 246 "poetry-core" 247 ], 248 + "cruft": [ 249 + "poetry-core" 250 + ], 251 "cssselect2": [ 252 "flit", 253 "flit-core" ··· 359 "enumatch": [ 360 "poetry" 361 ], 362 + "envs": [ 363 + "poetry-core" 364 + ], 365 "exceptiongroup": [ 366 "flit-core", 367 "flitBuildHook" ··· 376 "poetry" 377 ], 378 "fastavro": [ 379 + "cython" 380 + ], 381 + "fastbencode": [ 382 "cython" 383 ], 384 "fastdtw": [ ··· 444 "gensim": [ 445 "cython" 446 ], 447 + "gidgethub": [ 448 + "flitBuildHook" 449 + ], 450 "glances-api": [ 451 "poetry-core" 452 ], ··· 497 ], 498 "hashids": [ 499 "flit-core" 500 + ], 501 + "hatch-vcs": [ 502 + "hatchling" 503 ], 504 "hdate": [ 505 "poetry-core" ··· 732 "monosat": [ 733 "cython" 734 ], 735 + "more-itertools": [ 736 + "flit-core" 737 + ], 738 "motioneye-client": [ 739 "poetry-core" 740 ], ··· 744 "msgpack-numpy": [ 745 "cython" 746 ], 747 + "msgpack-types": [ 748 + "poetry" 749 + ], 750 "msoffcrypto-tool": [ 751 "poetry-core" 752 ], ··· 761 ], 762 "mypy-boto3-builder": [ 763 "poetry-core" 764 + ], 765 + "myst-parser": [ 766 + "flit-core" 767 ], 768 "nats-python": [ 769 "poetry-core" ··· 837 "openstacksdk": [ 838 "pbr" 839 ], 840 + "openstep-plist": [ 841 + "cython" 842 + ], 843 "openvino": [ 844 "cython" 845 ], ··· 922 "pixelmatch": [ 923 "poetry-core" 924 ], 925 + "pkgconfig": [ 926 + "poetry-core" 927 + ], 928 "poetry": [ 929 "poetry-core" 930 ], ··· 960 ], 961 "prometheus-fastapi-instrumentator": [ 962 "poetry" 963 + ], 964 + "prospector": [ 965 + "poetry-core" 966 + ], 967 + "protoletariat": [ 968 + "poetry-core" 969 ], 970 "ptyprocess": [ 971 "flit-core" ··· 1276 "python-swiftclient": [ 1277 "pbr" 1278 ], 1279 + "python-trovo": [ 1280 + "poetry" 1281 + ], 1282 "python_openzwave": [ 1283 "cython" 1284 ], ··· 1320 ], 1321 "qiskit-terra": [ 1322 "cython" 1323 + ], 1324 + "qstylizer": [ 1325 + "pbr" 1326 ], 1327 "questionary": [ 1328 "poetry-core" ··· 1378 "rich": [ 1379 "poetry-core" 1380 ], 1381 + "rio-tiler": [ 1382 + "flit-core" 1383 + ], 1384 "ripser": [ 1385 "cython" 1386 ], ··· 1417 ], 1418 "sarif-om": [ 1419 "pbr" 1420 + ], 1421 + "sat-search": [ 1422 + "pytest-runner" 1423 ], 1424 "scikit-bio": [ 1425 "cython" ··· 1483 ], 1484 "single-version": [ 1485 "poetry-core" 1486 + ], 1487 + "skia-pathops": [ 1488 + "cython" 1489 ], 1490 "slowapi": [ 1491 "poetry-core" ··· 1659 "toggl-cli": [ 1660 "pbr" 1661 ], 1662 + "toml-cli": [ 1663 + "poetry" 1664 + ], 1665 "toml-sort": [ 1666 "poetry" 1667 ], ··· 1679 ], 1680 "traceback2": [ 1681 "pbr" 1682 + ], 1683 + "traitlets": [ 1684 + "flit-core" 1685 ], 1686 "transmission-rpc": [ 1687 "poetry-core"
+74 -107
pkgs/development/tools/poetry2nix/poetry2nix/overrides/default.nix
··· 74 inherit (pkgs) buildPackages; 75 pyBuildPackages = self.python.pythonForBuild.pkgs; 76 77 in 78 79 { ··· 287 "36.0.0" = "sha256-Y6TuW7AryVgSvZ6G8WNoDIvi+0tvx8ZlEYF5qB0jfNk="; 288 "36.0.1" = "sha256-kozYXkqt1Wpqyo9GYCwN08J+zV92ZWFJY/f+rulxmeQ="; 289 "36.0.2" = "1a0ni1a3dbv2dvh6gx2i54z8v5j9m6asqg97kkv7gqb1ivihsbp8"; 290 }.${version} or null; 291 sha256 = getCargoHash super.cryptography.version; 292 scrypto = ··· 517 } 518 ); 519 520 fiona = super.fiona.overridePythonAttrs ( 521 old: { 522 buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.gdal_2 ]; ··· 732 buildInputs = (old.buildInputs or [ ]) ++ [ 733 self.toml 734 ]; 735 } 736 ); 737 ··· 1056 1057 mypy = super.mypy.overridePythonAttrs ( 1058 old: { 1059 # FIXME: Remove patch after upstream has decided the proper solution. 1060 # https://github.com/python/mypy/pull/11143 1061 patches = (old.patches or [ ]) ++ lib.optionals ((lib.strings.versionAtLeast old.version "0.900") && lib.strings.versionOlder old.version "0.940") [ ··· 1069 sha256 = "sha256-waIZ+m3tfvYE4HJ8kL6rN/C4fMjvLEe9UoPbt9mHWIM="; 1070 }) 1071 ]; 1072 - buildInputs = (old.buildInputs or [ ]) ++ [ 1073 - self.types-typed-ast 1074 - ]; 1075 - # Compile mypy with mypyc, which makes mypy about 4 times faster. The compiled 1076 - # version is also the default in the wheels on Pypi that include binaries. 1077 - # is64bit: unfortunately the build would exhaust all possible memory on i686-linux. 1078 - MYPY_USE_MYPYC = stdenv.buildPlatform.is64bit; 1079 - 1080 - # when testing reduce optimisation level to drastically reduce build time 1081 - # (default is 3) 1082 - # MYPYC_OPT_LEVEL = 1; 1083 } 1084 ); 1085 ··· 1566 1567 pyqt5 = 1568 let 1569 - drv = super.pyqt5; 1570 - withConnectivity = drv.passthru.args.withConnectivity or false; 1571 - withMultimedia = drv.passthru.args.withMultimedia or false; 1572 - withWebKit = drv.passthru.args.withWebKit or false; 1573 - withWebSockets = drv.passthru.args.withWebSockets or false; 1574 in 1575 super.pyqt5.overridePythonAttrs ( 1576 old: { 1577 - format = "other"; 1578 - 1579 dontWrapQtApps = true; 1580 - 1581 - nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ 1582 - pkg-config 1583 - pkgs.qt5.qmake 1584 - pkgs.xorg.lndir 1585 - pkgs.qt5.qtbase 1586 - pkgs.qt5.qtsvg 1587 - pkgs.qt5.qtdeclarative 1588 - pkgs.qt5.qtwebchannel 1589 - pkgs.qt5.qt3d 1590 - # self.pyqt5-sip 1591 self.sip 1592 - ] 1593 - ++ lib.optional withConnectivity pkgs.qt5.qtconnectivity 1594 - ++ lib.optional withMultimedia pkgs.qt5.qtmultimedia 1595 - ++ lib.optional withWebKit pkgs.qt5.qtwebkit 1596 - ++ lib.optional withWebSockets pkgs.qt5.qtwebsockets 1597 - ; 1598 1599 - buildInputs = (old.buildInputs or [ ]) ++ [ 1600 - pkgs.dbus 1601 - pkgs.qt5.qtbase 1602 - pkgs.qt5.qtsvg 1603 - pkgs.qt5.qtdeclarative 1604 - self.sip 1605 - ] 1606 - ++ lib.optional withConnectivity pkgs.qt5.qtconnectivity 1607 - ++ lib.optional withWebKit pkgs.qt5.qtwebkit 1608 - ++ lib.optional withWebSockets pkgs.qt5.qtwebsockets 1609 - ; 1610 - 1611 - # Fix dbus mainloop 1612 - patches = pkgs.python3.pkgs.pyqt5.patches or [ ]; 1613 - 1614 - configurePhase = '' 1615 - runHook preConfigure 1616 - 1617 - export PYTHONPATH=$PYTHONPATH:$out/${self.python.sitePackages} 1618 - 1619 - mkdir -p $out/${self.python.sitePackages}/dbus/mainloop 1620 - ${self.python.executable} configure.py -w \ 1621 - --confirm-license \ 1622 - --no-qml-plugin \ 1623 - --bindir=$out/bin \ 1624 - --destdir=$out/${self.python.sitePackages} \ 1625 - --stubsdir=$out/${self.python.sitePackages}/PyQt5 \ 1626 - --sipdir=$out/share/sip/PyQt5 \ 1627 - --designer-plugindir=$out/plugins/designer 1628 - 1629 - runHook postConfigure 1630 - ''; 1631 - 1632 - postInstall = '' 1633 - ln -s ${self.pyqt5-sip}/${self.python.sitePackages}/PyQt5/sip.* $out/${self.python.sitePackages}/PyQt5/ 1634 - for i in $out/bin/*; do 1635 - wrapProgram $i --prefix PYTHONPATH : "$PYTHONPATH" 1636 - done 1637 - 1638 - # Let's make it a namespace package 1639 - cat << EOF > $out/${self.python.sitePackages}/PyQt5/__init__.py 1640 - from pkgutil import extend_path 1641 - __path__ = extend_path(__path__, __name__) 1642 - EOF 1643 - ''; 1644 - 1645 - installCheckPhase = 1646 - let 1647 - modules = [ 1648 - "PyQt5" 1649 - "PyQt5.QtCore" 1650 - "PyQt5.QtQml" 1651 - "PyQt5.QtWidgets" 1652 - "PyQt5.QtGui" 1653 - ] 1654 - ++ lib.optional withWebSockets "PyQt5.QtWebSockets" 1655 - ++ lib.optional withWebKit "PyQt5.QtWebKit" 1656 - ++ lib.optional withMultimedia "PyQt5.QtMultimedia" 1657 - ++ lib.optional withConnectivity "PyQt5.QtConnectivity" 1658 - ; 1659 - imports = lib.concatMapStrings (module: "import ${module};") modules; 1660 - in 1661 - '' 1662 - echo "Checking whether modules can be imported..." 1663 - ${self.python.interpreter} -c "${imports}" 1664 - ''; 1665 - 1666 - doCheck = true; 1667 - 1668 - enableParallelBuilding = true; 1669 } 1670 ); 1671 ··· 1681 old: { 1682 # Fixes https://github.com/pytest-dev/pytest/issues/7891 1683 postPatch = old.postPatch or "" + '' 1684 - sed -i '/\[metadata\]/aversion = ${old.version}' setup.cfg 1685 ''; 1686 } 1687 ); ··· 1757 buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.snappy ]; 1758 } 1759 ); 1760 1761 pythran = super.pythran.overridePythonAttrs (old: { 1762 buildInputs = (old.buildInputs or [ ]) ++ [ self.pytest-runner ]; ··· 1925 shapely = super.shapely.overridePythonAttrs ( 1926 old: { 1927 buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.geos ]; 1928 - inherit (pkgs.python3.pkgs.shapely) patches GEOS_LIBRARY_PATH; 1929 } 1930 ); 1931
··· 74 inherit (pkgs) buildPackages; 75 pyBuildPackages = self.python.pythonForBuild.pkgs; 76 77 + selectQt5 = version: 78 + let 79 + selector = builtins.concatStringsSep "" (lib.take 2 (builtins.splitVersion version)); 80 + in 81 + pkgs."qt${selector}" or pkgs.qt5; 82 + 83 in 84 85 { ··· 293 "36.0.0" = "sha256-Y6TuW7AryVgSvZ6G8WNoDIvi+0tvx8ZlEYF5qB0jfNk="; 294 "36.0.1" = "sha256-kozYXkqt1Wpqyo9GYCwN08J+zV92ZWFJY/f+rulxmeQ="; 295 "36.0.2" = "1a0ni1a3dbv2dvh6gx2i54z8v5j9m6asqg97kkv7gqb1ivihsbp8"; 296 + "37.0.2" = "sha256-qvrxvneoBXjP96AnUPyrtfmCnZo+IriHR5HbtWQ5Gk8="; 297 }.${version} or null; 298 sha256 = getCargoHash super.cryptography.version; 299 scrypto = ··· 524 } 525 ); 526 527 + file-magic = super.file-magic.overridePythonAttrs ( 528 + old: { 529 + postPatch = '' 530 + substituteInPlace magic.py --replace "find_library('magic')" "'${pkgs.file}/lib/libmagic${pkgs.stdenv.hostPlatform.extensions.sharedLibrary}'" 531 + ''; 532 + } 533 + ); 534 + 535 fiona = super.fiona.overridePythonAttrs ( 536 old: { 537 buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.gdal_2 ]; ··· 747 buildInputs = (old.buildInputs or [ ]) ++ [ 748 self.toml 749 ]; 750 + } 751 + ); 752 + 753 + jinja2-ansible-filters = super.jinja2-ansible-filters.overridePythonAttrs ( 754 + old: { 755 + preBuild = (old.preBuild or "") + '' 756 + echo "${old.version}" > VERSION 757 + ''; 758 } 759 ); 760 ··· 1079 1080 mypy = super.mypy.overridePythonAttrs ( 1081 old: { 1082 + buildInputs = (old.buildInputs or [ ]) ++ [ 1083 + self.types-typed-ast 1084 + ]; 1085 + # Compile mypy with mypyc, which makes mypy about 4 times faster. The compiled 1086 + # version is also the default in the wheels on Pypi that include binaries. 1087 + # is64bit: unfortunately the build would exhaust all possible memory on i686-linux. 1088 + MYPY_USE_MYPYC = stdenv.buildPlatform.is64bit; 1089 + 1090 + # when testing reduce optimisation level to drastically reduce build time 1091 + # (default is 3) 1092 + # MYPYC_OPT_LEVEL = 1; 1093 + } // lib.optionalAttrs (old.format != "wheel") { 1094 # FIXME: Remove patch after upstream has decided the proper solution. 1095 # https://github.com/python/mypy/pull/11143 1096 patches = (old.patches or [ ]) ++ lib.optionals ((lib.strings.versionAtLeast old.version "0.900") && lib.strings.versionOlder old.version "0.940") [ ··· 1104 sha256 = "sha256-waIZ+m3tfvYE4HJ8kL6rN/C4fMjvLEe9UoPbt9mHWIM="; 1105 }) 1106 ]; 1107 } 1108 ); 1109 ··· 1590 1591 pyqt5 = 1592 let 1593 + qt5 = selectQt5 super.pyqt5.version; 1594 in 1595 super.pyqt5.overridePythonAttrs ( 1596 old: { 1597 + dontConfigure = true; 1598 dontWrapQtApps = true; 1599 + nativeBuildInputs = old.nativeBuildInputs or [ ] ++ [ 1600 + self.pyqt-builder 1601 self.sip 1602 + qt5.full 1603 + ]; 1604 + } 1605 + ); 1606 1607 + pyqt5-qt5 = 1608 + let 1609 + qt5 = selectQt5 super.pyqt5-qt5.version; 1610 + in 1611 + super.pyqt5-qt5.overridePythonAttrs ( 1612 + old: { 1613 + dontWrapQtApps = true; 1614 + propagatedBuildInputs = old.propagatedBuildInputs or [ ] ++ [ 1615 + qt5.full 1616 + qt5.qtgamepad # As of 2022-05-13 not a port of qt5.full 1617 + pkgs.gtk3 1618 + pkgs.speechd 1619 + pkgs.postgresql 1620 + pkgs.unixODBC 1621 + ]; 1622 } 1623 ); 1624 ··· 1634 old: { 1635 # Fixes https://github.com/pytest-dev/pytest/issues/7891 1636 postPatch = old.postPatch or "" + '' 1637 + # sometimes setup.cfg doesn't exist 1638 + if [ -f setup.cfg ]; then 1639 + sed -i '/\[metadata\]/aversion = ${old.version}' setup.cfg 1640 + fi 1641 ''; 1642 } 1643 ); ··· 1713 buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.snappy ]; 1714 } 1715 ); 1716 + 1717 + python-twitter = super.python-twitter.overridePythonAttrs (old: { 1718 + buildInputs = (old.buildInputs or [ ]) ++ [ self.pytest-runner ]; 1719 + }); 1720 1721 pythran = super.pythran.overridePythonAttrs (old: { 1722 buildInputs = (old.buildInputs or [ ]) ++ [ self.pytest-runner ]; ··· 1885 shapely = super.shapely.overridePythonAttrs ( 1886 old: { 1887 buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.geos ]; 1888 + inherit (pkgs.python3.pkgs.shapely) GEOS_LIBRARY_PATH; 1889 + 1890 + GEOS_LIBC = lib.optionalString (!stdenv.isDarwin) "${stdenv.cc.libc}/lib/libc${stdenv.hostPlatform.extensions.sharedLibrary}.6"; 1891 + 1892 + # Fix library paths 1893 + postPatch = old.postPatch or "" + '' 1894 + ${self.python.pythonForBuild.interpreter} ${./shapely-rewrite.py} shapely/geos.py 1895 + ''; 1896 } 1897 ); 1898
+46
pkgs/development/tools/poetry2nix/poetry2nix/overrides/shapely-rewrite.py
···
··· 1 + """ 2 + Rewrite libc/library path references to Nix store paths 3 + Nixpkgs uses a normal patch for this but we need to be less 4 + sensitive to changes between versions. 5 + """ 6 + from textwrap import dedent 7 + import sys 8 + import ast 9 + import os 10 + 11 + 12 + with open(sys.argv[1]) as f: 13 + mod = ast.parse(f.read(), "geos.py") 14 + 15 + 16 + class LibTransformer(ast.NodeTransformer): 17 + _lgeos_replaced = False 18 + 19 + def visit_If(self, node): 20 + if ast.unparse(node).startswith("if sys.platform.startswith('linux')"): 21 + return ast.parse( 22 + dedent( 23 + """ 24 + free = CDLL(%s).free 25 + free.argtypes = [c_void_p] 26 + free.restype = None 27 + """ 28 + ) 29 + % (lambda x: "'" + x + "'" if x else None)(os.environ.get("GEOS_LIBC")) 30 + ) 31 + return node 32 + 33 + def visit_Assign(self, node): 34 + _target = node.targets[0] 35 + if ( 36 + not self._lgeos_replaced 37 + and isinstance(_target, ast.Name) 38 + and _target.id == "_lgeos" 39 + ): 40 + self._lgeos_replaced = True 41 + return ast.parse("_lgeos = CDLL('%s')" % os.environ["GEOS_LIBRARY_PATH"]) 42 + return node 43 + 44 + 45 + with open(sys.argv[1], "w") as f: 46 + f.write(ast.unparse(LibTransformer().visit(mod)))
+3 -1
pkgs/development/tools/poetry2nix/poetry2nix/pep425.nix
··· 23 let 24 entries' = splitString "-" str; 25 # Hack: Remove version "suffixes" like 2.11.4-1 26 - entries = builtins.filter (x: builtins.match "[0-9]" x == null) entries'; 27 p = removeSuffix ".whl" (builtins.elemAt entries 4); 28 in 29 {
··· 23 let 24 entries' = splitString "-" str; 25 # Hack: Remove version "suffixes" like 2.11.4-1 26 + # Some wheels have build tag with more than one digit 27 + # like openvino-2022.1.0-7019-cp36-cp36m-manylinux_2_27_x86_64.whl 28 + entries = builtins.filter (x: builtins.match "[0-9]*" x == null) entries'; 29 p = removeSuffix ".whl" (builtins.elemAt entries 4); 30 in 31 {
+3 -3
pkgs/tools/audio/spotdl/default.nix
··· 6 7 python3.pkgs.buildPythonApplication rec { 8 pname = "spotdl"; 9 - version = "3.9.5"; 10 11 src = fetchFromGitHub { 12 owner = "spotDL"; 13 repo = "spotify-downloader"; 14 - rev = "v${version}"; 15 - hash = "sha256-Zdm+OVcFgOO8kbJDNQSVDLnIHzhvm9EPbcG95mNrnTk="; 16 }; 17 18 propagatedBuildInputs = with python3.pkgs; [
··· 6 7 python3.pkgs.buildPythonApplication rec { 8 pname = "spotdl"; 9 + version = "3.9.6"; 10 11 src = fetchFromGitHub { 12 owner = "spotDL"; 13 repo = "spotify-downloader"; 14 + rev = "refs/tags/v${version}"; 15 + hash = "sha256-JoeNVMuEslz7A7G4ZvikimZrG75YrH5Mx3Oamtfy4cM="; 16 }; 17 18 propagatedBuildInputs = with python3.pkgs; [
+2 -2
pkgs/tools/networking/cadaver/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchpatch, neon, pkg-config, readline, zlib}: 2 3 stdenv.mkDerivation rec { 4 pname = "cadaver"; ··· 23 configureFlags = [ "--with-ssl" "--with-readline" ]; 24 25 nativeBuildInputs = [ pkg-config ]; 26 - buildInputs = [ neon readline zlib ]; 27 28 meta = with lib; { 29 description = "A command-line WebDAV client";
··· 1 + { lib, stdenv, fetchurl, fetchpatch, neon, pkg-config, readline, zlib, openssl }: 2 3 stdenv.mkDerivation rec { 4 pname = "cadaver"; ··· 23 configureFlags = [ "--with-ssl" "--with-readline" ]; 24 25 nativeBuildInputs = [ pkg-config ]; 26 + buildInputs = [ neon readline zlib openssl ]; 27 28 meta = with lib; { 29 description = "A command-line WebDAV client";
+25
pkgs/tools/security/bao/default.nix
···
··· 1 + { lib 2 + , fetchCrate 3 + , fetchpatch 4 + , rustPlatform 5 + }: 6 + 7 + rustPlatform.buildRustPackage rec { 8 + pname = "bao"; 9 + version = "0.12.0"; 10 + 11 + src = fetchCrate { 12 + inherit version; 13 + pname = "${pname}_bin"; 14 + sha256 = "SkplBzor7Fv2+6K8wcTtZwjR66RfLPA/YNNUUHniWpM="; 15 + }; 16 + 17 + cargoSha256 = "yr4HvtOWnU2dFTBgSsbVcuDELe1o1SEtZ7rN/ctKAdI="; 18 + 19 + meta = { 20 + description = "An implementation of BLAKE3 verified streaming"; 21 + homepage = "https://github.com/oconnor663/bao"; 22 + maintainers = with lib.maintainers; [ amarshall ]; 23 + license = with lib.licenses; [ cc0 asl20 ]; 24 + }; 25 + }
+48
pkgs/tools/security/cliam/default.nix
···
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + , installShellFiles 5 + }: 6 + 7 + buildGoModule rec { 8 + pname = "cliam"; 9 + version = "1.0.0"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "securisec"; 13 + repo = pname; 14 + rev = version; 15 + hash = "sha256-bq7u6pknokyY4WwO1qMYPuY86UZlDgeYEa1AJpk8d+4="; 16 + }; 17 + 18 + vendorSha256 = "sha256-aGBA97EvIUv9myqcrtltiVxh1/0VtrQy2j9GU6r197g="; 19 + 20 + nativeBuildInputs = [ 21 + installShellFiles 22 + ]; 23 + 24 + ldflags = [ 25 + "-s" 26 + "-w" 27 + "-X github.com/securisec/cliam/cli/version.Version=${version}" 28 + ]; 29 + 30 + postBuild = '' 31 + # should be called cliam 32 + mv $GOPATH/bin/{cli,cliam} 33 + ''; 34 + 35 + postInstall = '' 36 + installShellCompletion --cmd cliam \ 37 + --bash <($out/bin/cliam completion bash) \ 38 + --fish <($out/bin/cliam completion fish) \ 39 + --zsh <($out/bin/cliam completion zsh) 40 + ''; 41 + 42 + meta = with lib; { 43 + description = "Cloud agnostic IAM permissions enumerator"; 44 + homepage = "https://github.com/securisec/cliam"; 45 + license = licenses.gpl3Only; 46 + maintainers = with maintainers; [ fab ]; 47 + }; 48 + }
+31
pkgs/tools/security/evtx/default.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , rustPlatform 5 + }: 6 + 7 + rustPlatform.buildRustPackage rec { 8 + pname = "evtx"; 9 + version = "0.7.2"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "omerbenamram"; 13 + repo = pname; 14 + rev = "v${version}"; 15 + hash = "sha256-T165PZhjuX5tUENZoO6x1u2MpMQTfv9dGRmxyNY2ACg="; 16 + }; 17 + 18 + cargoSha256 = "sha256-qcjJoXB0DV1Z5bhGrtyJzfWqE+tVWBOYMJEd+MWFcD8="; 19 + 20 + postPatch = '' 21 + # CLI tests will fail in the sandbox 22 + rm tests/test_cli_interactive.rs 23 + ''; 24 + 25 + meta = with lib; { 26 + description = "Parser for the Windows XML Event Log (EVTX) format"; 27 + homepage = "https://github.com/omerbenamram/evtx"; 28 + license = with licenses; [ asl20 /* or */ mit ]; 29 + maintainers = with maintainers; [ fab ]; 30 + }; 31 + }
+3 -3
pkgs/tools/security/exploitdb/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "exploitdb"; 5 - version = "2022-04-27"; 6 7 src = fetchFromGitHub { 8 owner = "offensive-security"; 9 repo = pname; 10 - rev = version; 11 - sha256 = "sha256-GYAIbE6Vrq6gBnCkeOSvo6gSJqPOhDh2f8n1b6B/x30="; 12 }; 13 14 nativeBuildInputs = [ makeWrapper ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "exploitdb"; 5 + version = "2022-05-13"; 6 7 src = fetchFromGitHub { 8 owner = "offensive-security"; 9 repo = pname; 10 + rev = "refs/tags/${version}"; 11 + sha256 = "sha256-hSsVgH6iyfTrHwu/fNc00zhheys8mYYmuDAKJqSWGqo="; 12 }; 13 14 nativeBuildInputs = [ makeWrapper ];
+1 -1
pkgs/tools/security/yubikey-touch-detector/default.nix
··· 21 homepage = "https://github.com/maximbaz/yubikey-touch-detector"; 22 maintainers = with maintainers; [ sumnerevans ]; 23 license = licenses.isc; 24 - platforms = platforms.unix; 25 }; 26 }
··· 21 homepage = "https://github.com/maximbaz/yubikey-touch-detector"; 22 maintainers = with maintainers; [ sumnerevans ]; 23 license = licenses.isc; 24 + platforms = platforms.linux; 25 }; 26 }
+6 -1
pkgs/tools/wayland/kanshi/default.nix
··· 6 , pkg-config 7 , scdoc 8 , wayland 9 }: 10 11 stdenv.mkDerivation rec { ··· 19 sha256 = "sha256-RVMeS2qEjTYK6r7IwMeFSqfRpKR8di2eQXhewfhTnYI="; 20 }; 21 22 - nativeBuildInputs = [ meson ninja pkg-config scdoc ]; 23 buildInputs = [ wayland ]; 24 25 meta = with lib; {
··· 6 , pkg-config 7 , scdoc 8 , wayland 9 + , wayland-scanner 10 }: 11 12 stdenv.mkDerivation rec { ··· 20 sha256 = "sha256-RVMeS2qEjTYK6r7IwMeFSqfRpKR8di2eQXhewfhTnYI="; 21 }; 22 23 + strictDeps = true; 24 + depsBuildBuild = [ 25 + pkg-config 26 + ]; 27 + nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-scanner ]; 28 buildInputs = [ wayland ]; 29 30 meta = with lib; {
+3 -1
pkgs/tools/wayland/oguri/default.nix
··· 8 , gdk-pixbuf 9 , wayland 10 , wayland-protocols 11 }: 12 13 stdenv.mkDerivation rec { ··· 21 sha256 = "sXNvpI/YPDPd2cXQAfRO4ut21gSCXxbo1DpaZmHJDYQ="; 22 }; 23 24 - nativeBuildInputs = [ pkg-config meson ninja ]; 25 buildInputs = [ 26 cairo 27 gdk-pixbuf
··· 8 , gdk-pixbuf 9 , wayland 10 , wayland-protocols 11 + , wayland-scanner 12 }: 13 14 stdenv.mkDerivation rec { ··· 22 sha256 = "sXNvpI/YPDPd2cXQAfRO4ut21gSCXxbo1DpaZmHJDYQ="; 23 }; 24 25 + strictDeps = true; 26 + nativeBuildInputs = [ pkg-config meson ninja wayland-scanner ]; 27 buildInputs = [ 28 cairo 29 gdk-pixbuf
+3
pkgs/tools/wayland/slurp/default.nix
··· 8 , libxkbcommon 9 , wayland 10 , wayland-protocols 11 , buildDocs ? true, scdoc 12 }: 13 ··· 22 sha256 = "sha256-5ZB34rqLyZmfjT/clxNRDmF0qgITFZ5xt/gIEXQzvQE="; 23 }; 24 25 nativeBuildInputs = [ 26 meson 27 ninja 28 pkg-config 29 ] ++ lib.optional buildDocs scdoc; 30 31 buildInputs = [
··· 8 , libxkbcommon 9 , wayland 10 , wayland-protocols 11 + , wayland-scanner 12 , buildDocs ? true, scdoc 13 }: 14 ··· 23 sha256 = "sha256-5ZB34rqLyZmfjT/clxNRDmF0qgITFZ5xt/gIEXQzvQE="; 24 }; 25 26 + strictDeps = true; 27 nativeBuildInputs = [ 28 meson 29 ninja 30 pkg-config 31 + wayland-scanner 32 ] ++ lib.optional buildDocs scdoc; 33 34 buildInputs = [
+1
pkgs/tools/wayland/swaykbdd/default.nix
··· 11 sha256 = "sha256-umYPVkkYeu6TyVkjDsVBsRZLYh8WyseCPdih85kTz6A="; 12 }; 13 14 nativeBuildInputs = [ meson ninja pkg-config ]; 15 buildInputs = [ json_c ]; 16
··· 11 sha256 = "sha256-umYPVkkYeu6TyVkjDsVBsRZLYh8WyseCPdih85kTz6A="; 12 }; 13 14 + strictDeps = true; 15 nativeBuildInputs = [ meson ninja pkg-config ]; 16 buildInputs = [ json_c ]; 17
+3 -2
pkgs/tools/wayland/wayland-proxy-virtwl/default.nix
··· 1 { lib 2 , fetchFromGitHub 3 , ocamlPackages 4 - , buildPackages 5 }: 6 7 ocamlPackages.buildDunePackage rec { ··· 23 useDune2 = true; 24 minimumOCamlVersion = "4.08"; 25 26 nativeBuildInputs = [ 27 - buildPackages.ocamlPackages.ppx_cstruct 28 ]; 29 30 buildInputs = with ocamlPackages; [ ··· 32 cmdliner 33 logs 34 cstruct-lwt 35 ]; 36 37 doCheck = true;
··· 1 { lib 2 , fetchFromGitHub 3 , ocamlPackages 4 }: 5 6 ocamlPackages.buildDunePackage rec { ··· 22 useDune2 = true; 23 minimumOCamlVersion = "4.08"; 24 25 + strictDeps = true; 26 nativeBuildInputs = [ 27 + ocamlPackages.ppx_cstruct 28 ]; 29 30 buildInputs = with ocamlPackages; [ ··· 32 cmdliner 33 logs 34 cstruct-lwt 35 + ppx_cstruct 36 ]; 37 38 doCheck = true;
+1
pkgs/tools/wayland/wayland-utils/default.nix
··· 12 sha256 = "1h38l850ww6hxjb1l8iwa33nkbz8q88bw6lh0aryjyp8b16crzk4"; 13 }; 14 15 depsBuildBuild = [ pkg-config ]; 16 nativeBuildInputs = [ meson pkg-config ninja wayland-scanner ]; 17 buildInputs = [ wayland wayland-protocols ];
··· 12 sha256 = "1h38l850ww6hxjb1l8iwa33nkbz8q88bw6lh0aryjyp8b16crzk4"; 13 }; 14 15 + strictDeps = true; 16 depsBuildBuild = [ pkg-config ]; 17 nativeBuildInputs = [ meson pkg-config ninja wayland-scanner ]; 18 buildInputs = [ wayland wayland-protocols ];
+9 -7
pkgs/tools/wayland/wdomirror/default.nix
··· 6 , pkg-config 7 , wayland 8 , wayland-protocols 9 - , fetchurl 10 }: 11 12 stdenv.mkDerivation { ··· 20 sha256 = "1fz0sajhdjqas3l6mpik8w1k15wbv65hgh9r9vdgfqvw5l6cx7jv"; 21 }; 22 23 - nativeBuildInputs = [ meson ninja pkg-config wayland-protocols ]; 24 - 25 - buildInputs = [ wayland ]; 26 - 27 patches = [ 28 # https://github.com/progandy/wdomirror/pull/7 29 - (fetchurl { 30 url = "https://github.com/progandy/wdomirror/commit/142632208e9ea2b4a4ebd784532efdb8cad7b87c.patch"; 31 - hash = "sha256-z6/8q2vOtmlGFbDVG5BVWWbLQT8kBvJXT9/oZkWS9gw="; 32 }) 33 ]; 34 35 installPhase = '' 36 runHook preInstall
··· 6 , pkg-config 7 , wayland 8 , wayland-protocols 9 + , fetchpatch 10 + , wayland-scanner 11 }: 12 13 stdenv.mkDerivation { ··· 21 sha256 = "1fz0sajhdjqas3l6mpik8w1k15wbv65hgh9r9vdgfqvw5l6cx7jv"; 22 }; 23 24 patches = [ 25 # https://github.com/progandy/wdomirror/pull/7 26 + (fetchpatch { 27 url = "https://github.com/progandy/wdomirror/commit/142632208e9ea2b4a4ebd784532efdb8cad7b87c.patch"; 28 + hash = "sha256-MG71IEwRAjjacAkRoB7Tn45+FbY7LAqTDkVJkoWuQUU="; 29 }) 30 ]; 31 + 32 + strictDeps = true; 33 + nativeBuildInputs = [ meson ninja pkg-config wayland-scanner ]; 34 + 35 + buildInputs = [ wayland wayland-protocols ]; 36 37 installPhase = '' 38 runHook preInstall
+4
pkgs/tools/wayland/wev/default.nix
··· 20 sha256 = "0l71v3fzgiiv6xkk365q1l08qvaymxd4kpaya6r2g8yzkr7i2hms"; 21 }; 22 23 nativeBuildInputs = [ pkg-config scdoc wayland-scanner ]; 24 buildInputs = [ wayland wayland-protocols libxkbcommon ]; 25
··· 20 sha256 = "0l71v3fzgiiv6xkk365q1l08qvaymxd4kpaya6r2g8yzkr7i2hms"; 21 }; 22 23 + # for scdoc 24 + depsBuildBuild = [ 25 + pkg-config 26 + ]; 27 nativeBuildInputs = [ pkg-config scdoc wayland-scanner ]; 28 buildInputs = [ wayland wayland-protocols libxkbcommon ]; 29
+3 -1
pkgs/tools/wayland/wl-clipboard-x11/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, wl-clipboard }: 2 3 stdenv.mkDerivation rec { 4 pname = "wl-clipboard-x11"; ··· 11 hash = "sha256-i+oF1Mu72O5WPTWzqsvo4l2CERWWp4Jq/U0DffPZ8vg="; 12 }; 13 14 makeFlags = [ "PREFIX=${placeholder "out"}" ]; 15 16 postPatch = ''
··· 1 + { lib, stdenv, fetchFromGitHub, wl-clipboard, bash }: 2 3 stdenv.mkDerivation rec { 4 pname = "wl-clipboard-x11"; ··· 11 hash = "sha256-i+oF1Mu72O5WPTWzqsvo4l2CERWWp4Jq/U0DffPZ8vg="; 12 }; 13 14 + strictDeps = true; 15 + buildInputs = [ bash ]; 16 makeFlags = [ "PREFIX=${placeholder "out"}" ]; 17 18 postPatch = ''
+4 -3
pkgs/tools/wayland/wl-clipboard/default.nix
··· 6 , pkg-config 7 , wayland 8 , wayland-protocols 9 }: 10 11 stdenv.mkDerivation rec { ··· 19 sha256 = "0c4w87ipsw09aii34szj9p0xfy0m00wyjpll0gb0aqmwa60p0c5d"; 20 }; 21 22 - nativeBuildInputs = [ meson ninja pkg-config wayland-protocols ]; 23 - buildInputs = [ wayland ]; 24 25 meta = with lib; { 26 homepage = "https://github.com/bugaevc/wl-clipboard"; ··· 30 platforms = platforms.linux; 31 }; 32 } 33 - # TODO: is wayland-protocols a nativeBuildInput or a buildInput?
··· 6 , pkg-config 7 , wayland 8 , wayland-protocols 9 + , wayland-scanner 10 }: 11 12 stdenv.mkDerivation rec { ··· 20 sha256 = "0c4w87ipsw09aii34szj9p0xfy0m00wyjpll0gb0aqmwa60p0c5d"; 21 }; 22 23 + strictDeps = true; 24 + nativeBuildInputs = [ meson ninja pkg-config wayland-scanner ]; 25 + buildInputs = [ wayland wayland-protocols ]; 26 27 meta = with lib; { 28 homepage = "https://github.com/bugaevc/wl-clipboard"; ··· 32 platforms = platforms.linux; 33 }; 34 }
+3
pkgs/tools/wayland/wl-color-picker/default.nix
··· 7 , wl-clipboard 8 , imagemagick 9 , makeWrapper 10 }: 11 12 stdenv.mkDerivation rec { ··· 20 sha256 = "sha256-lvhpXy4Sd1boYNGhbPoZTJlBhlW5obltDOrEzB1Gq0A="; 21 }; 22 23 nativeBuildInputs = [ makeWrapper ]; 24 25 patchPhase = '' 26 substituteInPlace Makefile \
··· 7 , wl-clipboard 8 , imagemagick 9 , makeWrapper 10 + , bash 11 }: 12 13 stdenv.mkDerivation rec { ··· 21 sha256 = "sha256-lvhpXy4Sd1boYNGhbPoZTJlBhlW5obltDOrEzB1Gq0A="; 22 }; 23 24 + strictDeps = true; 25 nativeBuildInputs = [ makeWrapper ]; 26 + buildInputs = [ bash ]; 27 28 patchPhase = '' 29 substituteInPlace Makefile \
+3 -2
pkgs/tools/wayland/wl-gammactl/default.nix
··· 1 { lib, stdenv, fetchFromGitHub 2 , meson, pkg-config, ninja 3 - , wayland, wayland-scanner, wlroots, wlr-protocols, gtk3 4 }: 5 6 stdenv.mkDerivation rec { ··· 14 sha256 = "8iMJK4O/sNIGPOBZQEfK47K6OjT6sxYFe19O2r/VSr8="; 15 }; 16 17 - nativeBuildInputs = [ meson pkg-config ninja ]; 18 buildInputs = [ wayland wlroots gtk3 ]; 19 20 postUnpack = ''
··· 1 { lib, stdenv, fetchFromGitHub 2 , meson, pkg-config, ninja 3 + , wayland, wayland-scanner, wlroots, wlr-protocols, gtk3, glib 4 }: 5 6 stdenv.mkDerivation rec { ··· 14 sha256 = "8iMJK4O/sNIGPOBZQEfK47K6OjT6sxYFe19O2r/VSr8="; 15 }; 16 17 + strictDeps = true; 18 + nativeBuildInputs = [ meson pkg-config ninja glib wayland-scanner ]; 19 buildInputs = [ wayland wlroots gtk3 ]; 20 21 postUnpack = ''
+5 -3
pkgs/tools/wayland/wl-mirror/default.nix
··· 8 , wayland-scanner 9 , wlr-protocols 10 , libGL 11 , installExampleScripts ? true 12 , makeWrapper 13 , pipectl ··· 35 hash = "sha256-D5uUKaepcSW9v2x6uBeLGXAyuLorlt4Lb6lZD/prfp8="; 36 }; 37 38 postPatch = '' 39 echo 'v${version}' > version.txt 40 substituteInPlace CMakeLists.txt \ ··· 49 postInstall = lib.optionalString installExampleScripts '' 50 wrapProgram $out/bin/wl-present --prefix PATH ":" ${wl-present-binpath} 51 ''; 52 - 53 - nativeBuildInputs = [ cmake pkg-config wayland-scanner makeWrapper ]; 54 - buildInputs = [ libGL wayland wayland-protocols wlr-protocols ]; 55 56 meta = with lib; { 57 homepage = "https://github.com/Ferdi265/wl-mirror";
··· 8 , wayland-scanner 9 , wlr-protocols 10 , libGL 11 + , bash 12 , installExampleScripts ? true 13 , makeWrapper 14 , pipectl ··· 36 hash = "sha256-D5uUKaepcSW9v2x6uBeLGXAyuLorlt4Lb6lZD/prfp8="; 37 }; 38 39 + strictDeps = true; 40 + nativeBuildInputs = [ cmake pkg-config wayland-scanner makeWrapper ]; 41 + buildInputs = [ libGL wayland wayland-protocols wlr-protocols bash ]; 42 + 43 postPatch = '' 44 echo 'v${version}' > version.txt 45 substituteInPlace CMakeLists.txt \ ··· 54 postInstall = lib.optionalString installExampleScripts '' 55 wrapProgram $out/bin/wl-present --prefix PATH ":" ${wl-present-binpath} 56 ''; 57 58 meta = with lib; { 59 homepage = "https://github.com/Ferdi265/wl-mirror";
+1
pkgs/tools/wayland/wlr-randr/default.nix
··· 19 sha256 = "sha256-JeSxFXSFxcTwJz9EaLb18wtD4ZIT+ATeYM5OyDTJhDQ="; 20 }; 21 22 nativeBuildInputs = [ meson ninja pkg-config wayland-scanner ]; 23 buildInputs = [ wayland ]; 24
··· 19 sha256 = "sha256-JeSxFXSFxcTwJz9EaLb18wtD4ZIT+ATeYM5OyDTJhDQ="; 20 }; 21 22 + strictDeps = true; 23 nativeBuildInputs = [ meson ninja pkg-config wayland-scanner ]; 24 buildInputs = [ wayland ]; 25
+6 -2
pkgs/tools/wayland/wlrctl/default.nix
··· 1 - { lib, stdenv, fetchFromSourcehut, meson, pkg-config, scdoc, ninja, libxkbcommon, wayland }: 2 3 stdenv.mkDerivation rec { 4 pname = "wlrctl"; ··· 11 sha256 = "039cxc82k7x473n6d65jray90rj35qmfdmr390zy0c7ic7vn4b78"; 12 }; 13 14 - nativeBuildInputs = [ meson pkg-config scdoc ninja ]; 15 buildInputs = [ libxkbcommon wayland ]; 16 17 NIX_CFLAGS_COMPILE = "-Wno-error=type-limits";
··· 1 + { lib, stdenv, fetchFromSourcehut, meson, pkg-config, scdoc, ninja, libxkbcommon, wayland, wayland-scanner }: 2 3 stdenv.mkDerivation rec { 4 pname = "wlrctl"; ··· 11 sha256 = "039cxc82k7x473n6d65jray90rj35qmfdmr390zy0c7ic7vn4b78"; 12 }; 13 14 + strictDeps = true; 15 + depsBuildBuild = [ 16 + pkg-config 17 + ]; 18 + nativeBuildInputs = [ meson pkg-config scdoc ninja wayland-scanner ]; 19 buildInputs = [ libxkbcommon wayland ]; 20 21 NIX_CFLAGS_COMPILE = "-Wno-error=type-limits";
+4
pkgs/tools/wayland/wlsunset/default.nix
··· 14 sha256 = "0hhsddh3rs066rbsjksr8kcwg8lvglbvs67dq0r5wx5c1xcwb51w"; 15 }; 16 17 nativeBuildInputs = [ meson pkg-config ninja wayland-scanner scdoc ]; 18 buildInputs = [ wayland wayland-protocols ]; 19
··· 14 sha256 = "0hhsddh3rs066rbsjksr8kcwg8lvglbvs67dq0r5wx5c1xcwb51w"; 15 }; 16 17 + strictDeps = true; 18 + depsBuildBuild = [ 19 + pkg-config 20 + ]; 21 nativeBuildInputs = [ meson pkg-config ninja wayland-scanner scdoc ]; 22 buildInputs = [ wayland wayland-protocols ]; 23
+4
pkgs/tools/wayland/wob/default.nix
··· 22 sha256 = "sha256-CXRBNnnhNV5LBIasVtmGrRG4ZXFGC7qNInU7Y0QsHbs="; 23 }; 24 25 nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-scanner ]; 26 buildInputs = [ wayland wayland-protocols ] 27 ++ lib.optional stdenv.isLinux libseccomp;
··· 22 sha256 = "sha256-CXRBNnnhNV5LBIasVtmGrRG4ZXFGC7qNInU7Y0QsHbs="; 23 }; 24 25 + strictDeps = true; 26 + depsBuildBuild = [ 27 + pkg-config 28 + ]; 29 nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-scanner ]; 30 buildInputs = [ wayland wayland-protocols ] 31 ++ lib.optional stdenv.isLinux libseccomp;
+1
pkgs/tools/wayland/wshowkeys/default.nix
··· 14 sha256 = "sha256-/HvNCQWsXOJZeCxHWmsLlbBDhBzF7XP/SPLdDiWMDC4="; 15 }; 16 17 nativeBuildInputs = [ meson pkg-config wayland-scanner ninja ]; 18 buildInputs = [ cairo libinput pango wayland wayland-protocols libxkbcommon ]; 19
··· 14 sha256 = "sha256-/HvNCQWsXOJZeCxHWmsLlbBDhBzF7XP/SPLdDiWMDC4="; 15 }; 16 17 + strictDeps = true; 18 nativeBuildInputs = [ meson pkg-config wayland-scanner ninja ]; 19 buildInputs = [ cairo libinput pango wayland wayland-protocols libxkbcommon ]; 20
+1
pkgs/tools/wayland/wtype/default.nix
··· 21 hash = "sha256-TfpzAi0mkXugQn70MISyNFOXIJpDwvgh3enGv0Xq8S4="; 22 }; 23 24 nativeBuildInputs = [ meson ninja pkg-config wayland ]; 25 buildInputs = [ libxkbcommon wayland ]; 26
··· 21 hash = "sha256-TfpzAi0mkXugQn70MISyNFOXIJpDwvgh3enGv0Xq8S4="; 22 }; 23 24 + strictDeps = true; 25 nativeBuildInputs = [ meson ninja pkg-config wayland ]; 26 buildInputs = [ libxkbcommon wayland ]; 27
+1
pkgs/tools/wayland/ydotool/default.nix
··· 11 sha256 = "sha256-maXXGCqB8dkGO8956hsKSwM4HQdYn6z1jBFENQ9sKcA="; 12 }; 13 14 nativeBuildInputs = [ cmake scdoc ]; 15 16 postInstall = ''
··· 11 sha256 = "sha256-maXXGCqB8dkGO8956hsKSwM4HQdYn6z1jBFENQ9sKcA="; 12 }; 13 14 + strictDeps = true; 15 nativeBuildInputs = [ cmake scdoc ]; 16 17 postInstall = ''
+3 -1
pkgs/top-level/aliases.nix
··· 285 dart_old = throw "Non-stable versions of Dart have been removed"; # Added 2020-01-15 286 dart_stable = dart; # Added 2020-01-15 287 dat = nodePackages.dat; 288 dbus_daemon = throw "'dbus_daemon' has been renamed to/replaced by 'dbus.daemon'"; # Converted to throw 2022-02-22 289 dbus_glib = throw "'dbus_glib' has been renamed to/replaced by 'dbus-glib'"; # Converted to throw 2022-02-22 290 dbus_libs = throw "'dbus_libs' has been renamed to/replaced by 'dbus'"; # Converted to throw 2022-02-22 ··· 551 holochain-go = throw "holochain-go was abandoned by upstream"; # Added 2022-01-01 552 htmlTidy = throw "'htmlTidy' has been renamed to/replaced by 'html-tidy'"; # Converted to throw 2022-02-22 553 ht-rust = xh; # Added 2021-02-13 554 - hydra-flakes = throw "hydra-flakes: Flakes support has been merged into Hydra's master. Please use `hydra-unstable` now"; # Added 2020-04-06 555 556 ### I ### 557
··· 285 dart_old = throw "Non-stable versions of Dart have been removed"; # Added 2020-01-15 286 dart_stable = dart; # Added 2020-01-15 287 dat = nodePackages.dat; 288 + dashpay = throw "'dashpay' has been removed because it was unmaintained"; # Added 2022-05-12 289 dbus_daemon = throw "'dbus_daemon' has been renamed to/replaced by 'dbus.daemon'"; # Converted to throw 2022-02-22 290 dbus_glib = throw "'dbus_glib' has been renamed to/replaced by 'dbus-glib'"; # Converted to throw 2022-02-22 291 dbus_libs = throw "'dbus_libs' has been renamed to/replaced by 'dbus'"; # Converted to throw 2022-02-22 ··· 552 holochain-go = throw "holochain-go was abandoned by upstream"; # Added 2022-01-01 553 htmlTidy = throw "'htmlTidy' has been renamed to/replaced by 'html-tidy'"; # Converted to throw 2022-02-22 554 ht-rust = xh; # Added 2021-02-13 555 + hydra-flakes = throw "hydra-flakes: Flakes support has been merged into Hydra's master. Please use `hydra_unstable` now"; # Added 2020-04-06 556 + hydra-unstable = hydra_unstable; # added 2022-05-10 557 558 ### I ### 559
+10 -6
pkgs/top-level/all-packages.nix
··· 986 addlicense = callPackage ../tools/misc/addlicense { }; 987 988 adlplug = callPackage ../applications/audio/adlplug { 989 - inherit (darwin) libobjc; 990 - inherit (darwin.apple_sdk.frameworks) Cocoa CoreServices WebKit DiscRecording; 991 jack = libjack2; 992 }; 993 opnplug = adlplug.override { ··· 2578 inherit (darwin.apple_sdk.frameworks) Security; 2579 }; 2580 2581 bar = callPackage ../tools/system/bar {}; 2582 2583 base16-shell-preview = callPackage ../misc/base16-shell-preview { }; ··· 2965 cli53 = callPackage ../tools/admin/cli53 { }; 2966 2967 cli-visualizer = callPackage ../applications/misc/cli-visualizer { }; 2968 2969 clickclack = callPackage ../tools/misc/clickclack { }; 2970 ··· 5382 5383 evil-winrm = callPackage ../tools/security/evil-winrm { }; 5384 5385 luckybackup = libsForQt5.callPackage ../tools/backup/luckybackup { 5386 ssh = openssh; 5387 }; ··· 16218 16219 spruce = callPackage ../development/tools/misc/spruce {}; 16220 16221 sqlcheck = callPackage ../development/tools/database/sqlcheck { }; 16222 16223 sqlitebrowser = libsForQt5.callPackage ../development/tools/database/sqlitebrowser { }; ··· 17853 17854 hwloc = callPackage ../development/libraries/hwloc {}; 17855 17856 - inherit (callPackage ../development/tools/misc/hydra { }) 17857 - hydra-unstable; 17858 17859 hydra-cli = callPackage ../development/tools/misc/hydra-cli { }; 17860 ··· 31100 charge-lnd = callPackage ../applications/blockchains/charge-lnd { }; 31101 31102 cryptop = python3.pkgs.callPackage ../applications/blockchains/cryptop { }; 31103 - 31104 - dashpay = callPackage ../applications/blockchains/dashpay { }; 31105 31106 dcrd = callPackage ../applications/blockchains/dcrd { }; 31107 dcrwallet = callPackage ../applications/blockchains/dcrwallet { };
··· 986 addlicense = callPackage ../tools/misc/addlicense { }; 987 988 adlplug = callPackage ../applications/audio/adlplug { 989 + inherit (darwin.apple_sdk.frameworks) Foundation Cocoa Carbon CoreServices ApplicationServices CoreAudio CoreMIDI AudioToolbox Accelerate CoreImage IOKit AudioUnit QuartzCore WebKit DiscRecording CoreAudioKit; 990 jack = libjack2; 991 }; 992 opnplug = adlplug.override { ··· 2577 inherit (darwin.apple_sdk.frameworks) Security; 2578 }; 2579 2580 + bao = callPackage ../tools/security/bao {}; 2581 + 2582 bar = callPackage ../tools/system/bar {}; 2583 2584 base16-shell-preview = callPackage ../misc/base16-shell-preview { }; ··· 2966 cli53 = callPackage ../tools/admin/cli53 { }; 2967 2968 cli-visualizer = callPackage ../applications/misc/cli-visualizer { }; 2969 + 2970 + cliam = callPackage ../tools/security/cliam { }; 2971 2972 clickclack = callPackage ../tools/misc/clickclack { }; 2973 ··· 5385 5386 evil-winrm = callPackage ../tools/security/evil-winrm { }; 5387 5388 + evtx = callPackage ../tools/security/evtx { }; 5389 + 5390 luckybackup = libsForQt5.callPackage ../tools/backup/luckybackup { 5391 ssh = openssh; 5392 }; ··· 16223 16224 spruce = callPackage ../development/tools/misc/spruce {}; 16225 16226 + sqlc = callPackage ../development/tools/database/sqlc { }; 16227 + 16228 sqlcheck = callPackage ../development/tools/database/sqlcheck { }; 16229 16230 sqlitebrowser = libsForQt5.callPackage ../development/tools/database/sqlitebrowser { }; ··· 17860 17861 hwloc = callPackage ../development/libraries/hwloc {}; 17862 17863 + hydra_unstable = callPackage ../development/tools/misc/hydra/unstable.nix { nix = nixVersions.nix_2_6; }; 17864 17865 hydra-cli = callPackage ../development/tools/misc/hydra-cli { }; 17866 ··· 31106 charge-lnd = callPackage ../applications/blockchains/charge-lnd { }; 31107 31108 cryptop = python3.pkgs.callPackage ../applications/blockchains/cryptop { }; 31109 31110 dcrd = callPackage ../applications/blockchains/dcrd { }; 31111 dcrwallet = callPackage ../applications/blockchains/dcrwallet { };
+1 -4
pkgs/top-level/coq-packages.nix
··· 1 - { lib, stdenv, fetchzip 2 - , callPackage, newScope, recurseIntoAttrs, ocamlPackages_4_05, ocamlPackages_4_09 3 , ocamlPackages_4_10, ocamlPackages_4_12, fetchpatch, makeWrapper, coq2html 4 }@args: 5 let lib = import ../build-support/coq/extra-lib.nix {inherit (args) lib;}; in ··· 9 inherit coq lib; 10 coqPackages = self; 11 12 - metaFetch = import ../build-support/coq/meta-fetch/default.nix 13 - {inherit lib stdenv fetchzip; }; 14 mkCoqDerivation = callPackage ../build-support/coq {}; 15 16 contribs = recurseIntoAttrs
··· 1 + { lib, stdenv, callPackage, newScope, recurseIntoAttrs, ocamlPackages_4_05, ocamlPackages_4_09 2 , ocamlPackages_4_10, ocamlPackages_4_12, fetchpatch, makeWrapper, coq2html 3 }@args: 4 let lib = import ../build-support/coq/extra-lib.nix {inherit (args) lib;}; in ··· 8 inherit coq lib; 9 coqPackages = self; 10 11 mkCoqDerivation = callPackage ../build-support/coq {}; 12 13 contribs = recurseIntoAttrs
+2 -1
pkgs/top-level/metrics.nix
··· 4 5 runCommand "nixpkgs-metrics" 6 { nativeBuildInputs = with pkgs.lib; map getBin [ nix time jq ]; 7 - requiredSystemFeatures = [ "benchmark" ]; # dedicated `t2a` machine, by @vcunat 8 } 9 '' 10 export NIX_STORE_DIR=$TMPDIR/store
··· 4 5 runCommand "nixpkgs-metrics" 6 { nativeBuildInputs = with pkgs.lib; map getBin [ nix time jq ]; 7 + # see https://github.com/NixOS/nixpkgs/issues/52436 8 + #requiredSystemFeatures = [ "benchmark" ]; # dedicated `t2a` machine, by @vcunat 9 } 10 '' 11 export NIX_STORE_DIR=$TMPDIR/store
+6
pkgs/top-level/perl-packages.nix
··· 24501 url = "mirror://cpan/authors/id/C/CV/CVLIBRARY/UUID4-Tiny-0.002.tar.gz"; 24502 sha256 = "e7535b31e386d432dec7adde214348389e1d5cf753e7ed07f1ae04c4360840cf"; 24503 }; 24504 meta = { 24505 description = "Cryptographically secure v4 UUIDs for Linux x64"; 24506 license = with lib.licenses; [ artistic1 gpl1Plus ];
··· 24501 url = "mirror://cpan/authors/id/C/CV/CVLIBRARY/UUID4-Tiny-0.002.tar.gz"; 24502 sha256 = "e7535b31e386d432dec7adde214348389e1d5cf753e7ed07f1ae04c4360840cf"; 24503 }; 24504 + postPatch = lib.optionalString (stdenv.isAarch64) '' 24505 + # https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/include/uapi/asm-generic/unistd.h 24506 + # printf SYS_getrandom | gcc -include sys/syscall.h -E - 24507 + substituteInPlace lib/UUID4/Tiny.pm \ 24508 + --replace "syscall( 318" "syscall( 278" 24509 + ''; 24510 meta = { 24511 description = "Cryptographically secure v4 UUIDs for Linux x64"; 24512 license = with lib.licenses; [ artistic1 gpl1Plus ];
+2
pkgs/top-level/python-packages.nix
··· 2773 2774 evohome-async = callPackage ../development/python-modules/evohome-async { }; 2775 2776 ewmh = callPackage ../development/python-modules/ewmh { }; 2777 2778 exdown = callPackage ../development/python-modules/exdown { };
··· 2773 2774 evohome-async = callPackage ../development/python-modules/evohome-async { }; 2775 2776 + evtx = callPackage ../development/python-modules/evtx { }; 2777 + 2778 ewmh = callPackage ../development/python-modules/ewmh { }; 2779 2780 exdown = callPackage ../development/python-modules/exdown { };
+1 -1
pkgs/top-level/release-haskell.nix
··· 4 https://hydra.nixos.org/jobset/nixpkgs/haskell-updates. 5 6 To debug this expression you can use `hydra-eval-jobs` from 7 - `pkgs.hydra-unstable` which prints the jobset description 8 to `stdout`: 9 10 $ hydra-eval-jobs -I . pkgs/top-level/release-haskell.nix
··· 4 https://hydra.nixos.org/jobset/nixpkgs/haskell-updates. 5 6 To debug this expression you can use `hydra-eval-jobs` from 7 + `pkgs.hydra_unstable` which prints the jobset description 8 to `stdout`: 9 10 $ hydra-eval-jobs -I . pkgs/top-level/release-haskell.nix