Merge haskell-updates PR #413046 into staging

+6976 -5722
+1 -1
maintainers/scripts/haskell/regenerate-hackage-packages.sh
··· 1 1 #! /usr/bin/env nix-shell 2 - #! nix-shell -i bash -p coreutils haskellPackages.cabal2nix-unstable git nix nixfmt-rfc-style -I nixpkgs=. 2 + #! nix-shell -i bash -p coreutils haskellPackages.cabal2nix-unstable git nixfmt-rfc-style -I nixpkgs=. 3 3 4 4 set -euo pipefail 5 5
+1 -1
maintainers/scripts/haskell/regenerate-transitive-broken-packages.sh
··· 1 1 #! /usr/bin/env nix-shell 2 - #! nix-shell -i bash -p coreutils jq nix -I nixpkgs=. 2 + #! nix-shell -i bash -p coreutils jq -I nixpkgs=. 3 3 4 4 set -euo pipefail 5 5
+1 -1
maintainers/scripts/haskell/update-hackage.sh
··· 1 1 #! /usr/bin/env nix-shell 2 - #! nix-shell -i bash -p nix curl jq git gnused -I nixpkgs=. 2 + #! nix-shell -i bash -p curl jq git gnused -I nixpkgs=. 3 3 4 4 # See regenerate-hackage-packages.sh for details on the purpose of this script. 5 5
+1 -1
maintainers/scripts/haskell/update-stackage.sh
··· 1 1 #! /usr/bin/env nix-shell 2 - #! nix-shell -i bash -p nix curl jq git gnused gnugrep -I nixpkgs=. 2 + #! nix-shell -i bash -p curl jq git gnused gnugrep -I nixpkgs=. 3 3 # shellcheck shell=bash 4 4 5 5 set -eu -o pipefail
+1 -1
maintainers/scripts/haskell/upload-nixos-package-list-to-hackage.sh
··· 1 1 #! /usr/bin/env nix-shell 2 - #! nix-shell -i bash -p nix curl gnused -I nixpkgs=. 2 + #! nix-shell -i bash -p curl gnused -I nixpkgs=. 3 3 4 4 # On Hackage every package description shows a category "Distributions" which 5 5 # lists a "NixOS" version.
+4 -4
pkgs/data/misc/hackage/pin.json
··· 1 1 { 2 - "commit": "0541f1fcdc25b23b03d1296ea03886da83d12375", 3 - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/0541f1fcdc25b23b03d1296ea03886da83d12375.tar.gz", 4 - "sha256": "04ndjav4zirp0qzf8v3149m92ji092asiiyyrhkc8k4ca8hs8v8q", 5 - "msg": "Update from Hackage at 2025-05-05T12:06:43Z" 2 + "commit": "0b40331fe9f6ba2ce9cf1b8afe0a04aa79d36878", 3 + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/0b40331fe9f6ba2ce9cf1b8afe0a04aa79d36878.tar.gz", 4 + "sha256": "03mjsvybfh8bq5v475pqqs5bs9xdb0pm2qrw9w892q0q0ir5b6na", 5 + "msg": "Update from Hackage at 2025-06-01T18:10:16Z" 6 6 }
+10 -24
pkgs/development/compilers/elm/default.nix
··· 8 8 let 9 9 fetchElmDeps = pkgs.callPackage ./lib/fetchElmDeps.nix { }; 10 10 11 + # Haskell packages that require ghc 9.8 12 + hs98Pkgs = import ./packages/ghc9_8 { inherit pkgs lib; }; 13 + 11 14 # Haskell packages that require ghc 9.6 12 15 hs96Pkgs = import ./packages/ghc9_6 { 13 16 inherit ··· 18 21 fetchElmDeps 19 22 ; 20 23 }; 21 - 22 - # Haskell packages that require ghc 8.10 23 - hs810Pkgs = import ./packages/ghc8_10 { inherit pkgs lib; }; 24 - 25 - # Haskell packages that require ghc 9.4 26 - hs94Pkgs = import ./packages/ghc9_4 { inherit pkgs lib; }; 27 24 28 25 # Patched, originally npm-downloaded, packages 29 26 patchedNodePkgs = import ./packages/node { ··· 37 34 38 35 assembleScope = 39 36 self: basics: 40 - (hs96Pkgs self).elmPkgs 41 - // (hs94Pkgs self).elmPkgs 42 - // (hs810Pkgs self).elmPkgs 43 - // (patchedNodePkgs self) 44 - // basics; 37 + (hs98Pkgs self).elmPkgs // (hs96Pkgs self).elmPkgs // (patchedNodePkgs self) // basics; 45 38 in 46 39 lib.makeScope pkgs.newScope ( 47 40 self: ··· 53 46 /* 54 47 Node/NPM based dependencies can be upgraded using script `packages/generate-node-packages.sh`. 55 48 56 - * Packages which rely on `bin-wrap` will fail by default 57 - and can be patched using `patchBinwrap` function defined in `packages/lib.nix`. 58 - 59 49 * Packages which depend on npm installation of elm can be patched using 60 - `patchNpmElm` function also defined in `packages/lib.nix`. 50 + `patchNpmElm` function defined in `packages/lib.nix`. 61 51 */ 62 - elmLib = 63 - let 64 - hsElmPkgs = (hs810Pkgs self) // (hs96Pkgs self); 65 - in 66 - import ./lib { 67 - inherit lib; 68 - inherit (pkgs) writeScriptBin stdenv; 69 - inherit (self) elm; 70 - }; 52 + elmLib = import ./lib { 53 + inherit lib; 54 + inherit (pkgs) writeScriptBin stdenv; 55 + inherit (self) elm; 56 + }; 71 57 72 58 elm-json = callPackage ./packages/elm-json { }; 73 59
+1 -39
pkgs/development/compilers/elm/lib/default.nix
··· 5 5 elm, 6 6 }: 7 7 let 8 - patchBinwrap = 9 - let 10 - # Patching binwrap by NoOp script 11 - binwrap = writeScriptBin "binwrap" '' 12 - #! ${stdenv.shell} 13 - echo "binwrap called: Returning 0" 14 - return 0 15 - ''; 16 - binwrap-install = writeScriptBin "binwrap-install" '' 17 - #! ${stdenv.shell} 18 - echo "binwrap-install called: Doing nothing" 19 - ''; 20 - in 21 - targets: pkg: 22 - pkg.override (old: { 23 - nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ 24 - binwrap 25 - binwrap-install 26 - ]; 27 - 28 - # Manually install targets 29 - # by symlinking binaries into `node_modules` 30 - postInstall = 31 - let 32 - binFile = module: lib.strings.removeSuffix ("-" + module.version) module.name; 33 - in 34 - (old.postInstall or "") 35 - + '' 36 - ${lib.concatStrings ( 37 - map (module: '' 38 - echo "linking ${binFile module}" 39 - ln -sf ${module}/bin/${binFile module} \ 40 - node_modules/${binFile module}/bin/${binFile module} 41 - '') targets 42 - )} 43 - ''; 44 - }); 45 - 46 8 patchNpmElm = 47 9 pkg: 48 10 pkg.override (old: { ··· 60 22 }); 61 23 in 62 24 { 63 - inherit patchBinwrap patchNpmElm; 25 + inherit patchNpmElm; 64 26 }
-11
pkgs/development/compilers/elm/packages/README.md
··· 12 12 Node dependencies are defined in [node-packages.json](node/node-packages.json). 13 13 [Node2nix](https://github.com/svanderburg/node2nix) is used for generating nix expression 14 14 from this file. Use [generate-node-packages.sh](node/generate-node-packages.sh) for updates of nix expressions. 15 - 16 - ## Binwrap Patch 17 - 18 - Some node packages might use [binwrap](https://github.com/avh4/binwrap) typically for installing 19 - [elmi-to-json](https://github.com/stoeffel/elmi-to-json). Binwrap is not compatible with nix. 20 - To overcome issues with those packages apply [patch-binwrap.nix](../lib/default.nix) which essentially does 2 things. 21 - 22 - 1. It replaces binwrap scripts with noop shell scripts 23 - 2. It uses nix for installing the binaries to expected location in `node_modules` 24 - 25 - Example usage be found in `elm/default.nix`.
-83
pkgs/development/compilers/elm/packages/ghc8_10/default.nix
··· 1 - { pkgs, lib }: 2 - 3 - self: 4 - pkgs.haskell.packages.ghc810.override { 5 - overrides = 6 - self: super: 7 - let 8 - inherit (pkgs.haskell.lib.compose) justStaticExecutables overrideCabal doJailbreak; 9 - elmPkgs = { 10 - elmi-to-json = justStaticExecutables ( 11 - overrideCabal (drv: { 12 - version = "unstable-2021-07-19"; 13 - src = pkgs.fetchgit { 14 - url = "https://github.com/stoeffel/elmi-to-json"; 15 - sha256 = "0vy678k15rzpsn0aly90fb01pxsbqkgf86pa86w0gd94lka8acwl"; 16 - rev = "6a42376ef4b6877e130971faf964578cc096e29b"; 17 - fetchSubmodules = true; 18 - }; 19 - 20 - prePatch = '' 21 - substituteInPlace package.yaml --replace "- -Werror" "" 22 - hpack 23 - ''; 24 - jailbreak = true; 25 - 26 - description = "Tool that reads .elmi files (Elm interface file) generated by the elm compiler"; 27 - homepage = "https://github.com/stoeffel/elmi-to-json"; 28 - license = lib.licenses.bsd3; 29 - maintainers = [ lib.maintainers.turbomack ]; 30 - }) (self.callPackage ./elmi-to-json { }) 31 - ); 32 - 33 - elm-instrument = justStaticExecutables ( 34 - overrideCabal (drv: { 35 - version = "unstable-2020-03-16"; 36 - src = pkgs.fetchgit { 37 - url = "https://github.com/zwilias/elm-instrument"; 38 - sha256 = "167d7l2547zxdj7i60r6vazznd9ichwc0bqckh3vrh46glkz06jv"; 39 - rev = "63e15bb5ec5f812e248e61b6944189fa4a0aee4e"; 40 - fetchSubmodules = true; 41 - }; 42 - patches = [ 43 - # Update code after breaking change in optparse-applicative 44 - # https://github.com/zwilias/elm-instrument/pull/5 45 - (pkgs.fetchpatch { 46 - name = "update-optparse-applicative.patch"; 47 - url = "https://github.com/mdevlamynck/elm-instrument/commit/c548709d4818aeef315528e842eaf4c5b34b59b4.patch"; 48 - sha256 = "0ln7ik09n3r3hk7jmwwm46kz660mvxfa71120rkbbaib2falfhsc"; 49 - }) 50 - ]; 51 - 52 - prePatch = '' 53 - sed "s/desc <-.*/let desc = \"${drv.version}\"/g" Setup.hs --in-place 54 - ''; 55 - jailbreak = true; 56 - # Tests are failing because of missing instances for Eq and Show type classes 57 - doCheck = false; 58 - 59 - description = "Instrument Elm code as a preprocessing step for elm-coverage"; 60 - homepage = "https://github.com/zwilias/elm-instrument"; 61 - license = lib.licenses.bsd3; 62 - maintainers = [ lib.maintainers.turbomack ]; 63 - }) (self.callPackage ./elm-instrument { }) 64 - ); 65 - }; 66 - in 67 - elmPkgs 68 - // { 69 - inherit elmPkgs; 70 - 71 - # We need attoparsec < 0.14 to build elm for now 72 - attoparsec = self.attoparsec_0_13_2_5; 73 - 74 - # aeson 2.0.3.0 does not build with attoparsec_0_13_2_5 75 - aeson = doJailbreak self.aeson_1_5_6_0; 76 - 77 - # elm-instrument needs this 78 - indents = self.callPackage ./indents { }; 79 - 80 - # elm-instrument's tests depend on an old version of elm-format, but we set doCheck to false for other reasons above 81 - elm-format = null; 82 - }; 83 - }
-92
pkgs/development/compilers/elm/packages/ghc8_10/elm-instrument/default.nix
··· 1 - { 2 - mkDerivation, 3 - ansi-terminal, 4 - ansi-wl-pprint, 5 - base, 6 - binary, 7 - bytestring, 8 - Cabal, 9 - cmark, 10 - containers, 11 - directory, 12 - elm-format, 13 - fetchgit, 14 - filepath, 15 - free, 16 - HUnit, 17 - indents, 18 - json, 19 - lib, 20 - mtl, 21 - optparse-applicative, 22 - parsec, 23 - process, 24 - QuickCheck, 25 - quickcheck-io, 26 - split, 27 - tasty, 28 - tasty-golden, 29 - tasty-hunit, 30 - tasty-quickcheck, 31 - text, 32 - }: 33 - mkDerivation { 34 - pname = "elm-instrument"; 35 - version = "0.0.7"; 36 - src = fetchgit { 37 - url = "https://github.com/zwilias/elm-instrument"; 38 - sha256 = "14yfzwsyvgc6rzn19sdmwk2mc1vma9hcljnmjnmlig8mp0271v56"; 39 - rev = "31b527e405a6afdb25bb87ad7bd14f979e65cff7"; 40 - fetchSubmodules = true; 41 - }; 42 - isLibrary = true; 43 - isExecutable = true; 44 - setupHaskellDepends = [ 45 - base 46 - Cabal 47 - directory 48 - filepath 49 - process 50 - ]; 51 - libraryHaskellDepends = [ 52 - ansi-terminal 53 - ansi-wl-pprint 54 - base 55 - binary 56 - bytestring 57 - containers 58 - directory 59 - filepath 60 - free 61 - indents 62 - json 63 - mtl 64 - optparse-applicative 65 - parsec 66 - process 67 - split 68 - text 69 - ]; 70 - executableHaskellDepends = [ base ]; 71 - testHaskellDepends = [ 72 - base 73 - cmark 74 - containers 75 - elm-format 76 - HUnit 77 - mtl 78 - parsec 79 - QuickCheck 80 - quickcheck-io 81 - split 82 - tasty 83 - tasty-golden 84 - tasty-hunit 85 - tasty-quickcheck 86 - text 87 - ]; 88 - homepage = "http://elm-lang.org"; 89 - description = "Instrumentation library for Elm"; 90 - license = lib.licenses.bsd3; 91 - mainProgram = "elm-instrument"; 92 - }
-51
pkgs/development/compilers/elm/packages/ghc8_10/elmi-to-json/default.nix
··· 1 - { 2 - mkDerivation, 3 - aeson, 4 - base, 5 - binary, 6 - bytestring, 7 - containers, 8 - directory, 9 - fetchgit, 10 - filepath, 11 - ghc-prim, 12 - hpack, 13 - lib, 14 - optparse-applicative, 15 - text, 16 - unliftio, 17 - unordered-containers, 18 - }: 19 - mkDerivation { 20 - pname = "elmi-to-json"; 21 - version = "1.3.0"; 22 - src = fetchgit { 23 - url = "https://github.com/stoeffel/elmi-to-json"; 24 - sha256 = "0vy678k15rzpsn0aly90fb01pxsbqkgf86pa86w0gd94lka8acwl"; 25 - rev = "6a42376ef4b6877e130971faf964578cc096e29b"; 26 - fetchSubmodules = true; 27 - }; 28 - isLibrary = true; 29 - isExecutable = true; 30 - libraryHaskellDepends = [ 31 - aeson 32 - base 33 - binary 34 - bytestring 35 - containers 36 - directory 37 - filepath 38 - ghc-prim 39 - optparse-applicative 40 - text 41 - unliftio 42 - unordered-containers 43 - ]; 44 - libraryToolDepends = [ hpack ]; 45 - executableHaskellDepends = [ base ]; 46 - testHaskellDepends = [ base ]; 47 - prePatch = "hpack"; 48 - homepage = "https://github.com/stoeffel/elmi-to-json#readme"; 49 - license = lib.licenses.bsd3; 50 - mainProgram = "elmi-to-json"; 51 - }
-23
pkgs/development/compilers/elm/packages/ghc8_10/indents/default.nix
··· 1 - { 2 - mkDerivation, 3 - base, 4 - concatenative, 5 - lib, 6 - mtl, 7 - parsec, 8 - }: 9 - mkDerivation { 10 - pname = "indents"; 11 - version = "0.3.3"; 12 - sha256 = "b61f51ac894609cb5571cc3ded12db5de97185a8de236c69ec24c87457109f9a"; 13 - libraryHaskellDepends = [ 14 - base 15 - concatenative 16 - mtl 17 - parsec 18 - ]; 19 - doCheck = false; 20 - homepage = "http://patch-tag.com/r/salazar/indents"; 21 - description = "indentation sensitive parser-combinators for parsec"; 22 - license = lib.licenses.bsd3; 23 - }
-53
pkgs/development/compilers/elm/packages/ghc9_4/default.nix
··· 1 - { pkgs, lib }: 2 - 3 - self: 4 - pkgs.haskell.packages.ghc94.override { 5 - overrides = 6 - self: super: 7 - let 8 - inherit (pkgs.haskell.lib.compose) justStaticExecutables overrideCabal doJailbreak; 9 - elmPkgs = { 10 - /* 11 - The elm-format expression is updated via a script in the https://github.com/avh4/elm-format repo: 12 - `package/nix/build.sh` 13 - */ 14 - elm-format = justStaticExecutables ( 15 - overrideCabal (drv: { 16 - jailbreak = true; 17 - doHaddock = false; 18 - postPatch = '' 19 - mkdir -p ./generated 20 - cat <<EOHS > ./generated/Build_elm_format.hs 21 - module Build_elm_format where 22 - gitDescribe :: String 23 - gitDescribe = "${drv.version}" 24 - EOHS 25 - ''; 26 - 27 - description = "Formats Elm source code according to a standard set of rules based on the official Elm Style Guide"; 28 - homepage = "https://github.com/avh4/elm-format"; 29 - license = lib.licenses.bsd3; 30 - maintainers = with lib.maintainers; [ 31 - avh4 32 - turbomack 33 - ]; 34 - }) (self.callPackage ./elm-format/elm-format.nix { }) 35 - ); 36 - }; 37 - 38 - fixHaddock = overrideCabal (_: { 39 - configureFlags = [ "--ghc-option=-Wno-error=unused-packages" ]; 40 - doHaddock = false; 41 - }); 42 - in 43 - elmPkgs 44 - // { 45 - inherit elmPkgs; 46 - 47 - # Needed for elm-format 48 - avh4-lib = fixHaddock (doJailbreak (self.callPackage ./elm-format/avh4-lib.nix { })); 49 - elm-format-lib = fixHaddock (doJailbreak (self.callPackage ./elm-format/elm-format-lib.nix { })); 50 - elm-format-test-lib = fixHaddock (self.callPackage ./elm-format/elm-format-test-lib.nix { }); 51 - elm-format-markdown = fixHaddock (self.callPackage ./elm-format/elm-format-markdown.nix { }); 52 - }; 53 - }
+3 -4
pkgs/development/compilers/elm/packages/ghc9_4/elm-format/avh4-lib.nix pkgs/development/compilers/elm/packages/ghc9_8/elm-format/avh4-lib.nix
··· 13 13 relude, 14 14 tasty, 15 15 tasty-discover, 16 - tasty-hspec, 17 16 tasty-hunit, 18 17 text, 19 18 }: ··· 22 21 version = "0.0.0.1"; 23 22 src = fetchgit { 24 23 url = "https://github.com/avh4/elm-format"; 25 - sha256 = "04l1bn4w8q3ifd6mc4mfrqxfbihmqnpfjdn6gr0x2jqcasjbk0bi"; 26 - rev = "b5cca4c26b473dab06e5d73b98148637e4770d45"; 24 + sha256 = "13i1wgva6p9zsx1a7sfb3skc0rv187isb920chkhljyh48c12k8l"; 25 + rev = "d07fddc8c0eef412dba07be4ab8768d6abcca796"; 27 26 fetchSubmodules = true; 28 27 }; 29 28 postUnpack = "sourceRoot+=/avh4-lib; echo source root reset to $sourceRoot"; ··· 50 49 process 51 50 relude 52 51 tasty 53 - tasty-hspec 54 52 tasty-hunit 55 53 text 56 54 ]; 57 55 testToolDepends = [ tasty-discover ]; 56 + doHaddock = false; 58 57 description = "Common code for haskell projects"; 59 58 license = lib.licenses.bsd3; 60 59 }
+3 -2
pkgs/development/compilers/elm/packages/ghc9_4/elm-format/elm-format-lib.nix pkgs/development/compilers/elm/packages/ghc9_8/elm-format/elm-format-lib.nix
··· 27 27 version = "0.0.0.1"; 28 28 src = fetchgit { 29 29 url = "https://github.com/avh4/elm-format"; 30 - sha256 = "04l1bn4w8q3ifd6mc4mfrqxfbihmqnpfjdn6gr0x2jqcasjbk0bi"; 31 - rev = "b5cca4c26b473dab06e5d73b98148637e4770d45"; 30 + sha256 = "13i1wgva6p9zsx1a7sfb3skc0rv187isb920chkhljyh48c12k8l"; 31 + rev = "d07fddc8c0eef412dba07be4ab8768d6abcca796"; 32 32 fetchSubmodules = true; 33 33 }; 34 34 postUnpack = "sourceRoot+=/elm-format-lib; echo source root reset to $sourceRoot"; ··· 67 67 text 68 68 ]; 69 69 testToolDepends = [ tasty-discover ]; 70 + doHaddock = false; 70 71 description = "Common code used by elm-format and elm-refactor"; 71 72 license = lib.licenses.bsd3; 72 73 }
+3 -2
pkgs/development/compilers/elm/packages/ghc9_4/elm-format/elm-format-markdown.nix pkgs/development/compilers/elm/packages/ghc9_8/elm-format/elm-format-markdown.nix
··· 12 12 version = "0.0.0.1"; 13 13 src = fetchgit { 14 14 url = "https://github.com/avh4/elm-format"; 15 - sha256 = "04l1bn4w8q3ifd6mc4mfrqxfbihmqnpfjdn6gr0x2jqcasjbk0bi"; 16 - rev = "b5cca4c26b473dab06e5d73b98148637e4770d45"; 15 + sha256 = "13i1wgva6p9zsx1a7sfb3skc0rv187isb920chkhljyh48c12k8l"; 16 + rev = "d07fddc8c0eef412dba07be4ab8768d6abcca796"; 17 17 fetchSubmodules = true; 18 18 }; 19 19 postUnpack = "sourceRoot+=/elm-format-markdown; echo source root reset to $sourceRoot"; ··· 23 23 mtl 24 24 text 25 25 ]; 26 + doHaddock = false; 26 27 description = "Markdown parsing for Elm documentation comments"; 27 28 license = lib.licenses.bsd3; 28 29 }
+3 -2
pkgs/development/compilers/elm/packages/ghc9_4/elm-format/elm-format-test-lib.nix pkgs/development/compilers/elm/packages/ghc9_8/elm-format/elm-format-test-lib.nix
··· 22 22 version = "0.0.0.1"; 23 23 src = fetchgit { 24 24 url = "https://github.com/avh4/elm-format"; 25 - sha256 = "04l1bn4w8q3ifd6mc4mfrqxfbihmqnpfjdn6gr0x2jqcasjbk0bi"; 26 - rev = "b5cca4c26b473dab06e5d73b98148637e4770d45"; 25 + sha256 = "13i1wgva6p9zsx1a7sfb3skc0rv187isb920chkhljyh48c12k8l"; 26 + rev = "d07fddc8c0eef412dba07be4ab8768d6abcca796"; 27 27 fetchSubmodules = true; 28 28 }; 29 29 postUnpack = "sourceRoot+=/elm-format-test-lib; echo source root reset to $sourceRoot"; ··· 56 56 text 57 57 ]; 58 58 testToolDepends = [ tasty-discover ]; 59 + doHaddock = false; 59 60 description = "Test helpers used by elm-format-tests and elm-refactor-tests"; 60 61 license = lib.licenses.bsd3; 61 62 }
+5 -4
pkgs/development/compilers/elm/packages/ghc9_4/elm-format/elm-format.nix pkgs/development/compilers/elm/packages/ghc9_8/elm-format/elm-format.nix
··· 22 22 }: 23 23 mkDerivation { 24 24 pname = "elm-format"; 25 - version = "0.8.7"; 25 + version = "0.8.8"; 26 26 src = fetchgit { 27 27 url = "https://github.com/avh4/elm-format"; 28 - sha256 = "04l1bn4w8q3ifd6mc4mfrqxfbihmqnpfjdn6gr0x2jqcasjbk0bi"; 29 - rev = "b5cca4c26b473dab06e5d73b98148637e4770d45"; 28 + sha256 = "13i1wgva6p9zsx1a7sfb3skc0rv187isb920chkhljyh48c12k8l"; 29 + rev = "d07fddc8c0eef412dba07be4ab8768d6abcca796"; 30 30 fetchSubmodules = true; 31 31 }; 32 32 isLibrary = false; ··· 61 61 tasty-quickcheck 62 62 text 63 63 ]; 64 + doHaddock = false; 64 65 homepage = "https://elm-lang.org"; 65 - description = "Source code formatter for Elm"; 66 + description = "A source code formatter for Elm"; 66 67 license = lib.licenses.bsd3; 67 68 mainProgram = "elm-format"; 68 69 }
+1 -1
pkgs/development/compilers/elm/packages/ghc9_6/ansi-wl-pprint/default.nix
··· 21 21 base 22 22 ]; 23 23 homepage = "http://github.com/ekmett/ansi-wl-pprint"; 24 - description = "Wadler/Leijen Pretty Printer for colored ANSI terminal output"; 24 + description = "The Wadler/Leijen Pretty Printer for colored ANSI terminal output"; 25 25 license = lib.licenses.bsd3; 26 26 }
+1 -1
pkgs/development/compilers/elm/packages/ghc9_6/elm/default.nix
··· 83 83 zip-archive 84 84 ]; 85 85 homepage = "https://elm-lang.org"; 86 - description = "`elm` command line interface"; 86 + description = "The `elm` command line interface"; 87 87 license = lib.licenses.bsd3; 88 88 mainProgram = "elm"; 89 89 }
+43
pkgs/development/compilers/elm/packages/ghc9_8/default.nix
··· 1 + { pkgs, lib }: 2 + 3 + self: 4 + pkgs.haskell.packages.ghc98.override { 5 + overrides = 6 + self: super: 7 + let 8 + inherit (pkgs.haskell.lib.compose) justStaticExecutables overrideCabal; 9 + 10 + elmPkgs = { 11 + # Post-patch override taken from the upstream repository: 12 + # https://github.com/avh4/elm-format/blob/e7e5da37716acbfb4954a88128b5cc72b2c911d9/package/nix/generate_derivation.sh 13 + elm-format = justStaticExecutables ( 14 + overrideCabal (drv: { 15 + postPatch = '' 16 + mkdir -p ./generated 17 + cat <<EOHS > ./generated/Build_elm_format.hs 18 + module Build_elm_format where 19 + gitDescribe :: String 20 + gitDescribe = "${drv.version}" 21 + EOHS 22 + ''; 23 + 24 + homepage = "https://github.com/avh4/elm-format"; 25 + maintainers = with lib.maintainers; [ 26 + avh4 27 + turbomack 28 + ]; 29 + }) (self.callPackage ./elm-format/elm-format.nix { }) 30 + ); 31 + }; 32 + in 33 + elmPkgs 34 + // { 35 + inherit elmPkgs; 36 + 37 + # Needed for elm-format 38 + avh4-lib = self.callPackage ./elm-format/avh4-lib.nix { }; 39 + elm-format-lib = self.callPackage ./elm-format/elm-format-lib.nix { }; 40 + elm-format-test-lib = self.callPackage ./elm-format/elm-format-test-lib.nix { }; 41 + elm-format-markdown = self.callPackage ./elm-format/elm-format-markdown.nix { }; 42 + }; 43 + }
+10 -77
pkgs/development/compilers/elm/packages/node/default.nix
··· 12 12 inherit pkgs nodejs; 13 13 inherit (pkgs.stdenv.hostPlatform) system; 14 14 }; 15 - ESBUILD_BINARY_PATH = lib.getExe ( 16 - pkgs.esbuild.override { 17 - buildGoModule = 18 - args: 19 - pkgs.buildGoModule ( 20 - args 21 - // rec { 22 - version = "0.20.2"; 23 - src = pkgs.fetchFromGitHub { 24 - owner = "evanw"; 25 - repo = "esbuild"; 26 - rev = "v${version}"; 27 - hash = "sha256-h/Vqwax4B4nehRP9TaYbdixAZdb1hx373dNxNHvDrtY="; 28 - }; 29 - vendorHash = "sha256-+BfxCyg0KkDQpHt/wycy/8CTG6YBA/VJvJFhhzUnSiQ="; 30 - } 31 - ); 32 - } 33 - ); 34 15 in 35 16 with self; 36 17 with elmLib; ··· 43 24 elm-git-install 44 25 ; 45 26 46 - elm-verify-examples = 47 - let 48 - patched = patchBinwrap [ elmi-to-json ] nodePkgs.elm-verify-examples // { 49 - meta = 50 - with lib; 51 - nodePkgs.elm-verify-examples.meta 52 - // { 53 - description = "Verify examples in your docs"; 54 - homepage = "https://github.com/stoeffel/elm-verify-examples"; 55 - license = licenses.bsd3; 56 - maintainers = [ maintainers.turbomack ]; 57 - }; 27 + elm-verify-examples = nodePkgs.elm-verify-examples // { 28 + meta = 29 + with lib; 30 + nodePkgs.elm-verify-examples.meta 31 + // { 32 + description = "Verify examples in your docs"; 33 + homepage = "https://github.com/stoeffel/elm-verify-examples"; 34 + license = licenses.bsd3; 35 + maintainers = [ maintainers.turbomack ]; 58 36 }; 59 - in 60 - patched.override (old: { 61 - inherit ESBUILD_BINARY_PATH; 62 - preRebuild = 63 - (old.preRebuild or "") 64 - + '' 65 - # This should not be needed (thanks to binwrap* being nooped) but for some reason it still needs to be done 66 - # in case of just this package 67 - # TODO: investigate, same as for elm-coverage below 68 - sed 's/\"install\".*/\"install\":\"echo no-op\",/g' --in-place node_modules/elmi-to-json/package.json 69 - ''; 70 - }); 71 - 72 - elm-coverage = 73 - let 74 - patched = patchNpmElm (patchBinwrap [ elmi-to-json ] nodePkgs.elm-coverage); 75 - in 76 - patched.override (old: { 77 - # Symlink Elm instrument binary 78 - preRebuild = 79 - (old.preRebuild or "") 80 - + '' 81 - # Noop custom installation script 82 - sed 's/\"install\".*/\"install\":\"echo no-op\"/g' --in-place package.json 83 - 84 - # This should not be needed (thanks to binwrap* being nooped) but for some reason it still needs to be done 85 - # in case of just this package 86 - # TODO: investigate 87 - sed 's/\"install\".*/\"install\":\"echo no-op\",/g' --in-place node_modules/elmi-to-json/package.json 88 - ''; 89 - postInstall = 90 - (old.postInstall or "") 91 - + '' 92 - mkdir -p unpacked_bin 93 - ln -sf ${elm-instrument}/bin/elm-instrument unpacked_bin/elm-instrument 94 - ''; 95 - meta = 96 - with lib; 97 - nodePkgs.elm-coverage.meta 98 - // { 99 - description = "Work in progress - Code coverage tooling for Elm"; 100 - homepage = "https://github.com/zwilias/elm-coverage"; 101 - license = licenses.bsd3; 102 - maintainers = [ maintainers.turbomack ]; 103 - }; 104 - }); 37 + }; 105 38 106 39 create-elm-app = patchNpmElm nodePkgs.create-elm-app // { 107 40 meta =
+2 -6
pkgs/development/compilers/elm/packages/node/elm-pages/default.nix
··· 13 13 pkgs.buildGoModule ( 14 14 args 15 15 // rec { 16 - version = "0.21.5"; 16 + version = "0.25.5"; 17 17 src = pkgs.fetchFromGitHub { 18 18 owner = "evanw"; 19 19 repo = "esbuild"; 20 20 rev = "v${version}"; 21 - hash = "sha256-FpvXWIlt67G8w3pBKZo/mcp57LunxDmRUaCU/Ne89B8="; 21 + hash = "sha256-jemGZkWmN1x2+ZzJ5cLp3MoXO0oDKjtZTmZS9Be/TDw="; 22 22 }; 23 23 vendorHash = "sha256-+BfxCyg0KkDQpHt/wycy/8CTG6YBA/VJvJFhhzUnSiQ="; 24 24 } ··· 32 32 makeWrapper 33 33 old.nodejs.pkgs.node-gyp-build 34 34 ]; 35 - 36 - preRebuild = '' 37 - sed -i 's/"esbuild": "0\.19\.12"/"esbuild": "0.21.5"/' package.json 38 - ''; 39 35 40 36 # can't use `patches = [ <patch_file> ]` with a nodePkgs derivation; 41 37 # need to patch in one of the build phases instead.
-2
pkgs/development/compilers/elm/packages/node/generate-node-packages.sh
··· 10 10 -o node-packages.nix \ 11 11 -c node-composition.nix \ 12 12 --no-copy-node-env -e ../../../../node-packages/node-env.nix 13 - # well, elm-pages requires two different version of esbuild so we twist it's wrist to only use one 14 - sed -i 's/sources."esbuild-0.19.12"/sources."esbuild-0.21.5"/' node-packages.nix
-1
pkgs/development/compilers/elm/packages/node/node-packages.json
··· 1 1 [ 2 2 "elm-analyse", 3 - "elm-coverage", 4 3 "elm-doc-preview", 5 4 "@elm-tooling/elm-language-server", 6 5 "elm-live",
+816 -1621
pkgs/development/compilers/elm/packages/node/node-packages.nix
··· 39 39 sha512 = "OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA=="; 40 40 }; 41 41 }; 42 - "@babel/code-frame-7.26.2" = { 42 + "@babel/code-frame-7.27.1" = { 43 43 name = "_at_babel_slash_code-frame"; 44 44 packageName = "@babel/code-frame"; 45 - version = "7.26.2"; 45 + version = "7.27.1"; 46 46 src = fetchurl { 47 - url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz"; 48 - sha512 = "RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="; 47 + url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz"; 48 + sha512 = "cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg=="; 49 49 }; 50 50 }; 51 - "@babel/compat-data-7.26.8" = { 51 + "@babel/compat-data-7.27.5" = { 52 52 name = "_at_babel_slash_compat-data"; 53 53 packageName = "@babel/compat-data"; 54 - version = "7.26.8"; 54 + version = "7.27.5"; 55 55 src = fetchurl { 56 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.8.tgz"; 57 - sha512 = "oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ=="; 56 + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.27.5.tgz"; 57 + sha512 = "KiRAp/VoJaWkkte84TvUd9qjdbZAdiqyvMxrGl1N6vzFogKmaLgoM3L1kgtLicp2HP5fBJS8JrZKLVIZGVJAVg=="; 58 58 }; 59 59 }; 60 60 "@babel/core-7.12.10" = { ··· 66 66 sha512 = "eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w=="; 67 67 }; 68 68 }; 69 - "@babel/generator-7.26.9" = { 69 + "@babel/generator-7.27.5" = { 70 70 name = "_at_babel_slash_generator"; 71 71 packageName = "@babel/generator"; 72 - version = "7.26.9"; 72 + version = "7.27.5"; 73 73 src = fetchurl { 74 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.26.9.tgz"; 75 - sha512 = "kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg=="; 74 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.27.5.tgz"; 75 + sha512 = "ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw=="; 76 76 }; 77 77 }; 78 - "@babel/helper-annotate-as-pure-7.25.9" = { 78 + "@babel/helper-annotate-as-pure-7.27.3" = { 79 79 name = "_at_babel_slash_helper-annotate-as-pure"; 80 80 packageName = "@babel/helper-annotate-as-pure"; 81 - version = "7.25.9"; 81 + version = "7.27.3"; 82 82 src = fetchurl { 83 - url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz"; 84 - sha512 = "gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g=="; 83 + url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz"; 84 + sha512 = "fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg=="; 85 85 }; 86 86 }; 87 - "@babel/helper-compilation-targets-7.26.5" = { 87 + "@babel/helper-compilation-targets-7.27.2" = { 88 88 name = "_at_babel_slash_helper-compilation-targets"; 89 89 packageName = "@babel/helper-compilation-targets"; 90 - version = "7.26.5"; 90 + version = "7.27.2"; 91 91 src = fetchurl { 92 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz"; 93 - sha512 = "IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA=="; 92 + url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz"; 93 + sha512 = "2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ=="; 94 94 }; 95 95 }; 96 - "@babel/helper-create-class-features-plugin-7.26.9" = { 96 + "@babel/helper-create-class-features-plugin-7.27.1" = { 97 97 name = "_at_babel_slash_helper-create-class-features-plugin"; 98 98 packageName = "@babel/helper-create-class-features-plugin"; 99 - version = "7.26.9"; 99 + version = "7.27.1"; 100 100 src = fetchurl { 101 - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.26.9.tgz"; 102 - sha512 = "ubbUqCofvxPRurw5L8WTsCLSkQiVpov4Qx0WMA+jUN+nXBK8ADPlJO1grkFw5CWKC5+sZSOfuGMdX1aI1iT9Sg=="; 101 + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.27.1.tgz"; 102 + sha512 = "QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A=="; 103 103 }; 104 104 }; 105 - "@babel/helper-create-regexp-features-plugin-7.26.3" = { 105 + "@babel/helper-create-regexp-features-plugin-7.27.1" = { 106 106 name = "_at_babel_slash_helper-create-regexp-features-plugin"; 107 107 packageName = "@babel/helper-create-regexp-features-plugin"; 108 - version = "7.26.3"; 108 + version = "7.27.1"; 109 109 src = fetchurl { 110 - url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.26.3.tgz"; 111 - sha512 = "G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong=="; 110 + url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.27.1.tgz"; 111 + sha512 = "uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ=="; 112 112 }; 113 113 }; 114 114 "@babel/helper-environment-visitor-7.24.7" = { ··· 120 120 sha512 = "DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ=="; 121 121 }; 122 122 }; 123 - "@babel/helper-member-expression-to-functions-7.25.9" = { 123 + "@babel/helper-member-expression-to-functions-7.27.1" = { 124 124 name = "_at_babel_slash_helper-member-expression-to-functions"; 125 125 packageName = "@babel/helper-member-expression-to-functions"; 126 - version = "7.25.9"; 126 + version = "7.27.1"; 127 127 src = fetchurl { 128 - url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz"; 129 - sha512 = "wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ=="; 128 + url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.27.1.tgz"; 129 + sha512 = "E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA=="; 130 130 }; 131 131 }; 132 - "@babel/helper-module-imports-7.25.9" = { 132 + "@babel/helper-module-imports-7.27.1" = { 133 133 name = "_at_babel_slash_helper-module-imports"; 134 134 packageName = "@babel/helper-module-imports"; 135 - version = "7.25.9"; 135 + version = "7.27.1"; 136 136 src = fetchurl { 137 - url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz"; 138 - sha512 = "tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw=="; 137 + url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz"; 138 + sha512 = "0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w=="; 139 139 }; 140 140 }; 141 - "@babel/helper-module-transforms-7.26.0" = { 141 + "@babel/helper-module-transforms-7.27.3" = { 142 142 name = "_at_babel_slash_helper-module-transforms"; 143 143 packageName = "@babel/helper-module-transforms"; 144 - version = "7.26.0"; 144 + version = "7.27.3"; 145 145 src = fetchurl { 146 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz"; 147 - sha512 = "xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw=="; 146 + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.27.3.tgz"; 147 + sha512 = "dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg=="; 148 148 }; 149 149 }; 150 - "@babel/helper-optimise-call-expression-7.25.9" = { 150 + "@babel/helper-optimise-call-expression-7.27.1" = { 151 151 name = "_at_babel_slash_helper-optimise-call-expression"; 152 152 packageName = "@babel/helper-optimise-call-expression"; 153 - version = "7.25.9"; 153 + version = "7.27.1"; 154 154 src = fetchurl { 155 - url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz"; 156 - sha512 = "FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ=="; 155 + url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz"; 156 + sha512 = "URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw=="; 157 157 }; 158 158 }; 159 - "@babel/helper-plugin-utils-7.26.5" = { 159 + "@babel/helper-plugin-utils-7.27.1" = { 160 160 name = "_at_babel_slash_helper-plugin-utils"; 161 161 packageName = "@babel/helper-plugin-utils"; 162 - version = "7.26.5"; 162 + version = "7.27.1"; 163 163 src = fetchurl { 164 - url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz"; 165 - sha512 = "RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="; 164 + url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz"; 165 + sha512 = "1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw=="; 166 166 }; 167 167 }; 168 - "@babel/helper-remap-async-to-generator-7.25.9" = { 168 + "@babel/helper-remap-async-to-generator-7.27.1" = { 169 169 name = "_at_babel_slash_helper-remap-async-to-generator"; 170 170 packageName = "@babel/helper-remap-async-to-generator"; 171 - version = "7.25.9"; 171 + version = "7.27.1"; 172 172 src = fetchurl { 173 - url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz"; 174 - sha512 = "IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw=="; 173 + url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz"; 174 + sha512 = "7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA=="; 175 175 }; 176 176 }; 177 - "@babel/helper-replace-supers-7.26.5" = { 177 + "@babel/helper-replace-supers-7.27.1" = { 178 178 name = "_at_babel_slash_helper-replace-supers"; 179 179 packageName = "@babel/helper-replace-supers"; 180 - version = "7.26.5"; 180 + version = "7.27.1"; 181 181 src = fetchurl { 182 - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.26.5.tgz"; 183 - sha512 = "bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg=="; 182 + url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz"; 183 + sha512 = "7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA=="; 184 184 }; 185 185 }; 186 - "@babel/helper-skip-transparent-expression-wrappers-7.25.9" = { 186 + "@babel/helper-skip-transparent-expression-wrappers-7.27.1" = { 187 187 name = "_at_babel_slash_helper-skip-transparent-expression-wrappers"; 188 188 packageName = "@babel/helper-skip-transparent-expression-wrappers"; 189 - version = "7.25.9"; 189 + version = "7.27.1"; 190 190 src = fetchurl { 191 - url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz"; 192 - sha512 = "K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA=="; 191 + url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz"; 192 + sha512 = "Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg=="; 193 193 }; 194 194 }; 195 - "@babel/helper-string-parser-7.25.9" = { 195 + "@babel/helper-string-parser-7.27.1" = { 196 196 name = "_at_babel_slash_helper-string-parser"; 197 197 packageName = "@babel/helper-string-parser"; 198 - version = "7.25.9"; 198 + version = "7.27.1"; 199 199 src = fetchurl { 200 - url = "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz"; 201 - sha512 = "4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="; 200 + url = "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz"; 201 + sha512 = "qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA=="; 202 202 }; 203 203 }; 204 - "@babel/helper-validator-identifier-7.25.9" = { 204 + "@babel/helper-validator-identifier-7.27.1" = { 205 205 name = "_at_babel_slash_helper-validator-identifier"; 206 206 packageName = "@babel/helper-validator-identifier"; 207 - version = "7.25.9"; 207 + version = "7.27.1"; 208 208 src = fetchurl { 209 - url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz"; 210 - sha512 = "Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="; 209 + url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz"; 210 + sha512 = "D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow=="; 211 211 }; 212 212 }; 213 - "@babel/helper-validator-option-7.25.9" = { 213 + "@babel/helper-validator-option-7.27.1" = { 214 214 name = "_at_babel_slash_helper-validator-option"; 215 215 packageName = "@babel/helper-validator-option"; 216 - version = "7.25.9"; 216 + version = "7.27.1"; 217 217 src = fetchurl { 218 - url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz"; 219 - sha512 = "e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw=="; 218 + url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz"; 219 + sha512 = "YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg=="; 220 220 }; 221 221 }; 222 - "@babel/helper-wrap-function-7.25.9" = { 222 + "@babel/helper-wrap-function-7.27.1" = { 223 223 name = "_at_babel_slash_helper-wrap-function"; 224 224 packageName = "@babel/helper-wrap-function"; 225 - version = "7.25.9"; 225 + version = "7.27.1"; 226 226 src = fetchurl { 227 - url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz"; 228 - sha512 = "ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g=="; 227 + url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.27.1.tgz"; 228 + sha512 = "NFJK2sHUvrjo8wAU/nQTWU890/zB2jj0qBcCbZbbf+005cAsv6tMjXz31fBign6M5ov1o0Bllu+9nbqkfsjjJQ=="; 229 229 }; 230 230 }; 231 - "@babel/helpers-7.26.9" = { 231 + "@babel/helpers-7.27.6" = { 232 232 name = "_at_babel_slash_helpers"; 233 233 packageName = "@babel/helpers"; 234 - version = "7.26.9"; 234 + version = "7.27.6"; 235 235 src = fetchurl { 236 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.9.tgz"; 237 - sha512 = "Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA=="; 236 + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.27.6.tgz"; 237 + sha512 = "muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug=="; 238 238 }; 239 239 }; 240 240 "@babel/highlight-7.25.9" = { ··· 246 246 sha512 = "llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw=="; 247 247 }; 248 248 }; 249 - "@babel/parser-7.26.9" = { 249 + "@babel/parser-7.27.5" = { 250 250 name = "_at_babel_slash_parser"; 251 251 packageName = "@babel/parser"; 252 - version = "7.26.9"; 252 + version = "7.27.5"; 253 253 src = fetchurl { 254 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.26.9.tgz"; 255 - sha512 = "81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A=="; 254 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.27.5.tgz"; 255 + sha512 = "OsQd175SxWkGlzbny8J3K8TnnDD0N3lrIUtB92xwyRpzaenGZhxDvxN/JgU00U3CDZNj9tPuDJ5H0WS4Nt3vKg=="; 256 256 }; 257 257 }; 258 258 "@babel/plugin-proposal-async-generator-functions-7.20.7" = { ··· 480 480 sha512 = "hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="; 481 481 }; 482 482 }; 483 - "@babel/plugin-transform-arrow-functions-7.25.9" = { 483 + "@babel/plugin-transform-arrow-functions-7.27.1" = { 484 484 name = "_at_babel_slash_plugin-transform-arrow-functions"; 485 485 packageName = "@babel/plugin-transform-arrow-functions"; 486 - version = "7.25.9"; 486 + version = "7.27.1"; 487 487 src = fetchurl { 488 - url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz"; 489 - sha512 = "6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg=="; 488 + url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz"; 489 + sha512 = "8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA=="; 490 490 }; 491 491 }; 492 - "@babel/plugin-transform-async-to-generator-7.25.9" = { 492 + "@babel/plugin-transform-async-to-generator-7.27.1" = { 493 493 name = "_at_babel_slash_plugin-transform-async-to-generator"; 494 494 packageName = "@babel/plugin-transform-async-to-generator"; 495 - version = "7.25.9"; 495 + version = "7.27.1"; 496 496 src = fetchurl { 497 - url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz"; 498 - sha512 = "NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ=="; 497 + url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.27.1.tgz"; 498 + sha512 = "NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA=="; 499 499 }; 500 500 }; 501 - "@babel/plugin-transform-block-scoped-functions-7.26.5" = { 501 + "@babel/plugin-transform-block-scoped-functions-7.27.1" = { 502 502 name = "_at_babel_slash_plugin-transform-block-scoped-functions"; 503 503 packageName = "@babel/plugin-transform-block-scoped-functions"; 504 - version = "7.26.5"; 504 + version = "7.27.1"; 505 505 src = fetchurl { 506 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.26.5.tgz"; 507 - sha512 = "chuTSY+hq09+/f5lMj8ZSYgCFpppV2CbYrhNFJ1BFoXpiWPnnAb7R0MqrafCpN8E1+YRrtM1MXZHJdIx8B6rMQ=="; 506 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz"; 507 + sha512 = "cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg=="; 508 508 }; 509 509 }; 510 - "@babel/plugin-transform-block-scoping-7.25.9" = { 510 + "@babel/plugin-transform-block-scoping-7.27.5" = { 511 511 name = "_at_babel_slash_plugin-transform-block-scoping"; 512 512 packageName = "@babel/plugin-transform-block-scoping"; 513 - version = "7.25.9"; 513 + version = "7.27.5"; 514 514 src = fetchurl { 515 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz"; 516 - sha512 = "1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg=="; 515 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.27.5.tgz"; 516 + sha512 = "JF6uE2s67f0y2RZcm2kpAUEbD50vH62TyWVebxwHAlbSdM49VqPz8t4a1uIjp4NIOIZ4xzLfjY5emt/RCyC7TQ=="; 517 517 }; 518 518 }; 519 - "@babel/plugin-transform-classes-7.25.9" = { 519 + "@babel/plugin-transform-classes-7.27.1" = { 520 520 name = "_at_babel_slash_plugin-transform-classes"; 521 521 packageName = "@babel/plugin-transform-classes"; 522 - version = "7.25.9"; 522 + version = "7.27.1"; 523 523 src = fetchurl { 524 - url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz"; 525 - sha512 = "mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg=="; 524 + url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.27.1.tgz"; 525 + sha512 = "7iLhfFAubmpeJe/Wo2TVuDrykh/zlWXLzPNdL0Jqn/Xu8R3QQ8h9ff8FQoISZOsw74/HFqFI7NX63HN7QFIHKA=="; 526 526 }; 527 527 }; 528 - "@babel/plugin-transform-computed-properties-7.25.9" = { 528 + "@babel/plugin-transform-computed-properties-7.27.1" = { 529 529 name = "_at_babel_slash_plugin-transform-computed-properties"; 530 530 packageName = "@babel/plugin-transform-computed-properties"; 531 - version = "7.25.9"; 531 + version = "7.27.1"; 532 532 src = fetchurl { 533 - url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz"; 534 - sha512 = "HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA=="; 533 + url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.27.1.tgz"; 534 + sha512 = "lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw=="; 535 535 }; 536 536 }; 537 - "@babel/plugin-transform-destructuring-7.25.9" = { 537 + "@babel/plugin-transform-destructuring-7.27.3" = { 538 538 name = "_at_babel_slash_plugin-transform-destructuring"; 539 539 packageName = "@babel/plugin-transform-destructuring"; 540 - version = "7.25.9"; 540 + version = "7.27.3"; 541 541 src = fetchurl { 542 - url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz"; 543 - sha512 = "WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ=="; 542 + url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.27.3.tgz"; 543 + sha512 = "s4Jrok82JpiaIprtY2nHsYmrThKvvwgHwjgd7UMiYhZaN0asdXNLr0y+NjTfkA7SyQE5i2Fb7eawUOZmLvyqOA=="; 544 544 }; 545 545 }; 546 - "@babel/plugin-transform-dotall-regex-7.25.9" = { 546 + "@babel/plugin-transform-dotall-regex-7.27.1" = { 547 547 name = "_at_babel_slash_plugin-transform-dotall-regex"; 548 548 packageName = "@babel/plugin-transform-dotall-regex"; 549 - version = "7.25.9"; 549 + version = "7.27.1"; 550 550 src = fetchurl { 551 - url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz"; 552 - sha512 = "t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA=="; 551 + url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.27.1.tgz"; 552 + sha512 = "gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw=="; 553 553 }; 554 554 }; 555 - "@babel/plugin-transform-duplicate-keys-7.25.9" = { 555 + "@babel/plugin-transform-duplicate-keys-7.27.1" = { 556 556 name = "_at_babel_slash_plugin-transform-duplicate-keys"; 557 557 packageName = "@babel/plugin-transform-duplicate-keys"; 558 - version = "7.25.9"; 558 + version = "7.27.1"; 559 559 src = fetchurl { 560 - url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz"; 561 - sha512 = "LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw=="; 560 + url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz"; 561 + sha512 = "MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q=="; 562 562 }; 563 563 }; 564 - "@babel/plugin-transform-exponentiation-operator-7.26.3" = { 564 + "@babel/plugin-transform-exponentiation-operator-7.27.1" = { 565 565 name = "_at_babel_slash_plugin-transform-exponentiation-operator"; 566 566 packageName = "@babel/plugin-transform-exponentiation-operator"; 567 - version = "7.26.3"; 567 + version = "7.27.1"; 568 568 src = fetchurl { 569 - url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.26.3.tgz"; 570 - sha512 = "7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ=="; 569 + url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.27.1.tgz"; 570 + sha512 = "uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ=="; 571 571 }; 572 572 }; 573 - "@babel/plugin-transform-for-of-7.26.9" = { 573 + "@babel/plugin-transform-for-of-7.27.1" = { 574 574 name = "_at_babel_slash_plugin-transform-for-of"; 575 575 packageName = "@babel/plugin-transform-for-of"; 576 - version = "7.26.9"; 576 + version = "7.27.1"; 577 577 src = fetchurl { 578 - url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.26.9.tgz"; 579 - sha512 = "Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg=="; 578 + url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz"; 579 + sha512 = "BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw=="; 580 580 }; 581 581 }; 582 - "@babel/plugin-transform-function-name-7.25.9" = { 582 + "@babel/plugin-transform-function-name-7.27.1" = { 583 583 name = "_at_babel_slash_plugin-transform-function-name"; 584 584 packageName = "@babel/plugin-transform-function-name"; 585 - version = "7.25.9"; 585 + version = "7.27.1"; 586 586 src = fetchurl { 587 - url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz"; 588 - sha512 = "8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA=="; 587 + url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz"; 588 + sha512 = "1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ=="; 589 589 }; 590 590 }; 591 - "@babel/plugin-transform-literals-7.25.9" = { 591 + "@babel/plugin-transform-literals-7.27.1" = { 592 592 name = "_at_babel_slash_plugin-transform-literals"; 593 593 packageName = "@babel/plugin-transform-literals"; 594 - version = "7.25.9"; 594 + version = "7.27.1"; 595 595 src = fetchurl { 596 - url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz"; 597 - sha512 = "9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ=="; 596 + url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz"; 597 + sha512 = "0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA=="; 598 598 }; 599 599 }; 600 - "@babel/plugin-transform-member-expression-literals-7.25.9" = { 600 + "@babel/plugin-transform-member-expression-literals-7.27.1" = { 601 601 name = "_at_babel_slash_plugin-transform-member-expression-literals"; 602 602 packageName = "@babel/plugin-transform-member-expression-literals"; 603 - version = "7.25.9"; 603 + version = "7.27.1"; 604 604 src = fetchurl { 605 - url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz"; 606 - sha512 = "PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA=="; 605 + url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz"; 606 + sha512 = "hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ=="; 607 607 }; 608 608 }; 609 - "@babel/plugin-transform-modules-amd-7.25.9" = { 609 + "@babel/plugin-transform-modules-amd-7.27.1" = { 610 610 name = "_at_babel_slash_plugin-transform-modules-amd"; 611 611 packageName = "@babel/plugin-transform-modules-amd"; 612 - version = "7.25.9"; 612 + version = "7.27.1"; 613 613 src = fetchurl { 614 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz"; 615 - sha512 = "g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw=="; 614 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz"; 615 + sha512 = "iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA=="; 616 616 }; 617 617 }; 618 - "@babel/plugin-transform-modules-commonjs-7.26.3" = { 618 + "@babel/plugin-transform-modules-commonjs-7.27.1" = { 619 619 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 620 620 packageName = "@babel/plugin-transform-modules-commonjs"; 621 - version = "7.26.3"; 621 + version = "7.27.1"; 622 622 src = fetchurl { 623 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz"; 624 - sha512 = "MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ=="; 623 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz"; 624 + sha512 = "OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw=="; 625 625 }; 626 626 }; 627 - "@babel/plugin-transform-modules-systemjs-7.25.9" = { 627 + "@babel/plugin-transform-modules-systemjs-7.27.1" = { 628 628 name = "_at_babel_slash_plugin-transform-modules-systemjs"; 629 629 packageName = "@babel/plugin-transform-modules-systemjs"; 630 - version = "7.25.9"; 630 + version = "7.27.1"; 631 631 src = fetchurl { 632 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz"; 633 - sha512 = "hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA=="; 632 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.27.1.tgz"; 633 + sha512 = "w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA=="; 634 634 }; 635 635 }; 636 - "@babel/plugin-transform-modules-umd-7.25.9" = { 636 + "@babel/plugin-transform-modules-umd-7.27.1" = { 637 637 name = "_at_babel_slash_plugin-transform-modules-umd"; 638 638 packageName = "@babel/plugin-transform-modules-umd"; 639 - version = "7.25.9"; 639 + version = "7.27.1"; 640 640 src = fetchurl { 641 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz"; 642 - sha512 = "bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw=="; 641 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz"; 642 + sha512 = "iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w=="; 643 643 }; 644 644 }; 645 - "@babel/plugin-transform-named-capturing-groups-regex-7.25.9" = { 645 + "@babel/plugin-transform-named-capturing-groups-regex-7.27.1" = { 646 646 name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex"; 647 647 packageName = "@babel/plugin-transform-named-capturing-groups-regex"; 648 - version = "7.25.9"; 648 + version = "7.27.1"; 649 649 src = fetchurl { 650 - url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz"; 651 - sha512 = "oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA=="; 650 + url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.27.1.tgz"; 651 + sha512 = "SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng=="; 652 652 }; 653 653 }; 654 - "@babel/plugin-transform-new-target-7.25.9" = { 654 + "@babel/plugin-transform-new-target-7.27.1" = { 655 655 name = "_at_babel_slash_plugin-transform-new-target"; 656 656 packageName = "@babel/plugin-transform-new-target"; 657 - version = "7.25.9"; 657 + version = "7.27.1"; 658 658 src = fetchurl { 659 - url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz"; 660 - sha512 = "U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ=="; 659 + url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz"; 660 + sha512 = "f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ=="; 661 661 }; 662 662 }; 663 - "@babel/plugin-transform-object-super-7.25.9" = { 663 + "@babel/plugin-transform-object-super-7.27.1" = { 664 664 name = "_at_babel_slash_plugin-transform-object-super"; 665 665 packageName = "@babel/plugin-transform-object-super"; 666 - version = "7.25.9"; 666 + version = "7.27.1"; 667 667 src = fetchurl { 668 - url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz"; 669 - sha512 = "Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A=="; 668 + url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz"; 669 + sha512 = "SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng=="; 670 670 }; 671 671 }; 672 - "@babel/plugin-transform-parameters-7.25.9" = { 672 + "@babel/plugin-transform-parameters-7.27.1" = { 673 673 name = "_at_babel_slash_plugin-transform-parameters"; 674 674 packageName = "@babel/plugin-transform-parameters"; 675 - version = "7.25.9"; 675 + version = "7.27.1"; 676 676 src = fetchurl { 677 - url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz"; 678 - sha512 = "wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g=="; 677 + url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.1.tgz"; 678 + sha512 = "018KRk76HWKeZ5l4oTj2zPpSh+NbGdt0st5S6x0pga6HgrjBOJb24mMDHorFopOOd6YHkLgOZ+zaCjZGPO4aKg=="; 679 679 }; 680 680 }; 681 - "@babel/plugin-transform-property-literals-7.25.9" = { 681 + "@babel/plugin-transform-property-literals-7.27.1" = { 682 682 name = "_at_babel_slash_plugin-transform-property-literals"; 683 683 packageName = "@babel/plugin-transform-property-literals"; 684 - version = "7.25.9"; 684 + version = "7.27.1"; 685 685 src = fetchurl { 686 - url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz"; 687 - sha512 = "IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA=="; 686 + url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz"; 687 + sha512 = "oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ=="; 688 688 }; 689 689 }; 690 - "@babel/plugin-transform-regenerator-7.25.9" = { 690 + "@babel/plugin-transform-regenerator-7.27.5" = { 691 691 name = "_at_babel_slash_plugin-transform-regenerator"; 692 692 packageName = "@babel/plugin-transform-regenerator"; 693 - version = "7.25.9"; 693 + version = "7.27.5"; 694 694 src = fetchurl { 695 - url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.9.tgz"; 696 - sha512 = "vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg=="; 695 + url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.27.5.tgz"; 696 + sha512 = "uhB8yHerfe3MWnuLAhEbeQ4afVoqv8BQsPqrTv7e/jZ9y00kJL6l9a/f4OWaKxotmjzewfEyXE1vgDJenkQ2/Q=="; 697 697 }; 698 698 }; 699 - "@babel/plugin-transform-reserved-words-7.25.9" = { 699 + "@babel/plugin-transform-reserved-words-7.27.1" = { 700 700 name = "_at_babel_slash_plugin-transform-reserved-words"; 701 701 packageName = "@babel/plugin-transform-reserved-words"; 702 - version = "7.25.9"; 702 + version = "7.27.1"; 703 703 src = fetchurl { 704 - url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz"; 705 - sha512 = "7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg=="; 704 + url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz"; 705 + sha512 = "V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw=="; 706 706 }; 707 707 }; 708 708 "@babel/plugin-transform-runtime-7.12.10" = { ··· 714 714 sha512 = "xOrUfzPxw7+WDm9igMgQCbO3cJKymX7dFdsgRr1eu9n3KjjyU4pptIXbXPseQDquw+W+RuJEJMHKHNsPNNm3CA=="; 715 715 }; 716 716 }; 717 - "@babel/plugin-transform-shorthand-properties-7.25.9" = { 717 + "@babel/plugin-transform-shorthand-properties-7.27.1" = { 718 718 name = "_at_babel_slash_plugin-transform-shorthand-properties"; 719 719 packageName = "@babel/plugin-transform-shorthand-properties"; 720 - version = "7.25.9"; 720 + version = "7.27.1"; 721 721 src = fetchurl { 722 - url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz"; 723 - sha512 = "MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng=="; 722 + url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz"; 723 + sha512 = "N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ=="; 724 724 }; 725 725 }; 726 - "@babel/plugin-transform-spread-7.25.9" = { 726 + "@babel/plugin-transform-spread-7.27.1" = { 727 727 name = "_at_babel_slash_plugin-transform-spread"; 728 728 packageName = "@babel/plugin-transform-spread"; 729 - version = "7.25.9"; 729 + version = "7.27.1"; 730 730 src = fetchurl { 731 - url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz"; 732 - sha512 = "oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A=="; 731 + url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.27.1.tgz"; 732 + sha512 = "kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q=="; 733 733 }; 734 734 }; 735 - "@babel/plugin-transform-sticky-regex-7.25.9" = { 735 + "@babel/plugin-transform-sticky-regex-7.27.1" = { 736 736 name = "_at_babel_slash_plugin-transform-sticky-regex"; 737 737 packageName = "@babel/plugin-transform-sticky-regex"; 738 - version = "7.25.9"; 738 + version = "7.27.1"; 739 739 src = fetchurl { 740 - url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz"; 741 - sha512 = "WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA=="; 740 + url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz"; 741 + sha512 = "lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g=="; 742 742 }; 743 743 }; 744 - "@babel/plugin-transform-template-literals-7.26.8" = { 744 + "@babel/plugin-transform-template-literals-7.27.1" = { 745 745 name = "_at_babel_slash_plugin-transform-template-literals"; 746 746 packageName = "@babel/plugin-transform-template-literals"; 747 - version = "7.26.8"; 747 + version = "7.27.1"; 748 748 src = fetchurl { 749 - url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.26.8.tgz"; 750 - sha512 = "OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q=="; 749 + url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz"; 750 + sha512 = "fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg=="; 751 751 }; 752 752 }; 753 - "@babel/plugin-transform-typeof-symbol-7.26.7" = { 753 + "@babel/plugin-transform-typeof-symbol-7.27.1" = { 754 754 name = "_at_babel_slash_plugin-transform-typeof-symbol"; 755 755 packageName = "@babel/plugin-transform-typeof-symbol"; 756 - version = "7.26.7"; 756 + version = "7.27.1"; 757 757 src = fetchurl { 758 - url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.26.7.tgz"; 759 - sha512 = "jfoTXXZTgGg36BmhqT3cAYK5qkmqvJpvNrPhaK/52Vgjhw4Rq29s9UqpWWV0D6yuRmgiFH/BUVlkl96zJWqnaw=="; 758 + url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz"; 759 + sha512 = "RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw=="; 760 760 }; 761 761 }; 762 - "@babel/plugin-transform-unicode-escapes-7.25.9" = { 762 + "@babel/plugin-transform-unicode-escapes-7.27.1" = { 763 763 name = "_at_babel_slash_plugin-transform-unicode-escapes"; 764 764 packageName = "@babel/plugin-transform-unicode-escapes"; 765 - version = "7.25.9"; 765 + version = "7.27.1"; 766 766 src = fetchurl { 767 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz"; 768 - sha512 = "s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q=="; 767 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz"; 768 + sha512 = "Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg=="; 769 769 }; 770 770 }; 771 - "@babel/plugin-transform-unicode-regex-7.25.9" = { 771 + "@babel/plugin-transform-unicode-regex-7.27.1" = { 772 772 name = "_at_babel_slash_plugin-transform-unicode-regex"; 773 773 packageName = "@babel/plugin-transform-unicode-regex"; 774 - version = "7.25.9"; 774 + version = "7.27.1"; 775 775 src = fetchurl { 776 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz"; 777 - sha512 = "yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA=="; 776 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz"; 777 + sha512 = "xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw=="; 778 778 }; 779 779 }; 780 780 "@babel/preset-env-7.12.10" = { ··· 804 804 sha512 = "plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg=="; 805 805 }; 806 806 }; 807 - "@babel/template-7.26.9" = { 807 + "@babel/template-7.27.2" = { 808 808 name = "_at_babel_slash_template"; 809 809 packageName = "@babel/template"; 810 - version = "7.26.9"; 810 + version = "7.27.2"; 811 811 src = fetchurl { 812 - url = "https://registry.npmjs.org/@babel/template/-/template-7.26.9.tgz"; 813 - sha512 = "qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA=="; 812 + url = "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz"; 813 + sha512 = "LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw=="; 814 814 }; 815 815 }; 816 - "@babel/traverse-7.26.9" = { 816 + "@babel/traverse-7.27.4" = { 817 817 name = "_at_babel_slash_traverse"; 818 818 packageName = "@babel/traverse"; 819 - version = "7.26.9"; 819 + version = "7.27.4"; 820 820 src = fetchurl { 821 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.9.tgz"; 822 - sha512 = "ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg=="; 821 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.27.4.tgz"; 822 + sha512 = "oNcu2QbHqts9BtOWJosOVJapWjBDSxGCpFvikNR5TGDYDQf3JwpIoMzIKrvfoti93cLfPJEG4tH9SPVeyCGgdA=="; 823 823 }; 824 824 }; 825 - "@babel/types-7.26.9" = { 825 + "@babel/types-7.27.6" = { 826 826 name = "_at_babel_slash_types"; 827 827 packageName = "@babel/types"; 828 - version = "7.26.9"; 828 + version = "7.27.6"; 829 829 src = fetchurl { 830 - url = "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz"; 831 - sha512 = "Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw=="; 830 + url = "https://registry.npmjs.org/@babel/types/-/types-7.27.6.tgz"; 831 + sha512 = "ETyHEk2VHHvl9b9jZP5IHPavHYk57EhanlRRuae9XCpb/j5bDCbPPMOBfCWhnl/7EDJz0jEMCi/RhccCE8r1+Q=="; 832 832 }; 833 833 }; 834 - "@bufbuild/protobuf-2.2.3" = { 834 + "@bufbuild/protobuf-2.5.2" = { 835 835 name = "_at_bufbuild_slash_protobuf"; 836 836 packageName = "@bufbuild/protobuf"; 837 - version = "2.2.3"; 837 + version = "2.5.2"; 838 838 src = fetchurl { 839 - url = "https://registry.npmjs.org/@bufbuild/protobuf/-/protobuf-2.2.3.tgz"; 840 - sha512 = "tFQoXHJdkEOSwj5tRIZSPNUuXK3RaR7T1nUrPgbYX1pUbvqqaaZAsfo+NXBPsz5rZMSKVFrgK1WL8Q/MSLvprg=="; 839 + url = "https://registry.npmjs.org/@bufbuild/protobuf/-/protobuf-2.5.2.tgz"; 840 + sha512 = "foZ7qr0IsUBjzWIq+SuBLfdQCpJ1j8cTuNNT4owngTHoN5KsJb8L9t65fzz7SCeSWzescoOil/0ldqiL041ABg=="; 841 841 }; 842 842 }; 843 843 "@hapi/address-2.1.4" = { ··· 966 966 sha512 = "q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA=="; 967 967 }; 968 968 }; 969 - "@jsonjoy.com/json-pack-1.1.1" = { 969 + "@jsonjoy.com/json-pack-1.2.0" = { 970 970 name = "_at_jsonjoy.com_slash_json-pack"; 971 971 packageName = "@jsonjoy.com/json-pack"; 972 - version = "1.1.1"; 972 + version = "1.2.0"; 973 973 src = fetchurl { 974 - url = "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.1.1.tgz"; 975 - sha512 = "osjeBqMJ2lb/j/M8NCPjs1ylqWIcTRTycIhVB5pt6LgzgeRSb0YRZ7j9RfA8wIUrsr/medIuhVyonXRZWLyfdw=="; 974 + url = "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.2.0.tgz"; 975 + sha512 = "io1zEbbYcElht3tdlqEOFxZ0dMTYrHz9iMf0gqn1pPjZFTCgM5R4R5IMA20Chb2UPYYsxjzs8CgZ7Nb5n2K2rA=="; 976 976 }; 977 977 }; 978 - "@jsonjoy.com/util-1.5.0" = { 978 + "@jsonjoy.com/util-1.6.0" = { 979 979 name = "_at_jsonjoy.com_slash_util"; 980 980 packageName = "@jsonjoy.com/util"; 981 - version = "1.5.0"; 981 + version = "1.6.0"; 982 982 src = fetchurl { 983 - url = "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.5.0.tgz"; 984 - sha512 = "ojoNsrIuPI9g6o8UxhraZQSyF2ByJanAY4cTFbc8Mf2AXEF4aQRGY1dJxyJpuyav8r9FGflEt/Ff3u5Nt6YMPA=="; 983 + url = "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.6.0.tgz"; 984 + sha512 = "sw/RMbehRhN68WRtcKCpQOPfnH6lLP4GJfqzi3iYej8tnzpZUDr6UkZYJjcjjC0FWEJOJbyM3PTIwxucUmDG2A=="; 985 985 }; 986 986 }; 987 987 "@kwsites/file-exists-1.1.1" = { ··· 1155 1155 sha512 = "orGL5LXERPYsLov6CWs3Fh6203+dXzJkR7OnddIr2514Hsecwc8xRpzCapshBbKFImCsvS/mk6+FWiN5LyZJAQ=="; 1156 1156 }; 1157 1157 }; 1158 - "@types/estree-1.0.6" = { 1158 + "@types/estree-1.0.7" = { 1159 1159 name = "_at_types_slash_estree"; 1160 1160 packageName = "@types/estree"; 1161 - version = "1.0.6"; 1161 + version = "1.0.7"; 1162 1162 src = fetchurl { 1163 - url = "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz"; 1164 - sha512 = "AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw=="; 1163 + url = "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz"; 1164 + sha512 = "w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ=="; 1165 1165 }; 1166 1166 }; 1167 1167 "@types/get-port-3.2.0" = { ··· 1245 1245 sha512 = "BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg=="; 1246 1246 }; 1247 1247 }; 1248 - "@types/lodash-4.17.15" = { 1248 + "@types/lodash-4.17.17" = { 1249 1249 name = "_at_types_slash_lodash"; 1250 1250 packageName = "@types/lodash"; 1251 - version = "4.17.15"; 1251 + version = "4.17.17"; 1252 1252 src = fetchurl { 1253 - url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.15.tgz"; 1254 - sha512 = "w/P33JFeySuhN6JLkysYUK2gEmy9kHHFN7E8ro0tkfmlDOgxBDzWEZ/J8cWA+fHqFevpswDTFZnDx+R9lbL6xw=="; 1253 + url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.17.tgz"; 1254 + sha512 = "RRVJ+J3J+WmyOTqnz3PiBLA501eKwXl2noseKOrNo/6+XEHjTAxO4xHvxQB6QuNm+s4WRbn6rSiap8+EA+ykFQ=="; 1255 1255 }; 1256 1256 }; 1257 1257 "@types/minimatch-5.1.2" = { ··· 1272 1272 sha512 = "U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg=="; 1273 1273 }; 1274 1274 }; 1275 - "@types/node-22.13.4" = { 1275 + "@types/node-24.0.1" = { 1276 1276 name = "_at_types_slash_node"; 1277 1277 packageName = "@types/node"; 1278 - version = "22.13.4"; 1278 + version = "24.0.1"; 1279 1279 src = fetchurl { 1280 - url = "https://registry.npmjs.org/@types/node/-/node-22.13.4.tgz"; 1281 - sha512 = "ywP2X0DYtX3y08eFVx5fNIw7/uIv8hYUKgXoK8oayJlLnKcRfEYCxWMVE1XagUdVtCJlZT1AU4LXEABW+L1Peg=="; 1280 + url = "https://registry.npmjs.org/@types/node/-/node-24.0.1.tgz"; 1281 + sha512 = "MX4Zioh39chHlDJbKmEgydJDS3tspMP/lnQC67G3SWsTnb9NeYVWOjkxpOSy4oMfPs4StcWHwBrvUb4ybfnuaw=="; 1282 1282 }; 1283 1283 }; 1284 1284 "@types/node-8.10.66" = { ··· 1578 1578 sha512 = "XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ=="; 1579 1579 }; 1580 1580 }; 1581 - "acorn-8.14.0" = { 1581 + "acorn-8.15.0" = { 1582 1582 name = "acorn"; 1583 1583 packageName = "acorn"; 1584 - version = "8.14.0"; 1584 + version = "8.15.0"; 1585 1585 src = fetchurl { 1586 - url = "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz"; 1587 - sha512 = "cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA=="; 1586 + url = "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz"; 1587 + sha512 = "NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg=="; 1588 1588 }; 1589 1589 }; 1590 1590 "address-1.0.3" = { ··· 1612 1612 src = fetchurl { 1613 1613 url = "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"; 1614 1614 sha512 = "j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="; 1615 - }; 1616 - }; 1617 - "ajv-8.17.1" = { 1618 - name = "ajv"; 1619 - packageName = "ajv"; 1620 - version = "8.17.1"; 1621 - src = fetchurl { 1622 - url = "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz"; 1623 - sha512 = "B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g=="; 1624 1615 }; 1625 1616 }; 1626 1617 "ajv-errors-1.0.1" = { ··· 1938 1929 sha512 = "SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ=="; 1939 1930 }; 1940 1931 }; 1941 - "array.prototype.reduce-1.0.7" = { 1932 + "array.prototype.reduce-1.0.8" = { 1942 1933 name = "array.prototype.reduce"; 1943 1934 packageName = "array.prototype.reduce"; 1944 - version = "1.0.7"; 1935 + version = "1.0.8"; 1945 1936 src = fetchurl { 1946 - url = "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.7.tgz"; 1947 - sha512 = "mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q=="; 1937 + url = "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.8.tgz"; 1938 + sha512 = "DwuEqgXFBwbmZSRqt3BpQigWNUoqw9Ml2dTWdF3B2zQlQX4OeUE0zyuzX0fX0IbTvjdkZbcBTU3idgpO78qkTw=="; 1948 1939 }; 1949 1940 }; 1950 1941 "arraybuffer.prototype.slice-1.0.4" = { ··· 2019 2010 sha512 = "Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw=="; 2020 2011 }; 2021 2012 }; 2022 - "astral-regex-2.0.0" = { 2023 - name = "astral-regex"; 2024 - packageName = "astral-regex"; 2025 - version = "2.0.0"; 2026 - src = fetchurl { 2027 - url = "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz"; 2028 - sha512 = "Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ=="; 2029 - }; 2030 - }; 2031 2013 "async-0.9.2" = { 2032 2014 name = "async"; 2033 2015 packageName = "async"; ··· 2046 2028 sha512 = "5mO7DX4CbJzp9zjaFXusQQ4tzKJARjNB1Ih1pVBi8wkbmXy/xzIDgEMXxWePLzt2OdFwaxfneIlT1nCiXubrPQ=="; 2047 2029 }; 2048 2030 }; 2049 - "async-2.6.4" = { 2031 + "async-3.2.6" = { 2050 2032 name = "async"; 2051 2033 packageName = "async"; 2052 - version = "2.6.4"; 2034 + version = "3.2.6"; 2053 2035 src = fetchurl { 2054 - url = "https://registry.npmjs.org/async/-/async-2.6.4.tgz"; 2055 - sha512 = "mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA=="; 2036 + url = "https://registry.npmjs.org/async/-/async-3.2.6.tgz"; 2037 + sha512 = "htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA=="; 2056 2038 }; 2057 2039 }; 2058 2040 "async-each-1.0.6" = { ··· 2208 2190 sha512 = "3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="; 2209 2191 }; 2210 2192 }; 2193 + "balanced-match-3.0.1" = { 2194 + name = "balanced-match"; 2195 + packageName = "balanced-match"; 2196 + version = "3.0.1"; 2197 + src = fetchurl { 2198 + url = "https://registry.npmjs.org/balanced-match/-/balanced-match-3.0.1.tgz"; 2199 + sha512 = "vjtV3hiLqYDNRoiAv0zC4QaGAMPomEoq83PRmYIofPswwZurCeWR5LByXm7SyoL0Zh5+2z0+HC7jG8gSZJUh0w=="; 2200 + }; 2201 + }; 2211 2202 "base-0.11.2" = { 2212 2203 name = "base"; 2213 2204 packageName = "base"; ··· 2262 2253 sha512 = "vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ=="; 2263 2254 }; 2264 2255 }; 2265 - "binary-0.3.0" = { 2266 - name = "binary"; 2267 - packageName = "binary"; 2268 - version = "0.3.0"; 2269 - src = fetchurl { 2270 - url = "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz"; 2271 - sha512 = "D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg=="; 2272 - }; 2273 - }; 2274 2256 "binary-extensions-1.13.1" = { 2275 2257 name = "binary-extensions"; 2276 2258 packageName = "binary-extensions"; ··· 2298 2280 sha512 = "p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ=="; 2299 2281 }; 2300 2282 }; 2301 - "binwrap-0.2.2" = { 2302 - name = "binwrap"; 2303 - packageName = "binwrap"; 2304 - version = "0.2.2"; 2305 - src = fetchurl { 2306 - url = "https://registry.npmjs.org/binwrap/-/binwrap-0.2.2.tgz"; 2307 - sha512 = "Y+Wvypk3JhH5GPZAvlwJAWOVH/OsOhQMSj37vySuWHwQivoALplPxfBA8b973rFJI7OS+O+1YmmYXIiEXVMAcw=="; 2308 - }; 2309 - }; 2310 - "binwrap-0.2.3" = { 2311 - name = "binwrap"; 2312 - packageName = "binwrap"; 2313 - version = "0.2.3"; 2314 - src = fetchurl { 2315 - url = "https://registry.npmjs.org/binwrap/-/binwrap-0.2.3.tgz"; 2316 - sha512 = "N4Pm7iyDEv0BrAMs+dny8WQa+e0nNTdzn2ODkf/MM6XBtKSCxCSUA1ZOQGoc1n7mUqdgOS5pwjsW91rmXVxy2Q=="; 2317 - }; 2318 - }; 2319 2283 "bluebird-3.7.2" = { 2320 2284 name = "bluebird"; 2321 2285 packageName = "bluebird"; ··· 2325 2289 sha512 = "XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg=="; 2326 2290 }; 2327 2291 }; 2328 - "bn.js-4.12.1" = { 2292 + "bn.js-4.12.2" = { 2329 2293 name = "bn.js"; 2330 2294 packageName = "bn.js"; 2331 - version = "4.12.1"; 2295 + version = "4.12.2"; 2332 2296 src = fetchurl { 2333 - url = "https://registry.npmjs.org/bn.js/-/bn.js-4.12.1.tgz"; 2334 - sha512 = "k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg=="; 2297 + url = "https://registry.npmjs.org/bn.js/-/bn.js-4.12.2.tgz"; 2298 + sha512 = "n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw=="; 2335 2299 }; 2336 2300 }; 2337 - "bn.js-5.2.1" = { 2301 + "bn.js-5.2.2" = { 2338 2302 name = "bn.js"; 2339 2303 packageName = "bn.js"; 2340 - version = "5.2.1"; 2304 + version = "5.2.2"; 2341 2305 src = fetchurl { 2342 - url = "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz"; 2343 - sha512 = "eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ=="; 2306 + url = "https://registry.npmjs.org/bn.js/-/bn.js-5.2.2.tgz"; 2307 + sha512 = "v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw=="; 2344 2308 }; 2345 2309 }; 2346 2310 "body-parser-1.18.2" = { ··· 2388 2352 sha512 = "JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww=="; 2389 2353 }; 2390 2354 }; 2391 - "brace-expansion-1.1.11" = { 2355 + "brace-expansion-1.1.12" = { 2392 2356 name = "brace-expansion"; 2393 2357 packageName = "brace-expansion"; 2394 - version = "1.1.11"; 2358 + version = "1.1.12"; 2395 2359 src = fetchurl { 2396 - url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"; 2397 - sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="; 2360 + url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz"; 2361 + sha512 = "9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="; 2398 2362 }; 2399 2363 }; 2400 - "brace-expansion-2.0.1" = { 2364 + "brace-expansion-2.0.2" = { 2401 2365 name = "brace-expansion"; 2402 2366 packageName = "brace-expansion"; 2403 - version = "2.0.1"; 2367 + version = "2.0.2"; 2368 + src = fetchurl { 2369 + url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz"; 2370 + sha512 = "Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ=="; 2371 + }; 2372 + }; 2373 + "brace-expansion-4.0.1" = { 2374 + name = "brace-expansion"; 2375 + packageName = "brace-expansion"; 2376 + version = "4.0.1"; 2404 2377 src = fetchurl { 2405 - url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz"; 2406 - sha512 = "XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="; 2378 + url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-4.0.1.tgz"; 2379 + sha512 = "YClrbvTCXGe70pU2JiEiPLYXO9gQkyxYeKpJIQHVS/gOs6EWMQP2RYBwjFLNT322Ji8TOC3IMPfsYCedNpzKfA=="; 2407 2380 }; 2408 2381 }; 2409 2382 "braces-2.3.2" = { ··· 2496 2469 sha512 = "VBorw+tgpOtZ1BYhrVSVTzTt/3+vSE3eFUh0N2GCFK1HffceOaf32YS/bs6WiFhjDAblAFrx85jMy3BG9fBK2Q=="; 2497 2470 }; 2498 2471 }; 2499 - "browserslist-4.24.4" = { 2472 + "browserslist-4.25.0" = { 2500 2473 name = "browserslist"; 2501 2474 packageName = "browserslist"; 2502 - version = "4.24.4"; 2475 + version = "4.25.0"; 2503 2476 src = fetchurl { 2504 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz"; 2505 - sha512 = "KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A=="; 2477 + url = "https://registry.npmjs.org/browserslist/-/browserslist-4.25.0.tgz"; 2478 + sha512 = "PJ8gYKeS5e/whHBh8xrwYK+dAvEj7JXtz6uTucnMRB8OiGTsKccFekoRrjajPBHV8oOY+2tI4uxeceSimKwMFA=="; 2506 2479 }; 2507 2480 }; 2508 2481 "buffer-4.9.2" = { ··· 2550 2523 sha512 = "571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ=="; 2551 2524 }; 2552 2525 }; 2553 - "buffers-0.1.1" = { 2554 - name = "buffers"; 2555 - packageName = "buffers"; 2556 - version = "0.1.1"; 2557 - src = fetchurl { 2558 - url = "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz"; 2559 - sha512 = "9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ=="; 2560 - }; 2561 - }; 2562 2526 "bufferutil-4.0.9" = { 2563 2527 name = "bufferutil"; 2564 2528 packageName = "bufferutil"; ··· 2694 2658 sha512 = "Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ=="; 2695 2659 }; 2696 2660 }; 2697 - "call-bound-1.0.3" = { 2661 + "call-bound-1.0.4" = { 2698 2662 name = "call-bound"; 2699 2663 packageName = "call-bound"; 2700 - version = "1.0.3"; 2664 + version = "1.0.4"; 2701 2665 src = fetchurl { 2702 - url = "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz"; 2703 - sha512 = "YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA=="; 2666 + url = "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz"; 2667 + sha512 = "+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg=="; 2704 2668 }; 2705 2669 }; 2706 2670 "call-me-maybe-1.0.2" = { ··· 2793 2757 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 2794 2758 }; 2795 2759 }; 2796 - "caniuse-lite-1.0.30001699" = { 2760 + "caniuse-lite-1.0.30001722" = { 2797 2761 name = "caniuse-lite"; 2798 2762 packageName = "caniuse-lite"; 2799 - version = "1.0.30001699"; 2763 + version = "1.0.30001722"; 2800 2764 src = fetchurl { 2801 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001699.tgz"; 2802 - sha512 = "b+uH5BakXZ9Do9iK+CkDmctUSEqZl+SP056vc5usa0PL+ev5OHw003rZXcnjNDv3L8P5j6rwT6C0BPKSikW08w=="; 2765 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001722.tgz"; 2766 + sha512 = "DCQHBBZtiK6JVkAGw7drvAMK0Q0POD/xZvEmDp6baiMMP6QXXk9HpD6mNYBZWhOPG6LvIDb82ITqtWjhDckHCA=="; 2803 2767 }; 2804 2768 }; 2805 2769 "case-sensitive-paths-webpack-plugin-2.3.0" = { ··· 2829 2793 sha512 = "Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA=="; 2830 2794 }; 2831 2795 }; 2832 - "chainsaw-0.1.0" = { 2833 - name = "chainsaw"; 2834 - packageName = "chainsaw"; 2835 - version = "0.1.0"; 2836 - src = fetchurl { 2837 - url = "https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz"; 2838 - sha512 = "75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ=="; 2839 - }; 2840 - }; 2841 2796 "chalk-1.1.3" = { 2842 2797 name = "chalk"; 2843 2798 packageName = "chalk"; ··· 2919 2874 sha512 = "c4PR2egjNjI1um6bamCQ6bUNPDiyofNQruHvKgHQ4gDUP/ITSVSzNsiI5OWtHOsX323i5ha/kk4YmOZ1Ktg7KA=="; 2920 2875 }; 2921 2876 }; 2922 - "chokidar-3.2.1" = { 2923 - name = "chokidar"; 2924 - packageName = "chokidar"; 2925 - version = "3.2.1"; 2926 - src = fetchurl { 2927 - url = "https://registry.npmjs.org/chokidar/-/chokidar-3.2.1.tgz"; 2928 - sha512 = "/j5PPkb5Feyps9e+jo07jUZGvkB5Aj953NrI4s8xSVScrAo/RHeILrtdb4uzR7N6aaFFxxJ+gt8mA8HfNpw76w=="; 2929 - }; 2930 - }; 2931 2877 "chokidar-3.4.2" = { 2932 2878 name = "chokidar"; 2933 2879 packageName = "chokidar"; ··· 2964 2910 sha512 = "jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg=="; 2965 2911 }; 2966 2912 }; 2967 - "chownr-2.0.0" = { 2968 - name = "chownr"; 2969 - packageName = "chownr"; 2970 - version = "2.0.0"; 2971 - src = fetchurl { 2972 - url = "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz"; 2973 - sha512 = "bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ=="; 2974 - }; 2975 - }; 2976 2913 "chownr-3.0.0" = { 2977 2914 name = "chownr"; 2978 2915 packageName = "chownr"; ··· 3070 3007 src = fetchurl { 3071 3008 url = "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz"; 3072 3009 sha512 = "PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA=="; 3073 - }; 3074 - }; 3075 - "cliui-6.0.0" = { 3076 - name = "cliui"; 3077 - packageName = "cliui"; 3078 - version = "6.0.0"; 3079 - src = fetchurl { 3080 - url = "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz"; 3081 - sha512 = "t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ=="; 3082 3010 }; 3083 3011 }; 3084 3012 "cliui-8.0.1" = { ··· 3243 3171 sha512 = "Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA=="; 3244 3172 }; 3245 3173 }; 3174 + "commander-13.1.0" = { 3175 + name = "commander"; 3176 + packageName = "commander"; 3177 + version = "13.1.0"; 3178 + src = fetchurl { 3179 + url = "https://registry.npmjs.org/commander/-/commander-13.1.0.tgz"; 3180 + sha512 = "/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw=="; 3181 + }; 3182 + }; 3246 3183 "commander-2.14.1" = { 3247 3184 name = "commander"; 3248 3185 packageName = "commander"; ··· 3540 3477 sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="; 3541 3478 }; 3542 3479 }; 3543 - "core-js-compat-3.40.0" = { 3480 + "core-js-compat-3.43.0" = { 3544 3481 name = "core-js-compat"; 3545 3482 packageName = "core-js-compat"; 3546 - version = "3.40.0"; 3483 + version = "3.43.0"; 3547 3484 src = fetchurl { 3548 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.40.0.tgz"; 3549 - sha512 = "0XEDpr5y5mijvw8Lbc6E5AkjrHfp7eEoPlu36SWeAbcL8fn1G1ANe8DBlo2XoNN89oVpxWwOjYIPVzR4ZvsKCQ=="; 3485 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.43.0.tgz"; 3486 + sha512 = "2GML2ZsCc5LR7hZYz4AXmjQw8zuy2T//2QntwdnpuYI7jteT6GVYJL7F6C2C57R7gSYrcqVW3lAALefdbhBLDA=="; 3550 3487 }; 3551 3488 }; 3552 3489 "core-util-is-1.0.2" = { ··· 3666 3603 sha512 = "VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw=="; 3667 3604 }; 3668 3605 }; 3669 - "cross-spawn-7.0.0" = { 3670 - name = "cross-spawn"; 3671 - packageName = "cross-spawn"; 3672 - version = "7.0.0"; 3673 - src = fetchurl { 3674 - url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.0.tgz"; 3675 - sha512 = "6U/8SMK2FBNnB21oQ4+6Nsodxanw1gTkntYA2zBdkFYFu3ZDx65P2ONEXGSvob/QS6REjVHQ9zxzdOafwFdstw=="; 3676 - }; 3677 - }; 3678 3606 "cross-spawn-7.0.3" = { 3679 3607 name = "cross-spawn"; 3680 3608 packageName = "cross-spawn"; ··· 3954 3882 sha512 = "CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="; 3955 3883 }; 3956 3884 }; 3957 - "debug-4.4.0" = { 3885 + "debug-4.4.1" = { 3958 3886 name = "debug"; 3959 3887 packageName = "debug"; 3960 - version = "4.4.0"; 3888 + version = "4.4.1"; 3961 3889 src = fetchurl { 3962 - url = "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz"; 3963 - sha512 = "6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="; 3890 + url = "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz"; 3891 + sha512 = "KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ=="; 3964 3892 }; 3965 3893 }; 3966 3894 "decamelize-1.2.0" = { ··· 4179 4107 sha512 = "2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg=="; 4180 4108 }; 4181 4109 }; 4182 - "detect-libc-1.0.3" = { 4110 + "detect-libc-2.0.4" = { 4183 4111 name = "detect-libc"; 4184 4112 packageName = "detect-libc"; 4185 - version = "1.0.3"; 4113 + version = "2.0.4"; 4186 4114 src = fetchurl { 4187 - url = "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz"; 4188 - sha512 = "pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg=="; 4115 + url = "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz"; 4116 + sha512 = "3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA=="; 4189 4117 }; 4190 4118 }; 4191 4119 "detect-node-2.1.0" = { ··· 4449 4377 sha512 = "WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="; 4450 4378 }; 4451 4379 }; 4452 - "electron-to-chromium-1.5.101" = { 4380 + "electron-to-chromium-1.5.166" = { 4453 4381 name = "electron-to-chromium"; 4454 4382 packageName = "electron-to-chromium"; 4455 - version = "1.5.101"; 4383 + version = "1.5.166"; 4456 4384 src = fetchurl { 4457 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.101.tgz"; 4458 - sha512 = "L0ISiQrP/56Acgu4/i/kfPwWSgrzYZUnQrC0+QPFuhqlLP1Ir7qzPPDVS9BcKIyWTRU8+o6CC8dKw38tSWhYIA=="; 4385 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.166.tgz"; 4386 + sha512 = "QPWqHL0BglzPYyJJ1zSSmwFFL6MFXhbACOCcsCdUMCkzPdS9/OIBVxg516X/Ado2qwAq8k0nJJ7phQPCqiaFAw=="; 4459 4387 }; 4460 4388 }; 4461 4389 "elliptic-6.6.1" = { ··· 4465 4393 src = fetchurl { 4466 4394 url = "https://registry.npmjs.org/elliptic/-/elliptic-6.6.1.tgz"; 4467 4395 sha512 = "RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g=="; 4468 - }; 4469 - }; 4470 - "elm-0.19.1" = { 4471 - name = "elm"; 4472 - packageName = "elm"; 4473 - version = "0.19.1"; 4474 - src = fetchurl { 4475 - url = "https://registry.npmjs.org/elm/-/elm-0.19.1.tgz"; 4476 - sha512 = "rehOtJKZvoYDddlrd7AX5NAf0H+LUllnBg3AHaeaIOKWzw4W316d7Bkhlbo7aSG+hVUVWP2ihKwyYkDi589TfA=="; 4477 4396 }; 4478 4397 }; 4479 4398 "elm-0.19.1-5" = { ··· 4539 4458 sha512 = "11OV8FgB9qsth/F94q2SJjb1MoEgbworSyNM1L+YlxVoaxp7wtWPyA8cNcPEkSoIKG1B8Tqg68ED1P6dVamHSg=="; 4540 4459 }; 4541 4460 }; 4542 - "elm-test-0.19.1" = { 4543 - name = "elm-test"; 4544 - packageName = "elm-test"; 4545 - version = "0.19.1"; 4546 - src = fetchurl { 4547 - url = "https://registry.npmjs.org/elm-test/-/elm-test-0.19.1.tgz"; 4548 - sha512 = "SyZgZ/hxq62budS3k0M1Qj1E8fIRvldSxFSm4XfzE6qRRuHAT2a82fxprZRZl1yG2GwnImGmhuKH5hSyjPpzjA=="; 4549 - }; 4550 - }; 4551 - "elm-test-0.19.1-revision14" = { 4461 + "elm-test-0.19.1-revision15" = { 4552 4462 name = "elm-test"; 4553 4463 packageName = "elm-test"; 4554 - version = "0.19.1-revision14"; 4464 + version = "0.19.1-revision15"; 4555 4465 src = fetchurl { 4556 - url = "https://registry.npmjs.org/elm-test/-/elm-test-0.19.1-revision14.tgz"; 4557 - sha512 = "gfQQYtHTeMstGbGbiRHbGKLsQCGI53ozLP22Wqx6YjxXLlNsdT8NS2EGmjkdQSU3ALRhYECtnF//ZUb4wbCpUQ=="; 4466 + url = "https://registry.npmjs.org/elm-test/-/elm-test-0.19.1-revision15.tgz"; 4467 + sha512 = "QusEZmlctM4VePiwemfxwcDrhDHfHXuXau3SedRwWuBBnPQK3/WjMUzULWSbTCYHIj3DgkA84Co+V/nE0161cg=="; 4558 4468 }; 4559 4469 }; 4560 4470 "elm-webpack-loader-6.0.1" = { ··· 4566 4476 sha512 = "SkltiDAbegaiPxsQq7sxqTyRUXzD4n6UaT9JTZXIYoAjAEi/ogaIbYLQD6Ne5ZaSW3JOo6S/vb+VO5v0qDdirw=="; 4567 4477 }; 4568 4478 }; 4569 - "elmi-to-json-1.2.0" = { 4570 - name = "elmi-to-json"; 4571 - packageName = "elmi-to-json"; 4572 - version = "1.2.0"; 4573 - src = fetchurl { 4574 - url = "https://registry.npmjs.org/elmi-to-json/-/elmi-to-json-1.2.0.tgz"; 4575 - sha512 = "zNinzt6/YMr11HgeBlC9Z0UM3qHkYrGsWJTjrCmgBkKnaOLUzTP5K9N3z1RltyunItXtHAxb8DFPvMxlYRPv/Q=="; 4576 - }; 4577 - }; 4578 4479 "emoji-regex-7.0.3" = { 4579 4480 name = "emoji-regex"; 4580 4481 packageName = "emoji-regex"; ··· 4710 4611 sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="; 4711 4612 }; 4712 4613 }; 4713 - "es-abstract-1.23.9" = { 4614 + "es-abstract-1.24.0" = { 4714 4615 name = "es-abstract"; 4715 4616 packageName = "es-abstract"; 4716 - version = "1.23.9"; 4617 + version = "1.24.0"; 4717 4618 src = fetchurl { 4718 - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.9.tgz"; 4719 - sha512 = "py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA=="; 4619 + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.0.tgz"; 4620 + sha512 = "WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg=="; 4720 4621 }; 4721 4622 }; 4722 4623 "es-array-method-boxes-properly-1.0.0" = { ··· 4809 4710 sha512 = "U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg=="; 4810 4711 }; 4811 4712 }; 4812 - "esbuild-0.23.1" = { 4713 + "esbuild-0.25.5" = { 4813 4714 name = "esbuild"; 4814 4715 packageName = "esbuild"; 4815 - version = "0.23.1"; 4716 + version = "0.25.5"; 4816 4717 src = fetchurl { 4817 - url = "https://registry.npmjs.org/esbuild/-/esbuild-0.23.1.tgz"; 4818 - sha512 = "VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg=="; 4819 - }; 4820 - }; 4821 - "esbuild-0.24.2" = { 4822 - name = "esbuild"; 4823 - packageName = "esbuild"; 4824 - version = "0.24.2"; 4825 - src = fetchurl { 4826 - url = "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz"; 4827 - sha512 = "+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA=="; 4718 + url = "https://registry.npmjs.org/esbuild/-/esbuild-0.25.5.tgz"; 4719 + sha512 = "P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ=="; 4828 4720 }; 4829 4721 }; 4830 4722 "escalade-3.2.0" = { ··· 5205 5097 sha512 = "lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="; 5206 5098 }; 5207 5099 }; 5208 - "fast-uri-3.0.6" = { 5209 - name = "fast-uri"; 5210 - packageName = "fast-uri"; 5211 - version = "3.0.6"; 5212 - src = fetchurl { 5213 - url = "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.6.tgz"; 5214 - sha512 = "Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw=="; 5215 - }; 5216 - }; 5217 - "fastq-1.19.0" = { 5100 + "fastq-1.19.1" = { 5218 5101 name = "fastq"; 5219 5102 packageName = "fastq"; 5220 - version = "1.19.0"; 5103 + version = "1.19.1"; 5221 5104 src = fetchurl { 5222 - url = "https://registry.npmjs.org/fastq/-/fastq-1.19.0.tgz"; 5223 - sha512 = "7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA=="; 5105 + url = "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz"; 5106 + sha512 = "GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ=="; 5224 5107 }; 5225 5108 }; 5226 5109 "faye-websocket-0.10.0" = { ··· 5239 5122 src = fetchurl { 5240 5123 url = "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz"; 5241 5124 sha512 = "CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g=="; 5125 + }; 5126 + }; 5127 + "fdir-6.4.6" = { 5128 + name = "fdir"; 5129 + packageName = "fdir"; 5130 + version = "6.4.6"; 5131 + src = fetchurl { 5132 + url = "https://registry.npmjs.org/fdir/-/fdir-6.4.6.tgz"; 5133 + sha512 = "hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w=="; 5242 5134 }; 5243 5135 }; 5244 5136 "figgy-pudding-3.5.2" = { ··· 5340 5232 sha512 = "+QhLzsS+vyYsZqojEIGDwzp5KxkhHs1BJUt2CtI93bL27SKj7H6FnAjwVIvjQiEXKV2qmgCj9ikqegVUIrw7ZA=="; 5341 5233 }; 5342 5234 }; 5343 - "find-0.2.9" = { 5344 - name = "find"; 5345 - packageName = "find"; 5346 - version = "0.2.9"; 5347 - src = fetchurl { 5348 - url = "https://registry.npmjs.org/find/-/find-0.2.9.tgz"; 5349 - sha512 = "7a4/LCiInB9xYMnAUEjLilL9FKclwbwK7VlXw+h5jMvT2TDFeYFCHM24O1XdnC/on/hx8mxVO3FTQkyHZnOghQ=="; 5350 - }; 5351 - }; 5352 5235 "find-cache-dir-1.0.0" = { 5353 5236 name = "find-cache-dir"; 5354 5237 packageName = "find-cache-dir"; ··· 5376 5259 sha512 = "wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig=="; 5377 5260 }; 5378 5261 }; 5379 - "find-elm-dependencies-2.0.2" = { 5380 - name = "find-elm-dependencies"; 5381 - packageName = "find-elm-dependencies"; 5382 - version = "2.0.2"; 5383 - src = fetchurl { 5384 - url = "https://registry.npmjs.org/find-elm-dependencies/-/find-elm-dependencies-2.0.2.tgz"; 5385 - sha512 = "nM5UCbccD1G8CGK2GsM7ykG3ksOAl9E+34jiDfl07CAl2OPnLpBVWY2hlxEmIkSBfdJjSopEowWHrO0cI8RhxQ=="; 5386 - }; 5387 - }; 5388 5262 "find-elm-dependencies-2.0.4" = { 5389 5263 name = "find-elm-dependencies"; 5390 5264 packageName = "find-elm-dependencies"; ··· 5394 5268 sha512 = "x/4w4fVmlD2X4PD9oQ+yh9EyaQef6OtEULdMGBTuWx0Nkppvo2Z/bAiQioW2n+GdRYKypME2b9OmYTw5tw5qDg=="; 5395 5269 }; 5396 5270 }; 5397 - "find-parent-dir-0.3.1" = { 5398 - name = "find-parent-dir"; 5399 - packageName = "find-parent-dir"; 5400 - version = "0.3.1"; 5401 - src = fetchurl { 5402 - url = "https://registry.npmjs.org/find-parent-dir/-/find-parent-dir-0.3.1.tgz"; 5403 - sha512 = "o4UcykWV/XN9wm+jMEtWLPlV8RXCZnMhQI6F6OdHeSez7iiJWePw8ijOlskJZMsaQoGR/b7dH6lO02HhaTN7+A=="; 5404 - }; 5405 - }; 5406 5271 "find-up-1.1.2" = { 5407 5272 name = "find-up"; 5408 5273 packageName = "find-up"; ··· 5437 5302 src = fetchurl { 5438 5303 url = "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz"; 5439 5304 sha512 = "PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw=="; 5440 - }; 5441 - }; 5442 - "firstline-1.2.0" = { 5443 - name = "firstline"; 5444 - packageName = "firstline"; 5445 - version = "1.2.0"; 5446 - src = fetchurl { 5447 - url = "https://registry.npmjs.org/firstline/-/firstline-1.2.0.tgz"; 5448 - sha512 = "JBzSqQYZvZaD3aHRG1okOog1aZXuXCWHcf9BzkpHYIN9s9zQQCjFajawWxGzDco50p9wtg93A5qC90gnnfngKg=="; 5449 5305 }; 5450 5306 }; 5451 5307 "firstline-1.3.1" = { ··· 5457 5313 sha512 = "ycwgqtoxujz1dm0kjkBFOPQMESxB9uKc/PlD951dQDIG+tBXRpYZC2UmJb0gDxopQ1ZX6oyRQN3goRczYu7Deg=="; 5458 5314 }; 5459 5315 }; 5460 - "firstline-2.0.2" = { 5461 - name = "firstline"; 5462 - packageName = "firstline"; 5463 - version = "2.0.2"; 5464 - src = fetchurl { 5465 - url = "https://registry.npmjs.org/firstline/-/firstline-2.0.2.tgz"; 5466 - sha512 = "8KcmfI0jgSECnzdhucm0i7vrwef3BWwgjimW2YkRC5eSFwjb5DibVoA0YvgkYwwxuJi9c+7M7X3b3lX8o9B6wg=="; 5467 - }; 5468 - }; 5469 5316 "flush-write-stream-1.1.1" = { 5470 5317 name = "flush-write-stream"; 5471 5318 packageName = "flush-write-stream"; ··· 5502 5349 sha512 = "7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ=="; 5503 5350 }; 5504 5351 }; 5505 - "foreground-child-3.3.0" = { 5352 + "foreground-child-3.3.1" = { 5506 5353 name = "foreground-child"; 5507 5354 packageName = "foreground-child"; 5508 - version = "3.3.0"; 5355 + version = "3.3.1"; 5509 5356 src = fetchurl { 5510 - url = "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz"; 5511 - sha512 = "Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg=="; 5357 + url = "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz"; 5358 + sha512 = "gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw=="; 5512 5359 }; 5513 5360 }; 5514 5361 "forever-agent-0.6.1" = { ··· 5637 5484 sha512 = "yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g=="; 5638 5485 }; 5639 5486 }; 5640 - "fs-minipass-1.2.7" = { 5641 - name = "fs-minipass"; 5642 - packageName = "fs-minipass"; 5643 - version = "1.2.7"; 5644 - src = fetchurl { 5645 - url = "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz"; 5646 - sha512 = "GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA=="; 5647 - }; 5648 - }; 5649 - "fs-minipass-2.1.0" = { 5650 - name = "fs-minipass"; 5651 - packageName = "fs-minipass"; 5652 - version = "2.1.0"; 5653 - src = fetchurl { 5654 - url = "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz"; 5655 - sha512 = "V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg=="; 5656 - }; 5657 - }; 5658 5487 "fs-minipass-3.0.3" = { 5659 5488 name = "fs-minipass"; 5660 5489 packageName = "fs-minipass"; ··· 5772 5601 sha512 = "DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="; 5773 5602 }; 5774 5603 }; 5775 - "get-intrinsic-1.2.7" = { 5604 + "get-intrinsic-1.3.0" = { 5776 5605 name = "get-intrinsic"; 5777 5606 packageName = "get-intrinsic"; 5778 - version = "1.2.7"; 5607 + version = "1.3.0"; 5779 5608 src = fetchurl { 5780 - url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.7.tgz"; 5781 - sha512 = "VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA=="; 5609 + url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz"; 5610 + sha512 = "9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="; 5782 5611 }; 5783 5612 }; 5784 5613 "get-own-enumerable-property-symbols-3.0.2" = { ··· 5853 5682 sha512 = "w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg=="; 5854 5683 }; 5855 5684 }; 5856 - "get-tsconfig-4.10.0" = { 5685 + "get-tsconfig-4.10.1" = { 5857 5686 name = "get-tsconfig"; 5858 5687 packageName = "get-tsconfig"; 5859 - version = "4.10.0"; 5688 + version = "4.10.1"; 5860 5689 src = fetchurl { 5861 - url = "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.10.0.tgz"; 5862 - sha512 = "kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A=="; 5690 + url = "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.10.1.tgz"; 5691 + sha512 = "auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ=="; 5863 5692 }; 5864 5693 }; 5865 5694 "get-value-2.0.6" = { ··· 5898 5727 sha512 = "7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg=="; 5899 5728 }; 5900 5729 }; 5901 - "glob-11.0.1" = { 5730 + "glob-11.0.2" = { 5902 5731 name = "glob"; 5903 5732 packageName = "glob"; 5904 - version = "11.0.1"; 5733 + version = "11.0.2"; 5905 5734 src = fetchurl { 5906 - url = "https://registry.npmjs.org/glob/-/glob-11.0.1.tgz"; 5907 - sha512 = "zrQDm8XPnYEKawJScsnM0QzobJxlT/kHOOlRTio8IH/GrmxRE5fjllkzdaHclIuNjUQTJYH2xHNIGfdpJkDJUw=="; 5908 - }; 5909 - }; 5910 - "glob-7.1.4" = { 5911 - name = "glob"; 5912 - packageName = "glob"; 5913 - version = "7.1.4"; 5914 - src = fetchurl { 5915 - url = "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz"; 5916 - sha512 = "hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A=="; 5735 + url = "https://registry.npmjs.org/glob/-/glob-11.0.2.tgz"; 5736 + sha512 = "YT7U7Vye+t5fZ/QMkBFrTJ7ZQxInIUjwyAjVj84CYXqgBdv30MFUPGnBR6sQaVq6Is15wYJUsnzTuWaGRBhBAQ=="; 5917 5737 }; 5918 5738 }; 5919 5739 "glob-7.2.3" = { ··· 5997 5817 sha512 = "jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g=="; 5998 5818 }; 5999 5819 }; 6000 - "globby-14.0.2" = { 5820 + "globby-14.1.0" = { 6001 5821 name = "globby"; 6002 5822 packageName = "globby"; 6003 - version = "14.0.2"; 5823 + version = "14.1.0"; 6004 5824 src = fetchurl { 6005 - url = "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz"; 6006 - sha512 = "s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw=="; 5825 + url = "https://registry.npmjs.org/globby/-/globby-14.1.0.tgz"; 5826 + sha512 = "0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA=="; 6007 5827 }; 6008 5828 }; 6009 5829 "globby-6.1.0" = { ··· 6069 5889 sha512 = "RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="; 6070 5890 }; 6071 5891 }; 6072 - "graphql-16.10.0" = { 5892 + "graphql-16.11.0" = { 6073 5893 name = "graphql"; 6074 5894 packageName = "graphql"; 6075 - version = "16.10.0"; 5895 + version = "16.11.0"; 6076 5896 src = fetchurl { 6077 - url = "https://registry.npmjs.org/graphql/-/graphql-16.10.0.tgz"; 6078 - sha512 = "AjqGKbDGUFRKIRCP9tCKiIGHyriz2oHEbPIbEtcSLSs4YjReZOIPQQWek4+6hjw62H9QShXHyaGivGiYVLeYFQ=="; 5897 + url = "https://registry.npmjs.org/graphql/-/graphql-16.11.0.tgz"; 5898 + sha512 = "mS1lbMsxgQj6hge1XZ6p7GPhbrtFwUFYi3wRzXAC/FmYnyXMTvvI3td3rjmQ2u8ewXueaSvRPWaEcgVVOT9Jnw=="; 6079 5899 }; 6080 5900 }; 6081 5901 "graphql-request-3.7.0" = { ··· 6402 6222 sha512 = "gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A=="; 6403 6223 }; 6404 6224 }; 6405 - "http-cache-semantics-4.1.1" = { 6225 + "http-cache-semantics-4.2.0" = { 6406 6226 name = "http-cache-semantics"; 6407 6227 packageName = "http-cache-semantics"; 6408 - version = "4.1.1"; 6228 + version = "4.2.0"; 6409 6229 src = fetchurl { 6410 - url = "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz"; 6411 - sha512 = "er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ=="; 6230 + url = "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz"; 6231 + sha512 = "dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ=="; 6412 6232 }; 6413 6233 }; 6414 6234 "http-deceiver-1.2.7" = { ··· 6465 6285 sha512 = "FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ=="; 6466 6286 }; 6467 6287 }; 6468 - "http-parser-js-0.5.9" = { 6288 + "http-parser-js-0.5.10" = { 6469 6289 name = "http-parser-js"; 6470 6290 packageName = "http-parser-js"; 6471 - version = "0.5.9"; 6291 + version = "0.5.10"; 6472 6292 src = fetchurl { 6473 - url = "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.9.tgz"; 6474 - sha512 = "n1XsPy3rXVxlqxVioEWdC+0+M+SQw0DpJynwtOPo1X+ZlvdzTLtDBIJJlDQTnwZIFJrZSzSGmIOUdP8tu+SgLw=="; 6293 + url = "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.10.tgz"; 6294 + sha512 = "Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA=="; 6475 6295 }; 6476 6296 }; 6477 6297 "http-proxy-1.17.0" = { ··· 6645 6465 sha512 = "hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g=="; 6646 6466 }; 6647 6467 }; 6468 + "ignore-7.0.5" = { 6469 + name = "ignore"; 6470 + packageName = "ignore"; 6471 + version = "7.0.5"; 6472 + src = fetchurl { 6473 + url = "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz"; 6474 + sha512 = "Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg=="; 6475 + }; 6476 + }; 6648 6477 "image-size-0.5.5" = { 6649 6478 name = "image-size"; 6650 6479 packageName = "image-size"; ··· 6663 6492 sha512 = "4Urocwu9+XLDJw4Tc6ZCg7APVjjLInCFvO4TwGsAYV5zT6YYSor14dsZR0+0tHlDIN92cFUOq+i7fC00G5vTxA=="; 6664 6493 }; 6665 6494 }; 6666 - "immutable-5.0.3" = { 6495 + "immutable-5.1.3" = { 6667 6496 name = "immutable"; 6668 6497 packageName = "immutable"; 6669 - version = "5.0.3"; 6498 + version = "5.1.3"; 6670 6499 src = fetchurl { 6671 - url = "https://registry.npmjs.org/immutable/-/immutable-5.0.3.tgz"; 6672 - sha512 = "P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw=="; 6500 + url = "https://registry.npmjs.org/immutable/-/immutable-5.1.3.tgz"; 6501 + sha512 = "+chQdDfvscSF1SJqv2gn4SRO2ZyS3xL3r7IW/wWEEzrzLisnOlKiQu5ytC/BVNcS15C39WT2Hg/bjKjDMcu+zg=="; 6673 6502 }; 6674 6503 }; 6675 6504 "import-fresh-2.0.0" = { ··· 7147 6976 src = fetchurl { 7148 6977 url = "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz"; 7149 6978 sha512 = "1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw=="; 6979 + }; 6980 + }; 6981 + "is-negative-zero-2.0.3" = { 6982 + name = "is-negative-zero"; 6983 + packageName = "is-negative-zero"; 6984 + version = "2.0.3"; 6985 + src = fetchurl { 6986 + url = "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz"; 6987 + sha512 = "5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw=="; 7150 6988 }; 7151 6989 }; 7152 6990 "is-number-3.0.0" = { ··· 7518 7356 sha512 = "OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw=="; 7519 7357 }; 7520 7358 }; 7521 - "jackspeak-4.0.3" = { 7359 + "jackspeak-4.1.1" = { 7522 7360 name = "jackspeak"; 7523 7361 packageName = "jackspeak"; 7524 - version = "4.0.3"; 7362 + version = "4.1.1"; 7525 7363 src = fetchurl { 7526 - url = "https://registry.npmjs.org/jackspeak/-/jackspeak-4.0.3.tgz"; 7527 - sha512 = "oSwM7q8PTHQWuZAlp995iPpPJ4Vkl7qT0ZRD+9duL9j2oBy6KcTfyxc8mEuHJYC+z/kbps80aJLkaNzTOrf/kw=="; 7364 + url = "https://registry.npmjs.org/jackspeak/-/jackspeak-4.1.1.tgz"; 7365 + sha512 = "zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ=="; 7528 7366 }; 7529 7367 }; 7530 7368 "jest-diff-27.5.1" = { ··· 7662 7500 sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="; 7663 7501 }; 7664 7502 }; 7665 - "json-schema-traverse-1.0.0" = { 7666 - name = "json-schema-traverse"; 7667 - packageName = "json-schema-traverse"; 7668 - version = "1.0.0"; 7669 - src = fetchurl { 7670 - url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz"; 7671 - sha512 = "NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="; 7672 - }; 7673 - }; 7674 - "json-stable-stringify-1.2.1" = { 7503 + "json-stable-stringify-1.3.0" = { 7675 7504 name = "json-stable-stringify"; 7676 7505 packageName = "json-stable-stringify"; 7677 - version = "1.2.1"; 7506 + version = "1.3.0"; 7678 7507 src = fetchurl { 7679 - url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.2.1.tgz"; 7680 - sha512 = "Lp6HbbBgosLmJbjx0pBLbgvx68FaFU1sdkmBuckmhhJ88kL13OA51CDtR2yJB50eCNMH9wRqtQNNiAqQH4YXnA=="; 7508 + url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.3.0.tgz"; 7509 + sha512 = "qtYiSSFlwot9XHtF9bD9c7rwKjr+RecWT//ZnPvSmEjpV5mmPOCN4j8UjY5hbjNkOwZ/jQv3J6R1/pL7RwgMsg=="; 7681 7510 }; 7682 7511 }; 7683 7512 "json-stringify-safe-5.0.1" = { ··· 7842 7671 sha512 = "dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA=="; 7843 7672 }; 7844 7673 }; 7845 - "ky-1.7.5" = { 7674 + "ky-1.8.1" = { 7846 7675 name = "ky"; 7847 7676 packageName = "ky"; 7848 - version = "1.7.5"; 7677 + version = "1.8.1"; 7849 7678 src = fetchurl { 7850 - url = "https://registry.npmjs.org/ky/-/ky-1.7.5.tgz"; 7851 - sha512 = "HzhziW6sc5m0pwi5M196+7cEBtbt0lCYi67wNsiwMUmz833wloE0gbzJPWKs1gliFKQb34huItDQX97LyOdPdA=="; 7679 + url = "https://registry.npmjs.org/ky/-/ky-1.8.1.tgz"; 7680 + sha512 = "7Bp3TpsE+L+TARSnnDpk3xg8Idi8RwSLdj6CMbNWoOARIrGrbuLGusV0dYwbZOm4bB3jHNxSw8Wk/ByDqJEnDw=="; 7852 7681 }; 7853 7682 }; 7854 7683 "last-call-webpack-plugin-3.0.0" = { ··· 7878 7707 sha512 = "YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw=="; 7879 7708 }; 7880 7709 }; 7881 - "less-4.2.2" = { 7710 + "less-4.3.0" = { 7882 7711 name = "less"; 7883 7712 packageName = "less"; 7884 - version = "4.2.2"; 7713 + version = "4.3.0"; 7885 7714 src = fetchurl { 7886 - url = "https://registry.npmjs.org/less/-/less-4.2.2.tgz"; 7887 - sha512 = "tkuLHQlvWUTeQ3doAqnHbNn8T6WX1KA8yvbKG9x4VtKtIjHsVKQZCH11zRgAfbDAXC2UNIg/K9BYAAcEzUIrNg=="; 7715 + url = "https://registry.npmjs.org/less/-/less-4.3.0.tgz"; 7716 + sha512 = "X9RyH9fvemArzfdP8Pi3irr7lor2Ok4rOttDXBhlwDg+wKQsXOXgHWduAJE1EsF7JJx0w0bcO6BC6tCKKYnXKA=="; 7888 7717 }; 7889 7718 }; 7890 - "lightningcss-1.29.1" = { 7719 + "lightningcss-1.30.1" = { 7891 7720 name = "lightningcss"; 7892 7721 packageName = "lightningcss"; 7893 - version = "1.29.1"; 7722 + version = "1.30.1"; 7894 7723 src = fetchurl { 7895 - url = "https://registry.npmjs.org/lightningcss/-/lightningcss-1.29.1.tgz"; 7896 - sha512 = "FmGoeD4S05ewj+AkhTY+D+myDvXI6eL27FjHIjoyUkO/uw7WZD1fBVs0QxeYWa7E17CUHJaYX/RUGISCtcrG4Q=="; 7724 + url = "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.1.tgz"; 7725 + sha512 = "xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg=="; 7897 7726 }; 7898 7727 }; 7899 7728 "lines-and-columns-1.2.4" = { ··· 8031 7860 sha512 = "stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ=="; 8032 7861 }; 8033 7862 }; 8034 - "lodash.truncate-4.4.2" = { 8035 - name = "lodash.truncate"; 8036 - packageName = "lodash.truncate"; 8037 - version = "4.4.2"; 8038 - src = fetchurl { 8039 - url = "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz"; 8040 - sha512 = "jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw=="; 8041 - }; 8042 - }; 8043 7863 "lodash.uniq-4.5.0" = { 8044 7864 name = "lodash.uniq"; 8045 7865 packageName = "lodash.uniq"; ··· 8085 7905 sha512 = "JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="; 8086 7906 }; 8087 7907 }; 8088 - "lru-cache-11.0.2" = { 7908 + "lru-cache-11.1.0" = { 8089 7909 name = "lru-cache"; 8090 7910 packageName = "lru-cache"; 8091 - version = "11.0.2"; 7911 + version = "11.1.0"; 8092 7912 src = fetchurl { 8093 - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-11.0.2.tgz"; 8094 - sha512 = "123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA=="; 7913 + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-11.1.0.tgz"; 7914 + sha512 = "QIXZUBJUx+2zHUdQujWejBkcD9+cs94tLn0+YL8UrCh+D5sCXZ4c7LaEH48pNwRY3MLDgqUFyhlCyjJPf1WP0A=="; 8095 7915 }; 8096 7916 }; 8097 7917 "lru-cache-4.1.5" = { ··· 8220 8040 sha512 = "dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ=="; 8221 8041 }; 8222 8042 }; 8223 - "memfs-4.17.0" = { 8043 + "memfs-4.17.2" = { 8224 8044 name = "memfs"; 8225 8045 packageName = "memfs"; 8226 - version = "4.17.0"; 8046 + version = "4.17.2"; 8227 8047 src = fetchurl { 8228 - url = "https://registry.npmjs.org/memfs/-/memfs-4.17.0.tgz"; 8229 - sha512 = "4eirfZ7thblFmqFjywlTmuWVSvccHAJbn1r8qQLzmTO11qcqpohOjmY2mFce6x7x7WtskzRqApPD0hv+Oa74jg=="; 8048 + url = "https://registry.npmjs.org/memfs/-/memfs-4.17.2.tgz"; 8049 + sha512 = "NgYhCOWgovOXSzvYgUW0LQ7Qy72rWQMGGFJDoWg4G30RHd3z77VbYdtJ4fembJXBy8pMIUA31XNAupobOQlwdg=="; 8230 8050 }; 8231 8051 }; 8232 8052 "memory-fs-0.4.1" = { ··· 8454 8274 sha512 = "JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg=="; 8455 8275 }; 8456 8276 }; 8457 - "minimatch-10.0.1" = { 8277 + "minimatch-10.0.2" = { 8458 8278 name = "minimatch"; 8459 8279 packageName = "minimatch"; 8460 - version = "10.0.1"; 8280 + version = "10.0.2"; 8461 8281 src = fetchurl { 8462 - url = "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz"; 8463 - sha512 = "ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ=="; 8282 + url = "https://registry.npmjs.org/minimatch/-/minimatch-10.0.2.tgz"; 8283 + sha512 = "+9TJCIYXgZ2Dm5LxVCFsa8jOm+evMwXHFI0JM1XROmkfkpz8/iLLDh+TwSmyIBrs6C6Xu9294/fq8cBA+P6AqA=="; 8464 8284 }; 8465 8285 }; 8466 8286 "minimatch-3.0.4" = { ··· 8517 8337 sha512 = "2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="; 8518 8338 }; 8519 8339 }; 8520 - "minipass-2.9.0" = { 8521 - name = "minipass"; 8522 - packageName = "minipass"; 8523 - version = "2.9.0"; 8524 - src = fetchurl { 8525 - url = "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz"; 8526 - sha512 = "wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg=="; 8527 - }; 8528 - }; 8529 8340 "minipass-3.3.6" = { 8530 8341 name = "minipass"; 8531 8342 packageName = "minipass"; ··· 8535 8346 sha512 = "DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw=="; 8536 8347 }; 8537 8348 }; 8538 - "minipass-5.0.0" = { 8539 - name = "minipass"; 8540 - packageName = "minipass"; 8541 - version = "5.0.0"; 8542 - src = fetchurl { 8543 - url = "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz"; 8544 - sha512 = "3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ=="; 8545 - }; 8546 - }; 8547 8349 "minipass-7.1.2" = { 8548 8350 name = "minipass"; 8549 8351 packageName = "minipass"; ··· 8562 8364 sha512 = "D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw=="; 8563 8365 }; 8564 8366 }; 8565 - "minipass-fetch-4.0.0" = { 8367 + "minipass-fetch-4.0.1" = { 8566 8368 name = "minipass-fetch"; 8567 8369 packageName = "minipass-fetch"; 8568 - version = "4.0.0"; 8370 + version = "4.0.1"; 8569 8371 src = fetchurl { 8570 - url = "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-4.0.0.tgz"; 8571 - sha512 = "2v6aXUXwLP1Epd/gc32HAMIWoczx+fZwEPRHm/VwtrJzRGwR1qGZXEYV3Zp8ZjjbwaZhMrM6uHV4KVkk+XCc2w=="; 8372 + url = "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-4.0.1.tgz"; 8373 + sha512 = "j7U11C5HXigVuutxebFadoYBbd7VSdZWggSe64NVdvWNBqGAiXPL2QVCehjmw7lY1oF9gOllYbORh+hiNgfPgQ=="; 8572 8374 }; 8573 8375 }; 8574 8376 "minipass-flush-1.0.5" = { ··· 8598 8400 sha512 = "MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g=="; 8599 8401 }; 8600 8402 }; 8601 - "minizlib-1.3.3" = { 8602 - name = "minizlib"; 8603 - packageName = "minizlib"; 8604 - version = "1.3.3"; 8605 - src = fetchurl { 8606 - url = "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz"; 8607 - sha512 = "6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q=="; 8608 - }; 8609 - }; 8610 - "minizlib-2.1.2" = { 8611 - name = "minizlib"; 8612 - packageName = "minizlib"; 8613 - version = "2.1.2"; 8614 - src = fetchurl { 8615 - url = "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz"; 8616 - sha512 = "bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg=="; 8617 - }; 8618 - }; 8619 - "minizlib-3.0.1" = { 8403 + "minizlib-3.0.2" = { 8620 8404 name = "minizlib"; 8621 8405 packageName = "minizlib"; 8622 - version = "3.0.1"; 8406 + version = "3.0.2"; 8623 8407 src = fetchurl { 8624 - url = "https://registry.npmjs.org/minizlib/-/minizlib-3.0.1.tgz"; 8625 - sha512 = "umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg=="; 8408 + url = "https://registry.npmjs.org/minizlib/-/minizlib-3.0.2.tgz"; 8409 + sha512 = "oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA=="; 8626 8410 }; 8627 8411 }; 8628 8412 "mississippi-2.0.0" = { ··· 8670 8454 sha512 = "FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw=="; 8671 8455 }; 8672 8456 }; 8673 - "mkdirp-1.0.4" = { 8674 - name = "mkdirp"; 8675 - packageName = "mkdirp"; 8676 - version = "1.0.4"; 8677 - src = fetchurl { 8678 - url = "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz"; 8679 - sha512 = "vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="; 8680 - }; 8681 - }; 8682 8457 "mkdirp-3.0.1" = { 8683 8458 name = "mkdirp"; 8684 8459 packageName = "mkdirp"; ··· 8686 8461 src = fetchurl { 8687 8462 url = "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz"; 8688 8463 sha512 = "+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg=="; 8689 - }; 8690 - }; 8691 - "moment-2.30.1" = { 8692 - name = "moment"; 8693 - packageName = "moment"; 8694 - version = "2.30.1"; 8695 - src = fetchurl { 8696 - url = "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz"; 8697 - sha512 = "uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how=="; 8698 8464 }; 8699 8465 }; 8700 8466 "move-concurrently-1.0.1" = { ··· 8751 8517 sha512 = "cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ=="; 8752 8518 }; 8753 8519 }; 8754 - "murmur-hash-js-1.0.0" = { 8755 - name = "murmur-hash-js"; 8756 - packageName = "murmur-hash-js"; 8757 - version = "1.0.0"; 8758 - src = fetchurl { 8759 - url = "https://registry.npmjs.org/murmur-hash-js/-/murmur-hash-js-1.0.0.tgz"; 8760 - sha512 = "g3vtW36bHHcmcGOLlI+cVUBPtaoLdPkBNVNkHE+1mKgaYfjWXF6bWOlhsU6r+V+yG8tqUyM7WveRAXvHa98dZg=="; 8761 - }; 8762 - }; 8763 - "mustache-3.2.1" = { 8764 - name = "mustache"; 8765 - packageName = "mustache"; 8766 - version = "3.2.1"; 8767 - src = fetchurl { 8768 - url = "https://registry.npmjs.org/mustache/-/mustache-3.2.1.tgz"; 8769 - sha512 = "RERvMFdLpaFfSRIEe632yDm5nsd0SDKn8hGmcUwswnyiE5mtdZLDybtHAz6hjJhawokF0hXvGLtx9mrQfm6FkA=="; 8770 - }; 8771 - }; 8772 8520 "mute-stream-0.0.7" = { 8773 8521 name = "mute-stream"; 8774 8522 packageName = "mute-stream"; ··· 8787 8535 sha512 = "nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA=="; 8788 8536 }; 8789 8537 }; 8790 - "nan-2.22.0" = { 8538 + "nan-2.22.2" = { 8791 8539 name = "nan"; 8792 8540 packageName = "nan"; 8793 - version = "2.22.0"; 8541 + version = "2.22.2"; 8794 8542 src = fetchurl { 8795 - url = "https://registry.npmjs.org/nan/-/nan-2.22.0.tgz"; 8796 - sha512 = "nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw=="; 8543 + url = "https://registry.npmjs.org/nan/-/nan-2.22.2.tgz"; 8544 + sha512 = "DANghxFkS1plDdRsX0X9pm0Z6SJNN6gBdtXfanwoZ8hooC5gosGFSBGRYHUVPz1asKA/kMRqDRdHrluZ61SpBQ=="; 8797 8545 }; 8798 8546 }; 8799 - "nanoid-3.3.8" = { 8547 + "nanoid-3.3.11" = { 8800 8548 name = "nanoid"; 8801 8549 packageName = "nanoid"; 8802 - version = "3.3.8"; 8550 + version = "3.3.11"; 8803 8551 src = fetchurl { 8804 - url = "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz"; 8805 - sha512 = "WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w=="; 8552 + url = "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz"; 8553 + sha512 = "N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w=="; 8806 8554 }; 8807 8555 }; 8808 8556 "nanomatch-1.2.13" = { ··· 8893 8641 src = fetchurl { 8894 8642 url = "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz"; 8895 8643 sha512 = "fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg=="; 8896 - }; 8897 - }; 8898 - "node-elm-compiler-5.0.4" = { 8899 - name = "node-elm-compiler"; 8900 - packageName = "node-elm-compiler"; 8901 - version = "5.0.4"; 8902 - src = fetchurl { 8903 - url = "https://registry.npmjs.org/node-elm-compiler/-/node-elm-compiler-5.0.4.tgz"; 8904 - sha512 = "VQsT8QSierYGkHzRed+b4MnccQVF1+qPHunE8jBoU7jD6YpuRqCDPzEoC2zfyEJS80qVnlMZrqobLnyjzX9lJg=="; 8905 8644 }; 8906 8645 }; 8907 8646 "node-elm-compiler-5.0.5" = { ··· 9174 8913 sha512 = "nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw=="; 9175 8914 }; 9176 8915 }; 9177 - "object.entries-1.1.8" = { 8916 + "object.entries-1.1.9" = { 9178 8917 name = "object.entries"; 9179 8918 packageName = "object.entries"; 9180 - version = "1.1.8"; 8919 + version = "1.1.9"; 9181 8920 src = fetchurl { 9182 - url = "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz"; 9183 - sha512 = "cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ=="; 8921 + url = "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz"; 8922 + sha512 = "8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw=="; 9184 8923 }; 9185 8924 }; 9186 8925 "object.getownpropertydescriptors-2.1.8" = { ··· 9282 9021 sha512 = "VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ=="; 9283 9022 }; 9284 9023 }; 9285 - "open-10.1.0" = { 9024 + "open-10.1.2" = { 9286 9025 name = "open"; 9287 9026 packageName = "open"; 9288 - version = "10.1.0"; 9027 + version = "10.1.2"; 9289 9028 src = fetchurl { 9290 - url = "https://registry.npmjs.org/open/-/open-10.1.0.tgz"; 9291 - sha512 = "mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw=="; 9029 + url = "https://registry.npmjs.org/open/-/open-10.1.2.tgz"; 9030 + sha512 = "cxN6aIDPz6rm8hbebcP7vrQNhvRcveZoJU72Y7vskh4oIm+BZwBECnx5nTmrlres1Qapvx27Qo1Auukpf8PKXw=="; 9292 9031 }; 9293 9032 }; 9294 9033 "open-6.4.0" = { ··· 9813 9552 sha512 = "gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="; 9814 9553 }; 9815 9554 }; 9816 - "path-type-5.0.0" = { 9555 + "path-type-6.0.0" = { 9817 9556 name = "path-type"; 9818 9557 packageName = "path-type"; 9819 - version = "5.0.0"; 9558 + version = "6.0.0"; 9820 9559 src = fetchurl { 9821 - url = "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz"; 9822 - sha512 = "5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg=="; 9560 + url = "https://registry.npmjs.org/path-type/-/path-type-6.0.0.tgz"; 9561 + sha512 = "Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ=="; 9823 9562 }; 9824 9563 }; 9825 9564 "pbkdf2-3.1.2" = { ··· 9874 9613 src = fetchurl { 9875 9614 url = "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz"; 9876 9615 sha512 = "JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="; 9616 + }; 9617 + }; 9618 + "picomatch-4.0.2" = { 9619 + name = "picomatch"; 9620 + packageName = "picomatch"; 9621 + version = "4.0.2"; 9622 + src = fetchurl { 9623 + url = "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz"; 9624 + sha512 = "M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg=="; 9877 9625 }; 9878 9626 }; 9879 9627 "pify-2.3.0" = { ··· 9984 9732 sha512 = "8xCNE/aT/EXKenuMDZ+xTVwkT8gsoHN2z/Q29l80u0ppGEXVvsKRzNMbtKhg8LS8k1tJLAHHylf6p4VFmP6XUQ=="; 9985 9733 }; 9986 9734 }; 9987 - "portfinder-1.0.32" = { 9735 + "portfinder-1.0.37" = { 9988 9736 name = "portfinder"; 9989 9737 packageName = "portfinder"; 9990 - version = "1.0.32"; 9738 + version = "1.0.37"; 9991 9739 src = fetchurl { 9992 - url = "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz"; 9993 - sha512 = "on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg=="; 9740 + url = "https://registry.npmjs.org/portfinder/-/portfinder-1.0.37.tgz"; 9741 + sha512 = "yuGIEjDAYnnOex9ddMnKZEMFE0CcGo6zbfzDklkmT1m5z734ss6JMzN9rNB3+RR7iS+F10D4/BVIaXOyh8PQKw=="; 9994 9742 }; 9995 9743 }; 9996 9744 "posix-character-classes-0.1.1" = { ··· 10020 9768 sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="; 10021 9769 }; 10022 9770 }; 10023 - "postcss-8.5.2" = { 9771 + "postcss-8.5.5" = { 10024 9772 name = "postcss"; 10025 9773 packageName = "postcss"; 10026 - version = "8.5.2"; 9774 + version = "8.5.5"; 10027 9775 src = fetchurl { 10028 - url = "https://registry.npmjs.org/postcss/-/postcss-8.5.2.tgz"; 10029 - sha512 = "MjOadfU3Ys9KYoX0AdkBlFEF1Vx37uCCeN4ZHnmwm9FfpbsGWMZeBLMmmpY+6Ocqod7mkdZ0DT31OlbsFrLlkA=="; 9776 + url = "https://registry.npmjs.org/postcss/-/postcss-8.5.5.tgz"; 9777 + sha512 = "d/jtm+rdNT8tpXuHY5MMtcbJFBkhXE6593XVR9UoGCH8jSFGci7jGvMGH5RYd5PBJW+00NZQt6gf7CbagJCrhg=="; 10030 9778 }; 10031 9779 }; 10032 9780 "postcss-calc-7.0.5" = { ··· 10830 10578 sha512 = "1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ=="; 10831 10579 }; 10832 10580 }; 10833 - "readdirp-3.1.3" = { 10834 - name = "readdirp"; 10835 - packageName = "readdirp"; 10836 - version = "3.1.3"; 10837 - src = fetchurl { 10838 - url = "https://registry.npmjs.org/readdirp/-/readdirp-3.1.3.tgz"; 10839 - sha512 = "ZOsfTGkjO2kqeR5Mzr5RYDbTGYneSkdNKX2fOX2P5jF7vMrd/GNnIAUtDldeHHumHUCQ3V05YfWUdxMPAsRu9Q=="; 10840 - }; 10841 - }; 10842 10581 "readdirp-3.4.0" = { 10843 10582 name = "readdirp"; 10844 10583 packageName = "readdirp"; ··· 10936 10675 src = fetchurl { 10937 10676 url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.9.6.tgz"; 10938 10677 sha512 = "D0Y/JJ4VhusyMOd/o25a3jdUqN/bC85EFsaoL9Oqmy/O4efCh+xhp7yj2EEOsj974qvMkcW8AwUzJ1jB/MbxCw=="; 10939 - }; 10940 - }; 10941 - "regenerator-transform-0.15.2" = { 10942 - name = "regenerator-transform"; 10943 - packageName = "regenerator-transform"; 10944 - version = "0.15.2"; 10945 - src = fetchurl { 10946 - url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz"; 10947 - sha512 = "hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg=="; 10948 10678 }; 10949 10679 }; 10950 10680 "regex-not-1.0.2" = { ··· 11082 10812 sha512 = "lMbBMrDoxgsyO+yB3sDcrDuX85yYt7sS8BfQd11jtbW/z5ZWgLZRcEGLsLoYw7I0WSUGQBs8CC8ScIxkTX1+6Q=="; 11083 10813 }; 11084 10814 }; 11085 - "request-promise-4.2.6" = { 11086 - name = "request-promise"; 11087 - packageName = "request-promise"; 11088 - version = "4.2.6"; 11089 - src = fetchurl { 11090 - url = "https://registry.npmjs.org/request-promise/-/request-promise-4.2.6.tgz"; 11091 - sha512 = "HCHI3DJJUakkOr8fNoCc73E5nU5bqITjOYFMDrKHYOXWXrgD/SBaC7LjwuPymUprRyuF06UK7hd/lMHkmUXglQ=="; 11092 - }; 11093 - }; 11094 - "request-promise-core-1.1.4" = { 11095 - name = "request-promise-core"; 11096 - packageName = "request-promise-core"; 11097 - version = "1.1.4"; 11098 - src = fetchurl { 11099 - url = "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz"; 11100 - sha512 = "TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw=="; 11101 - }; 11102 - }; 11103 10815 "require-directory-2.1.1" = { 11104 10816 name = "require-directory"; 11105 10817 packageName = "require-directory"; ··· 11107 10819 src = fetchurl { 11108 10820 url = "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz"; 11109 10821 sha512 = "fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q=="; 11110 - }; 11111 - }; 11112 - "require-from-string-2.0.2" = { 11113 - name = "require-from-string"; 11114 - packageName = "require-from-string"; 11115 - version = "2.0.2"; 11116 - src = fetchurl { 11117 - url = "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz"; 11118 - sha512 = "Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="; 11119 10822 }; 11120 10823 }; 11121 10824 "require-main-filename-1.0.1" = { ··· 11253 10956 sha512 = "9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow=="; 11254 10957 }; 11255 10958 }; 11256 - "reusify-1.0.4" = { 10959 + "reusify-1.1.0" = { 11257 10960 name = "reusify"; 11258 10961 packageName = "reusify"; 11259 - version = "1.0.4"; 10962 + version = "1.1.0"; 11260 10963 src = fetchurl { 11261 - url = "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz"; 11262 - sha512 = "U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="; 10964 + url = "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz"; 10965 + sha512 = "g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw=="; 11263 10966 }; 11264 10967 }; 11265 10968 "revalidator-0.1.8" = { ··· 11325 11028 sha512 = "ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA=="; 11326 11029 }; 11327 11030 }; 11328 - "rollup-4.34.7" = { 11031 + "rollup-4.43.0" = { 11329 11032 name = "rollup"; 11330 11033 packageName = "rollup"; 11331 - version = "4.34.7"; 11034 + version = "4.43.0"; 11332 11035 src = fetchurl { 11333 - url = "https://registry.npmjs.org/rollup/-/rollup-4.34.7.tgz"; 11334 - sha512 = "8qhyN0oZ4x0H6wmBgfKxJtxM7qS98YJ0k0kNh5ECVtuchIJ7z9IVVvzpmtQyT10PXKMtBxYr1wQ5Apg8RS8kXQ=="; 11036 + url = "https://registry.npmjs.org/rollup/-/rollup-4.43.0.tgz"; 11037 + sha512 = "wdN2Kd3Twh8MAEOEJZsuxuLKCsBEo4PVNLK6tQWAn10VhsVewQLzcucMgLolRlhFybGxfclbPeEYBaP6RvUFGg=="; 11335 11038 }; 11336 11039 }; 11337 11040 "run-applescript-7.0.0" = { ··· 11379 11082 sha512 = "hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ=="; 11380 11083 }; 11381 11084 }; 11382 - "rxjs-7.8.1" = { 11085 + "rxjs-7.8.2" = { 11383 11086 name = "rxjs"; 11384 11087 packageName = "rxjs"; 11385 - version = "7.8.1"; 11088 + version = "7.8.2"; 11386 11089 src = fetchurl { 11387 - url = "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz"; 11388 - sha512 = "AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg=="; 11090 + url = "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz"; 11091 + sha512 = "dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA=="; 11389 11092 }; 11390 11093 }; 11391 11094 "safe-array-concat-1.1.3" = { ··· 11469 11172 sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; 11470 11173 }; 11471 11174 }; 11472 - "sass-1.85.0" = { 11175 + "sass-1.89.2" = { 11473 11176 name = "sass"; 11474 11177 packageName = "sass"; 11475 - version = "1.85.0"; 11178 + version = "1.89.2"; 11476 11179 src = fetchurl { 11477 - url = "https://registry.npmjs.org/sass/-/sass-1.85.0.tgz"; 11478 - sha512 = "3ToiC1xZ1Y8aU7+CkgCI/tqyuPXEmYGJXO7H4uqp0xkLXUqp88rQQ4j1HmP37xSJLbCJPaIiv+cT1y+grssrww=="; 11180 + url = "https://registry.npmjs.org/sass/-/sass-1.89.2.tgz"; 11181 + sha512 = "xCmtksBKd/jdJ9Bt9p7nPKiuqrlBMBuuGkQlkhZjjQk3Ty48lv93k5Dq6OPkKt4XwxDJ7tvlfrTa1MPA9bf+QA=="; 11479 11182 }; 11480 11183 }; 11481 - "sass-embedded-1.85.0" = { 11184 + "sass-embedded-1.89.2" = { 11482 11185 name = "sass-embedded"; 11483 11186 packageName = "sass-embedded"; 11484 - version = "1.85.0"; 11187 + version = "1.89.2"; 11485 11188 src = fetchurl { 11486 - url = "https://registry.npmjs.org/sass-embedded/-/sass-embedded-1.85.0.tgz"; 11487 - sha512 = "x3Vv54g0jv1aPSW8OTA/0GzQCs/HMQOjIkLtZJ3Xsn/I4vnyjKbVTQmFTax9bQjldqLEEkdbvy6ES/cOOnYNwA=="; 11189 + url = "https://registry.npmjs.org/sass-embedded/-/sass-embedded-1.89.2.tgz"; 11190 + sha512 = "Ack2K8rc57kCFcYlf3HXpZEJFNUX8xd8DILldksREmYXQkRHI879yy8q4mRDJgrojkySMZqmmmW1NxrFxMsYaA=="; 11488 11191 }; 11489 11192 }; 11490 11193 "sax-1.2.4" = { ··· 11586 11289 sha512 = "BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="; 11587 11290 }; 11588 11291 }; 11589 - "semver-7.7.1" = { 11292 + "semver-7.7.2" = { 11590 11293 name = "semver"; 11591 11294 packageName = "semver"; 11592 - version = "7.7.1"; 11295 + version = "7.7.2"; 11593 11296 src = fetchurl { 11594 - url = "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz"; 11595 - sha512 = "hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA=="; 11297 + url = "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz"; 11298 + sha512 = "RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA=="; 11596 11299 }; 11597 11300 }; 11598 11301 "semver-regex-3.1.4" = { ··· 11892 11595 sha512 = "bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw=="; 11893 11596 }; 11894 11597 }; 11895 - "simple-git-3.27.0" = { 11598 + "simple-git-3.28.0" = { 11896 11599 name = "simple-git"; 11897 11600 packageName = "simple-git"; 11898 - version = "3.27.0"; 11601 + version = "3.28.0"; 11899 11602 src = fetchurl { 11900 - url = "https://registry.npmjs.org/simple-git/-/simple-git-3.27.0.tgz"; 11901 - sha512 = "ivHoFS9Yi9GY49ogc6/YAi3Fl9ROnF4VyubNylgCkA+RVqLaKWnDSzXOVzya8csELIaWaYNutsEuAhZrtOjozA=="; 11603 + url = "https://registry.npmjs.org/simple-git/-/simple-git-3.28.0.tgz"; 11604 + sha512 = "Rs/vQRwsn1ILH1oBUy8NucJlXmnnLeLCfcvbSehkPzbv3wwoFWIdtfd6Ndo6ZPhlPsCZ60CPI4rxurnwAa+a2w=="; 11902 11605 }; 11903 11606 }; 11904 11607 "simple-swizzle-0.2.2" = { ··· 11946 11649 sha512 = "ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg=="; 11947 11650 }; 11948 11651 }; 11949 - "slice-ansi-4.0.0" = { 11950 - name = "slice-ansi"; 11951 - packageName = "slice-ansi"; 11952 - version = "4.0.0"; 11953 - src = fetchurl { 11954 - url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz"; 11955 - sha512 = "qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ=="; 11956 - }; 11957 - }; 11958 11652 "smart-buffer-4.2.0" = { 11959 11653 name = "smart-buffer"; 11960 11654 packageName = "smart-buffer"; ··· 12018 11712 sha512 = "5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g=="; 12019 11713 }; 12020 11714 }; 12021 - "socks-2.8.4" = { 11715 + "socks-2.8.5" = { 12022 11716 name = "socks"; 12023 11717 packageName = "socks"; 12024 - version = "2.8.4"; 11718 + version = "2.8.5"; 12025 11719 src = fetchurl { 12026 - url = "https://registry.npmjs.org/socks/-/socks-2.8.4.tgz"; 12027 - sha512 = "D3YaD0aRxR3mEcqnidIs7ReYJFVzWdd6fXJYUM8ixcQcJRGTka/b3saV0KflYhyVJXKhb947GndU35SxYNResQ=="; 11720 + url = "https://registry.npmjs.org/socks/-/socks-2.8.5.tgz"; 11721 + sha512 = "iF+tNDQla22geJdTyJB1wM/qrX9DMRwWrciEPwWLPRWAUEM8sQiyxgckLxWT1f7+9VabJS0jTGGr4QgBuvi6Ww=="; 12028 11722 }; 12029 11723 }; 12030 11724 "socks-proxy-agent-8.0.5" = { ··· 12297 11991 sha512 = "RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ=="; 12298 11992 }; 12299 11993 }; 12300 - "stealthy-require-1.1.1" = { 12301 - name = "stealthy-require"; 12302 - packageName = "stealthy-require"; 12303 - version = "1.1.1"; 11994 + "stop-iteration-iterator-1.1.0" = { 11995 + name = "stop-iteration-iterator"; 11996 + packageName = "stop-iteration-iterator"; 11997 + version = "1.1.0"; 12304 11998 src = fetchurl { 12305 - url = "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz"; 12306 - sha512 = "ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g=="; 11999 + url = "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz"; 12000 + sha512 = "eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ=="; 12307 12001 }; 12308 12002 }; 12309 12003 "stream-browserify-2.0.2" = { ··· 12675 12369 sha512 = "qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ=="; 12676 12370 }; 12677 12371 }; 12678 - "supports-color-7.1.0" = { 12679 - name = "supports-color"; 12680 - packageName = "supports-color"; 12681 - version = "7.1.0"; 12682 - src = fetchurl { 12683 - url = "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz"; 12684 - sha512 = "oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g=="; 12685 - }; 12686 - }; 12687 12372 "supports-color-7.2.0" = { 12688 12373 name = "supports-color"; 12689 12374 packageName = "supports-color"; ··· 12738 12423 sha512 = "GTt8rSKje5FilG+wEdfCkOcLL7LWqpMlr2c3LRuKt/YXxcJ52aGSbGBAdI4L3aaqfrBt6y711El53ItyH1NWzg=="; 12739 12424 }; 12740 12425 }; 12741 - "table-6.9.0" = { 12742 - name = "table"; 12743 - packageName = "table"; 12744 - version = "6.9.0"; 12745 - src = fetchurl { 12746 - url = "https://registry.npmjs.org/table/-/table-6.9.0.tgz"; 12747 - sha512 = "9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A=="; 12748 - }; 12749 - }; 12750 12426 "tapable-1.1.3" = { 12751 12427 name = "tapable"; 12752 12428 packageName = "tapable"; ··· 12756 12432 sha512 = "4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA=="; 12757 12433 }; 12758 12434 }; 12759 - "tar-4.4.19" = { 12760 - name = "tar"; 12761 - packageName = "tar"; 12762 - version = "4.4.19"; 12763 - src = fetchurl { 12764 - url = "https://registry.npmjs.org/tar/-/tar-4.4.19.tgz"; 12765 - sha512 = "a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA=="; 12766 - }; 12767 - }; 12768 - "tar-6.2.1" = { 12769 - name = "tar"; 12770 - packageName = "tar"; 12771 - version = "6.2.1"; 12772 - src = fetchurl { 12773 - url = "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz"; 12774 - sha512 = "DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A=="; 12775 - }; 12776 - }; 12777 12435 "tar-7.4.3" = { 12778 12436 name = "tar"; 12779 12437 packageName = "tar"; ··· 12781 12439 src = fetchurl { 12782 12440 url = "https://registry.npmjs.org/tar/-/tar-7.4.3.tgz"; 12783 12441 sha512 = "5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw=="; 12784 - }; 12785 - }; 12786 - "temp-0.9.0" = { 12787 - name = "temp"; 12788 - packageName = "temp"; 12789 - version = "0.9.0"; 12790 - src = fetchurl { 12791 - url = "https://registry.npmjs.org/temp/-/temp-0.9.0.tgz"; 12792 - sha512 = "YfUhPQCJoNQE5N+FJQcdPz63O3x3sdT4Xju69Gj4iZe0lBKOtnAMi0SLj9xKhGkcGhsxThvTJ/usxtFPo438zQ=="; 12793 12442 }; 12794 12443 }; 12795 12444 "temp-0.9.4" = { ··· 12819 12468 sha512 = "zVotuHoIfnYjtlurOouTazciEfL7V38QMAOhGqpXDEg6yT13cF4+fEP9b0rrCEQTn+tT46uxgFsTZzhygk+CzQ=="; 12820 12469 }; 12821 12470 }; 12822 - "terser-5.39.0" = { 12471 + "terser-5.42.0" = { 12823 12472 name = "terser"; 12824 12473 packageName = "terser"; 12825 - version = "5.39.0"; 12474 + version = "5.42.0"; 12826 12475 src = fetchurl { 12827 - url = "https://registry.npmjs.org/terser/-/terser-5.39.0.tgz"; 12828 - sha512 = "LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw=="; 12476 + url = "https://registry.npmjs.org/terser/-/terser-5.42.0.tgz"; 12477 + sha512 = "UYCvU9YQW2f/Vwl+P0GfhxJxbUGLwd+5QrrGgLajzWAtC/23AX0vcise32kkP7Eu0Wu9VlzzHAXkLObgjQfFlQ=="; 12829 12478 }; 12830 12479 }; 12831 12480 "terser-webpack-plugin-1.4.6" = { ··· 12909 12558 sha512 = "qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A=="; 12910 12559 }; 12911 12560 }; 12561 + "tinyglobby-0.2.14" = { 12562 + name = "tinyglobby"; 12563 + packageName = "tinyglobby"; 12564 + version = "0.2.14"; 12565 + src = fetchurl { 12566 + url = "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.14.tgz"; 12567 + sha512 = "tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ=="; 12568 + }; 12569 + }; 12912 12570 "tmp-0.0.31" = { 12913 12571 name = "tmp"; 12914 12572 packageName = "tmp"; ··· 13008 12666 sha512 = "o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA=="; 13009 12667 }; 13010 12668 }; 13011 - "touch-3.1.1" = { 13012 - name = "touch"; 13013 - packageName = "touch"; 13014 - version = "3.1.1"; 13015 - src = fetchurl { 13016 - url = "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz"; 13017 - sha512 = "r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA=="; 13018 - }; 13019 - }; 13020 12669 "tough-cookie-2.4.3" = { 13021 12670 name = "tough-cookie"; 13022 12671 packageName = "tough-cookie"; ··· 13044 12693 sha512 = "N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="; 13045 12694 }; 13046 12695 }; 13047 - "traverse-0.3.9" = { 13048 - name = "traverse"; 13049 - packageName = "traverse"; 13050 - version = "0.3.9"; 13051 - src = fetchurl { 13052 - url = "https://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz"; 13053 - sha512 = "iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ=="; 13054 - }; 13055 - }; 13056 12696 "traverse-chain-0.1.0" = { 13057 12697 name = "traverse-chain"; 13058 12698 packageName = "traverse-chain"; ··· 13062 12702 sha512 = "up6Yvai4PYKhpNp5PkYtx50m3KbwQrqDwbuZP/ItyL64YEWHAvH6Md83LFLV/GRSk/BoUVwwgUzX6SOQSbsfAg=="; 13063 12703 }; 13064 12704 }; 13065 - "tree-dump-1.0.2" = { 12705 + "tree-dump-1.0.3" = { 13066 12706 name = "tree-dump"; 13067 12707 packageName = "tree-dump"; 13068 - version = "1.0.2"; 12708 + version = "1.0.3"; 13069 12709 src = fetchurl { 13070 - url = "https://registry.npmjs.org/tree-dump/-/tree-dump-1.0.2.tgz"; 13071 - sha512 = "dpev9ABuLWdEubk+cIaI9cHwRNNDjkBBLXTwI4UCUFdQ5xXKqNXoK4FEciw/vxf+NQ7Cb7sGUyeUtORvHIdRXQ=="; 12710 + url = "https://registry.npmjs.org/tree-dump/-/tree-dump-1.0.3.tgz"; 12711 + sha512 = "il+Cv80yVHFBwokQSfd4bldvr1Md951DpgAGfmhydt04L+YzHgubm2tQ7zueWDcGENKHq0ZvGFR/hjvNXilHEg=="; 13072 12712 }; 13073 12713 }; 13074 12714 "ts-debounce-4.0.0" = { ··· 13107 12747 sha512 = "oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="; 13108 12748 }; 13109 12749 }; 13110 - "tsx-4.19.2" = { 12750 + "tsx-4.20.2" = { 13111 12751 name = "tsx"; 13112 12752 packageName = "tsx"; 13113 - version = "4.19.2"; 12753 + version = "4.20.2"; 13114 12754 src = fetchurl { 13115 - url = "https://registry.npmjs.org/tsx/-/tsx-4.19.2.tgz"; 13116 - sha512 = "pOUl6Vo2LUq/bSa8S5q7b91cgNSjctn9ugq/+Mvow99qW6x/UZYwzxy/3NmqoT66eHYfCVvFvACC58UBPFf28g=="; 12755 + url = "https://registry.npmjs.org/tsx/-/tsx-4.20.2.tgz"; 12756 + sha512 = "He0ZWr41gLa4vD30Au3yuwpe0HXaCZbclvl8RBieUiJ9aFnPMWUPIyvw3RU8+1Crjfcrauvitae2a4tUzRAGsw=="; 13117 12757 }; 13118 12758 }; 13119 - "tsyringe-4.8.0" = { 12759 + "tsyringe-4.10.0" = { 13120 12760 name = "tsyringe"; 13121 12761 packageName = "tsyringe"; 13122 - version = "4.8.0"; 12762 + version = "4.10.0"; 13123 12763 src = fetchurl { 13124 - url = "https://registry.npmjs.org/tsyringe/-/tsyringe-4.8.0.tgz"; 13125 - sha512 = "YB1FG+axdxADa3ncEtRnQCFq/M0lALGLxSZeVNbTU8NqhOVc51nnv2CISTcvc1kyv6EGPtXVr0v6lWeDxiijOA=="; 12764 + url = "https://registry.npmjs.org/tsyringe/-/tsyringe-4.10.0.tgz"; 12765 + sha512 = "axr3IdNuVIxnaK5XGEUFTu3YmAQ6lllgrvqfEoR16g/HGnYY/6We4oWENtAnzK6/LpJ2ur9PAb80RBt7/U4ugw=="; 13126 12766 }; 13127 12767 }; 13128 12768 "tty-browserify-0.0.0" = { ··· 13305 12945 sha512 = "nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw=="; 13306 12946 }; 13307 12947 }; 13308 - "undici-types-6.20.0" = { 12948 + "undici-types-7.8.0" = { 13309 12949 name = "undici-types"; 13310 12950 packageName = "undici-types"; 13311 - version = "6.20.0"; 12951 + version = "7.8.0"; 13312 12952 src = fetchurl { 13313 - url = "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz"; 13314 - sha512 = "Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg=="; 12953 + url = "https://registry.npmjs.org/undici-types/-/undici-types-7.8.0.tgz"; 12954 + sha512 = "9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw=="; 13315 12955 }; 13316 12956 }; 13317 12957 "unicode-canonical-property-names-ecmascript-2.0.1" = { ··· 13350 12990 sha512 = "6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w=="; 13351 12991 }; 13352 12992 }; 13353 - "unicorn-magic-0.1.0" = { 12993 + "unicorn-magic-0.3.0" = { 13354 12994 name = "unicorn-magic"; 13355 12995 packageName = "unicorn-magic"; 13356 - version = "0.1.0"; 12996 + version = "0.3.0"; 13357 12997 src = fetchurl { 13358 - url = "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz"; 13359 - sha512 = "lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ=="; 12998 + url = "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz"; 12999 + sha512 = "+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA=="; 13360 13000 }; 13361 13001 }; 13362 13002 "union-value-1.0.1" = { ··· 13467 13107 sha512 = "PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ=="; 13468 13108 }; 13469 13109 }; 13470 - "unzip-stream-0.3.4" = { 13471 - name = "unzip-stream"; 13472 - packageName = "unzip-stream"; 13473 - version = "0.3.4"; 13474 - src = fetchurl { 13475 - url = "https://registry.npmjs.org/unzip-stream/-/unzip-stream-0.3.4.tgz"; 13476 - sha512 = "PyofABPVv+d7fL7GOpusx7eRT9YETY2X04PhwbSipdj6bMxVCFJrr+nm0Mxqbf9hUiTin/UsnuFWBXlDZFy0Cw=="; 13477 - }; 13478 - }; 13479 13110 "upath-1.2.0" = { 13480 13111 name = "upath"; 13481 13112 packageName = "upath"; ··· 13494 13125 sha512 = "1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w=="; 13495 13126 }; 13496 13127 }; 13497 - "update-browserslist-db-1.1.2" = { 13128 + "update-browserslist-db-1.1.3" = { 13498 13129 name = "update-browserslist-db"; 13499 13130 packageName = "update-browserslist-db"; 13500 - version = "1.1.2"; 13501 - src = fetchurl { 13502 - url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.2.tgz"; 13503 - sha512 = "PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg=="; 13504 - }; 13505 - }; 13506 - "upgrade-1.1.0" = { 13507 - name = "upgrade"; 13508 - packageName = "upgrade"; 13509 - version = "1.1.0"; 13131 + version = "1.1.3"; 13510 13132 src = fetchurl { 13511 - url = "https://registry.npmjs.org/upgrade/-/upgrade-1.1.0.tgz"; 13512 - sha512 = "NtkVvqVCqsJo5U3mYRum2Tw6uCltOxfIJ/AfTZeTmw6U39IB5X23xF+kRZ9aiPaORqeiQQ7Q209/ibhOvxzwHA=="; 13133 + url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz"; 13134 + sha512 = "UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw=="; 13513 13135 }; 13514 13136 }; 13515 13137 "uri-js-4.4.1" = { ··· 13701 13323 sha512 = "ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw=="; 13702 13324 }; 13703 13325 }; 13704 - "vite-6.1.0" = { 13326 + "vite-6.3.5" = { 13705 13327 name = "vite"; 13706 13328 packageName = "vite"; 13707 - version = "6.1.0"; 13329 + version = "6.3.5"; 13708 13330 src = fetchurl { 13709 - url = "https://registry.npmjs.org/vite/-/vite-6.1.0.tgz"; 13710 - sha512 = "RjjMipCKVoR4hVfPY6GQTgveinjNuyLw+qruksLDvA5ktI1150VmcMBKmQaEWJhg/j6Uaf6dNCNA0AfdzUb/hQ=="; 13331 + url = "https://registry.npmjs.org/vite/-/vite-6.3.5.tgz"; 13332 + sha512 = "cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ=="; 13711 13333 }; 13712 13334 }; 13713 13335 "vm-browserify-1.1.2" = { ··· 13935 13557 sha512 = "HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ=="; 13936 13558 }; 13937 13559 }; 13938 - "which-2.0.1" = { 13939 - name = "which"; 13940 - packageName = "which"; 13941 - version = "2.0.1"; 13942 - src = fetchurl { 13943 - url = "https://registry.npmjs.org/which/-/which-2.0.1.tgz"; 13944 - sha512 = "N7GBZOTswtB9lkQBZA4+zAXrjEIWAUOB93AvzUiudRzRxhUdLURQ7D/gAIMY1gatT/LTbmbcv8SiYazy3eYB7w=="; 13945 - }; 13946 - }; 13947 13560 "which-2.0.2" = { 13948 13561 name = "which"; 13949 13562 packageName = "which"; ··· 14007 13620 sha512 = "iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ=="; 14008 13621 }; 14009 13622 }; 14010 - "which-typed-array-1.1.18" = { 13623 + "which-typed-array-1.1.19" = { 14011 13624 name = "which-typed-array"; 14012 13625 packageName = "which-typed-array"; 14013 - version = "1.1.18"; 13626 + version = "1.1.19"; 14014 13627 src = fetchurl { 14015 - url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.18.tgz"; 14016 - sha512 = "qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA=="; 13628 + url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz"; 13629 + sha512 = "rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw=="; 14017 13630 }; 14018 13631 }; 14019 13632 "winston-2.1.1" = { ··· 14196 13809 sha512 = "QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q=="; 14197 13810 }; 14198 13811 }; 14199 - "wrap-ansi-6.2.0" = { 14200 - name = "wrap-ansi"; 14201 - packageName = "wrap-ansi"; 14202 - version = "6.2.0"; 14203 - src = fetchurl { 14204 - url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz"; 14205 - sha512 = "r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA=="; 14206 - }; 14207 - }; 14208 13812 "wrap-ansi-7.0.0" = { 14209 13813 name = "wrap-ansi"; 14210 13814 packageName = "wrap-ansi"; ··· 14286 13890 sha512 = "+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ=="; 14287 13891 }; 14288 13892 }; 14289 - "ws-8.18.0" = { 13893 + "ws-8.18.2" = { 14290 13894 name = "ws"; 14291 13895 packageName = "ws"; 14292 - version = "8.18.0"; 14293 - src = fetchurl { 14294 - url = "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz"; 14295 - sha512 = "8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw=="; 14296 - }; 14297 - }; 14298 - "xmlbuilder-13.0.2" = { 14299 - name = "xmlbuilder"; 14300 - packageName = "xmlbuilder"; 14301 - version = "13.0.2"; 13896 + version = "8.18.2"; 14302 13897 src = fetchurl { 14303 - url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-13.0.2.tgz"; 14304 - sha512 = "Eux0i2QdDYKbdbA6AM6xE4m6ZTZr4G4xF9kahI2ukSEMCzwce2eX9WlTI5J3s+NU7hpasFsr8hWIONae7LluAQ=="; 13898 + url = "https://registry.npmjs.org/ws/-/ws-8.18.2.tgz"; 13899 + sha512 = "DMricUmwGZUVr++AEAe2uiVM7UoO9MAVZMDu05UQOaUII0lp+zOzLLU4Xqh/JvTqklB1T4uELaaPBKyjE1r4fQ=="; 14305 13900 }; 14306 13901 }; 14307 13902 "xmlbuilder-15.1.1" = { ··· 14403 13998 sha512 = "r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg=="; 14404 13999 }; 14405 14000 }; 14406 - "yaml-2.7.0" = { 14001 + "yaml-2.8.0" = { 14407 14002 name = "yaml"; 14408 14003 packageName = "yaml"; 14409 - version = "2.7.0"; 14004 + version = "2.8.0"; 14410 14005 src = fetchurl { 14411 - url = "https://registry.npmjs.org/yaml/-/yaml-2.7.0.tgz"; 14412 - sha512 = "+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA=="; 14006 + url = "https://registry.npmjs.org/yaml/-/yaml-2.8.0.tgz"; 14007 + sha512 = "4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ=="; 14413 14008 }; 14414 14009 }; 14415 14010 "yargs-13.3.2" = { ··· 14421 14016 sha512 = "AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw=="; 14422 14017 }; 14423 14018 }; 14424 - "yargs-15.4.1" = { 14425 - name = "yargs"; 14426 - packageName = "yargs"; 14427 - version = "15.4.1"; 14428 - src = fetchurl { 14429 - url = "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz"; 14430 - sha512 = "aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A=="; 14431 - }; 14432 - }; 14433 14019 "yargs-17.7.2" = { 14434 14020 name = "yargs"; 14435 14021 packageName = "yargs"; ··· 14455 14041 src = fetchurl { 14456 14042 url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz"; 14457 14043 sha512 = "3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg=="; 14458 - }; 14459 - }; 14460 - "yargs-parser-18.1.3" = { 14461 - name = "yargs-parser"; 14462 - packageName = "yargs-parser"; 14463 - version = "18.1.3"; 14464 - src = fetchurl { 14465 - url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz"; 14466 - sha512 = "o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ=="; 14467 14044 }; 14468 14045 }; 14469 14046 "yargs-parser-21.1.1" = { ··· 14713 14290 bypassCache = true; 14714 14291 reconstructLock = true; 14715 14292 }; 14716 - elm-coverage = nodeEnv.buildNodePackage { 14717 - name = "elm-coverage"; 14718 - packageName = "elm-coverage"; 14719 - version = "0.4.1"; 14720 - src = fetchurl { 14721 - url = "https://registry.npmjs.org/elm-coverage/-/elm-coverage-0.4.1.tgz"; 14722 - sha512 = "flFXaCikbA6NccBEvrFIgJj9up7rc9A8aOwe0o0Erruvk5f5idWu3/gIBfqTaos7Xc2Fz6fshYyoH5sfyt1r7g=="; 14723 - }; 14724 - dependencies = [ 14725 - sources."ajv-6.12.6" 14726 - sources."ansi-regex-5.0.1" 14727 - sources."ansi-styles-3.2.1" 14728 - sources."anymatch-3.1.3" 14729 - sources."asn1-0.2.6" 14730 - sources."assert-plus-1.0.0" 14731 - sources."astral-regex-2.0.0" 14732 - sources."asynckit-0.4.0" 14733 - sources."aws-sign2-0.7.0" 14734 - sources."aws4-1.13.2" 14735 - sources."balanced-match-1.0.2" 14736 - sources."bcrypt-pbkdf-1.0.2" 14737 - sources."binary-0.3.0" 14738 - sources."binary-extensions-2.3.0" 14739 - sources."binwrap-0.2.3" 14740 - sources."bluebird-3.7.2" 14741 - sources."brace-expansion-1.1.11" 14742 - sources."braces-3.0.3" 14743 - sources."buffers-0.1.1" 14744 - sources."camelcase-5.3.1" 14745 - sources."caseless-0.12.0" 14746 - sources."chainsaw-0.1.0" 14747 - ( 14748 - sources."chalk-2.4.2" 14749 - // { 14750 - dependencies = [ 14751 - sources."supports-color-5.5.0" 14752 - ]; 14753 - } 14754 - ) 14755 - sources."chokidar-3.2.1" 14756 - sources."chownr-2.0.0" 14757 - sources."cliui-6.0.0" 14758 - sources."color-convert-1.9.3" 14759 - sources."color-name-1.1.3" 14760 - sources."combined-stream-1.0.8" 14761 - sources."concat-map-0.0.1" 14762 - sources."core-util-is-1.0.2" 14763 - sources."cross-spawn-5.1.0" 14764 - sources."dashdash-1.14.1" 14765 - sources."decamelize-1.2.0" 14766 - sources."delayed-stream-1.0.0" 14767 - sources."ecc-jsbn-0.1.2" 14768 - sources."elm-0.19.1" 14769 - ( 14770 - sources."elm-test-0.19.1" 14771 - // { 14772 - dependencies = [ 14773 - ( 14774 - sources."cross-spawn-7.0.0" 14775 - // { 14776 - dependencies = [ 14777 - sources."which-1.3.1" 14778 - ]; 14779 - } 14780 - ) 14781 - sources."fs-extra-8.1.0" 14782 - sources."lodash-4.17.15" 14783 - sources."which-2.0.1" 14784 - ]; 14785 - } 14786 - ) 14787 - ( 14788 - sources."elmi-to-json-1.2.0" 14789 - // { 14790 - dependencies = [ 14791 - sources."binwrap-0.2.2" 14792 - sources."chownr-1.1.4" 14793 - sources."fs-minipass-1.2.7" 14794 - sources."minipass-2.9.0" 14795 - sources."minizlib-1.3.3" 14796 - sources."mkdirp-0.5.6" 14797 - sources."tar-4.4.19" 14798 - sources."yallist-3.1.1" 14799 - ]; 14800 - } 14801 - ) 14802 - sources."emoji-regex-8.0.0" 14803 - sources."escape-string-regexp-1.0.5" 14804 - sources."extend-3.0.2" 14805 - sources."extsprintf-1.3.0" 14806 - sources."fast-deep-equal-3.1.3" 14807 - sources."fast-json-stable-stringify-2.1.0" 14808 - sources."fast-uri-3.0.6" 14809 - sources."fill-range-7.1.1" 14810 - sources."find-0.2.9" 14811 - ( 14812 - sources."find-elm-dependencies-2.0.2" 14813 - // { 14814 - dependencies = [ 14815 - sources."firstline-1.2.0" 14816 - sources."lodash-4.17.15" 14817 - ]; 14818 - } 14819 - ) 14820 - sources."find-parent-dir-0.3.1" 14821 - sources."find-up-4.1.0" 14822 - sources."firstline-2.0.2" 14823 - sources."forever-agent-0.6.1" 14824 - sources."form-data-2.3.3" 14825 - sources."fs-extra-4.0.3" 14826 - ( 14827 - sources."fs-minipass-2.1.0" 14828 - // { 14829 - dependencies = [ 14830 - sources."minipass-3.3.6" 14831 - ]; 14832 - } 14833 - ) 14834 - sources."fs.realpath-1.0.0" 14835 - sources."fsevents-2.1.3" 14836 - sources."get-caller-file-2.0.5" 14837 - sources."getpass-0.1.7" 14838 - sources."glob-7.1.4" 14839 - sources."glob-parent-5.1.2" 14840 - sources."graceful-fs-4.2.11" 14841 - sources."har-schema-2.0.0" 14842 - sources."har-validator-5.1.5" 14843 - sources."has-flag-3.0.0" 14844 - sources."http-signature-1.2.0" 14845 - sources."inflight-1.0.6" 14846 - sources."inherits-2.0.4" 14847 - sources."is-binary-path-2.1.0" 14848 - sources."is-extglob-2.1.1" 14849 - sources."is-fullwidth-code-point-3.0.0" 14850 - sources."is-glob-4.0.3" 14851 - sources."is-number-7.0.0" 14852 - sources."is-typedarray-1.0.0" 14853 - sources."is-wsl-1.1.0" 14854 - sources."isexe-2.0.0" 14855 - sources."isstream-0.1.2" 14856 - sources."jsbn-0.1.1" 14857 - sources."json-schema-0.4.0" 14858 - sources."json-schema-traverse-0.4.1" 14859 - sources."json-stringify-safe-5.0.1" 14860 - sources."jsonfile-4.0.0" 14861 - sources."jsprim-1.4.2" 14862 - sources."locate-path-5.0.0" 14863 - sources."lodash-4.17.21" 14864 - sources."lodash.truncate-4.4.2" 14865 - ( 14866 - sources."lru-cache-4.1.5" 14867 - // { 14868 - dependencies = [ 14869 - sources."yallist-2.1.2" 14870 - ]; 14871 - } 14872 - ) 14873 - sources."mime-db-1.52.0" 14874 - sources."mime-types-2.1.35" 14875 - sources."minimatch-3.1.2" 14876 - sources."minimist-1.2.8" 14877 - sources."minipass-5.0.0" 14878 - ( 14879 - sources."minizlib-2.1.2" 14880 - // { 14881 - dependencies = [ 14882 - sources."minipass-3.3.6" 14883 - ]; 14884 - } 14885 - ) 14886 - sources."mkdirp-1.0.4" 14887 - sources."moment-2.30.1" 14888 - sources."murmur-hash-js-1.0.0" 14889 - sources."mustache-3.2.1" 14890 - sources."nice-try-1.0.5" 14891 - ( 14892 - sources."node-elm-compiler-5.0.4" 14893 - // { 14894 - dependencies = [ 14895 - sources."cross-spawn-6.0.5" 14896 - sources."lodash-4.17.15" 14897 - sources."path-key-2.0.1" 14898 - ]; 14899 - } 14900 - ) 14901 - sources."normalize-path-3.0.0" 14902 - sources."oauth-sign-0.9.0" 14903 - sources."once-1.4.0" 14904 - sources."opn-5.5.0" 14905 - sources."os-tmpdir-1.0.2" 14906 - sources."p-limit-2.3.0" 14907 - sources."p-locate-4.1.0" 14908 - sources."p-try-2.2.0" 14909 - sources."path-exists-4.0.0" 14910 - sources."path-is-absolute-1.0.1" 14911 - sources."path-key-3.1.1" 14912 - sources."performance-now-2.1.0" 14913 - sources."picomatch-2.3.1" 14914 - sources."pseudomap-1.0.2" 14915 - sources."psl-1.15.0" 14916 - sources."punycode-2.3.1" 14917 - sources."qs-6.5.3" 14918 - sources."readdirp-3.1.3" 14919 - sources."request-2.88.2" 14920 - sources."request-promise-4.2.6" 14921 - sources."request-promise-core-1.1.4" 14922 - sources."require-directory-2.1.1" 14923 - sources."require-from-string-2.0.2" 14924 - sources."require-main-filename-2.0.0" 14925 - sources."rimraf-2.6.3" 14926 - sources."safe-buffer-5.2.1" 14927 - sources."safer-buffer-2.1.2" 14928 - sources."semver-5.7.2" 14929 - sources."set-blocking-2.0.0" 14930 - sources."shebang-command-1.2.0" 14931 - sources."shebang-regex-1.0.0" 14932 - ( 14933 - sources."slice-ansi-4.0.0" 14934 - // { 14935 - dependencies = [ 14936 - sources."ansi-styles-4.3.0" 14937 - sources."color-convert-2.0.1" 14938 - sources."color-name-1.1.4" 14939 - ]; 14940 - } 14941 - ) 14942 - sources."split-1.0.1" 14943 - sources."sshpk-1.18.0" 14944 - sources."stealthy-require-1.1.1" 14945 - sources."string-width-4.2.3" 14946 - sources."strip-ansi-6.0.1" 14947 - ( 14948 - sources."supports-color-7.1.0" 14949 - // { 14950 - dependencies = [ 14951 - sources."has-flag-4.0.0" 14952 - ]; 14953 - } 14954 - ) 14955 - ( 14956 - sources."table-6.9.0" 14957 - // { 14958 - dependencies = [ 14959 - sources."ajv-8.17.1" 14960 - sources."json-schema-traverse-1.0.0" 14961 - ]; 14962 - } 14963 - ) 14964 - sources."tar-6.2.1" 14965 - sources."temp-0.9.0" 14966 - sources."through-2.3.8" 14967 - sources."tmp-0.0.33" 14968 - sources."to-regex-range-5.0.1" 14969 - sources."touch-3.1.1" 14970 - sources."tough-cookie-2.5.0" 14971 - sources."traverse-0.3.9" 14972 - sources."traverse-chain-0.1.0" 14973 - sources."tunnel-agent-0.6.0" 14974 - sources."tweetnacl-0.14.5" 14975 - sources."universalify-0.1.2" 14976 - ( 14977 - sources."unzip-stream-0.3.4" 14978 - // { 14979 - dependencies = [ 14980 - sources."mkdirp-0.5.6" 14981 - ]; 14982 - } 14983 - ) 14984 - sources."upgrade-1.1.0" 14985 - sources."uri-js-4.4.1" 14986 - sources."uuid-3.4.0" 14987 - sources."verror-1.10.0" 14988 - sources."which-1.3.1" 14989 - sources."which-module-2.0.1" 14990 - ( 14991 - sources."wrap-ansi-6.2.0" 14992 - // { 14993 - dependencies = [ 14994 - sources."ansi-styles-4.3.0" 14995 - sources."color-convert-2.0.1" 14996 - sources."color-name-1.1.4" 14997 - ]; 14998 - } 14999 - ) 15000 - sources."wrappy-1.0.2" 15001 - sources."xmlbuilder-13.0.2" 15002 - sources."y18n-4.0.3" 15003 - sources."yallist-4.0.0" 15004 - sources."yargs-15.4.1" 15005 - sources."yargs-parser-18.1.3" 15006 - ]; 15007 - buildInputs = globalBuildInputs; 15008 - meta = { 15009 - description = "> Work in progress - Code coverage tooling for Elm"; 15010 - homepage = "https://github.com/zwilias/elm-coverage#readme"; 15011 - license = "BSD-3-Clause"; 15012 - }; 15013 - production = true; 15014 - bypassCache = true; 15015 - reconstructLock = true; 15016 - }; 15017 14293 elm-doc-preview = nodeEnv.buildNodePackage { 15018 14294 name = "elm-doc-preview"; 15019 14295 packageName = "elm-doc-preview"; ··· 15032 14308 sources."ansi-styles-6.2.1" 15033 14309 sources."anymatch-3.1.3" 15034 14310 sources."array-flatten-1.1.1" 15035 - sources."balanced-match-1.0.2" 14311 + sources."balanced-match-3.0.1" 15036 14312 sources."batch-0.6.1" 15037 14313 sources."binary-extensions-2.3.0" 15038 14314 sources."body-parser-1.20.3" 15039 - sources."brace-expansion-2.0.1" 14315 + sources."brace-expansion-4.0.1" 15040 14316 sources."braces-3.0.3" 15041 14317 sources."bufferutil-4.0.9" 15042 14318 sources."bundle-name-4.1.0" 15043 14319 sources."bytes-3.1.2" 15044 14320 sources."call-bind-apply-helpers-1.0.2" 15045 - sources."call-bound-1.0.3" 14321 + sources."call-bound-1.0.4" 15046 14322 sources."chalk-5.4.1" 15047 14323 sources."chokidar-3.6.0" 15048 14324 sources."color-convert-2.0.1" ··· 15089 14365 ) 15090 14366 sources."fill-range-7.1.1" 15091 14367 sources."finalhandler-1.3.1" 15092 - sources."foreground-child-3.3.0" 14368 + sources."foreground-child-3.3.1" 15093 14369 sources."forwarded-0.2.0" 15094 14370 sources."fresh-0.5.2" 15095 14371 sources."function-bind-1.1.2" 15096 - sources."get-intrinsic-1.2.7" 14372 + sources."get-intrinsic-1.3.0" 15097 14373 sources."get-proto-1.0.1" 15098 - sources."glob-11.0.1" 14374 + sources."glob-11.0.2" 15099 14375 sources."glob-parent-5.1.2" 15100 14376 sources."gopd-1.2.0" 15101 14377 sources."graceful-fs-4.2.10" ··· 15115 14391 sources."is-number-7.0.0" 15116 14392 sources."is-wsl-3.1.0" 15117 14393 sources."isexe-2.0.0" 15118 - sources."jackspeak-4.0.3" 15119 - sources."ky-1.7.5" 14394 + sources."jackspeak-4.1.1" 14395 + sources."ky-1.8.1" 15120 14396 sources."latest-version-9.0.0" 15121 - sources."lru-cache-11.0.2" 14397 + sources."lru-cache-11.1.0" 15122 14398 sources."math-intrinsics-1.1.0" 15123 14399 sources."media-typer-0.3.0" 15124 14400 sources."merge-descriptors-1.0.3" ··· 15126 14402 sources."mime-1.6.0" 15127 14403 sources."mime-db-1.52.0" 15128 14404 sources."mime-types-2.1.35" 15129 - sources."minimatch-10.0.1" 14405 + sources."minimatch-10.0.2" 15130 14406 sources."minimist-1.2.8" 15131 14407 sources."minipass-7.1.2" 15132 14408 sources."ms-2.1.3" ··· 15135 14411 sources."normalize-path-3.0.0" 15136 14412 sources."object-inspect-1.13.4" 15137 14413 sources."on-finished-2.4.1" 15138 - sources."open-10.1.0" 14414 + sources."open-10.1.2" 15139 14415 sources."package-json-10.0.1" 15140 14416 sources."package-json-from-dist-1.0.1" 15141 14417 sources."parseurl-1.3.3" ··· 15155 14431 sources."run-applescript-7.0.0" 15156 14432 sources."safe-buffer-5.2.1" 15157 14433 sources."safer-buffer-2.1.2" 15158 - sources."semver-7.7.1" 14434 + sources."semver-7.7.2" 15159 14435 ( 15160 14436 sources."send-0.19.0" 15161 14437 // { ··· 15227 14503 ]; 15228 14504 } 15229 14505 ) 15230 - sources."ws-8.18.0" 14506 + sources."ws-8.18.2" 15231 14507 ]; 15232 14508 buildInputs = globalBuildInputs; 15233 14509 meta = { ··· 15262 14538 sources."execa-5.1.1" 15263 14539 sources."fast-diff-1.3.0" 15264 14540 sources."fast-glob-3.3.3" 15265 - sources."fastq-1.19.0" 14541 + sources."fastq-1.19.1" 15266 14542 sources."fill-range-7.1.1" 15267 14543 sources."get-stream-6.0.1" 15268 14544 sources."glob-parent-5.1.2" ··· 15290 14566 sources."readdirp-3.6.0" 15291 14567 sources."reflect-metadata-0.2.2" 15292 14568 sources."request-light-0.7.0" 15293 - sources."reusify-1.0.4" 14569 + sources."reusify-1.1.0" 15294 14570 sources."run-parallel-1.2.0" 15295 14571 sources."shebang-command-2.0.0" 15296 14572 sources."shebang-regex-3.0.0" ··· 15300 14576 sources."to-regex-range-5.0.1" 15301 14577 sources."ts-debounce-4.0.0" 15302 14578 sources."tslib-1.14.1" 15303 - sources."tsyringe-4.8.0" 14579 + sources."tsyringe-4.10.0" 15304 14580 sources."vscode-jsonrpc-8.2.0" 15305 14581 sources."vscode-languageserver-9.0.1" 15306 14582 sources."vscode-languageserver-protocol-3.17.5" ··· 15455 14731 sources."anymatch-3.1.3" 15456 14732 sources."balanced-match-1.0.2" 15457 14733 sources."binary-extensions-2.3.0" 15458 - sources."brace-expansion-1.1.11" 14734 + sources."brace-expansion-1.1.12" 15459 14735 sources."braces-3.0.3" 15460 14736 sources."buffer-from-1.1.2" 15461 14737 sources."bufferutil-4.0.9" ··· 15539 14815 elm-test = nodeEnv.buildNodePackage { 15540 14816 name = "elm-test"; 15541 14817 packageName = "elm-test"; 15542 - version = "0.19.1-revision14"; 14818 + version = "0.19.1-revision15"; 15543 14819 src = fetchurl { 15544 - url = "https://registry.npmjs.org/elm-test/-/elm-test-0.19.1-revision14.tgz"; 15545 - sha512 = "gfQQYtHTeMstGbGbiRHbGKLsQCGI53ozLP22Wqx6YjxXLlNsdT8NS2EGmjkdQSU3ALRhYECtnF//ZUb4wbCpUQ=="; 14820 + url = "https://registry.npmjs.org/elm-test/-/elm-test-0.19.1-revision15.tgz"; 14821 + sha512 = "QusEZmlctM4VePiwemfxwcDrhDHfHXuXau3SedRwWuBBnPQK3/WjMUzULWSbTCYHIj3DgkA84Co+V/nE0161cg=="; 15546 14822 }; 15547 14823 dependencies = [ 15548 - sources."@isaacs/cliui-8.0.2" 15549 - sources."ansi-regex-5.0.1" 15550 - sources."ansi-styles-6.2.1" 14824 + sources."ansi-styles-4.3.0" 15551 14825 sources."anymatch-3.1.3" 15552 - sources."balanced-match-1.0.2" 15553 14826 sources."binary-extensions-2.3.0" 15554 - sources."brace-expansion-2.0.1" 15555 14827 sources."braces-3.0.3" 15556 - ( 15557 - sources."chalk-4.1.2" 15558 - // { 15559 - dependencies = [ 15560 - sources."ansi-styles-4.3.0" 15561 - ]; 15562 - } 15563 - ) 14828 + sources."chalk-4.1.2" 15564 14829 sources."chokidar-3.6.0" 15565 14830 sources."color-convert-2.0.1" 15566 14831 sources."color-name-1.1.4" 15567 14832 sources."commander-9.5.0" 15568 14833 sources."cross-spawn-7.0.6" 15569 - sources."eastasianwidth-0.2.0" 15570 14834 sources."elm-solve-deps-wasm-2.0.0" 15571 - sources."emoji-regex-9.2.2" 14835 + ( 14836 + sources."fdir-6.4.6" 14837 + // { 14838 + dependencies = [ 14839 + sources."picomatch-4.0.2" 14840 + ]; 14841 + } 14842 + ) 15572 14843 sources."fill-range-7.1.1" 15573 - sources."foreground-child-3.3.0" 15574 - sources."glob-10.4.5" 15575 14844 sources."glob-parent-5.1.2" 15576 14845 sources."graceful-fs-4.2.11" 15577 14846 sources."has-flag-4.0.0" 15578 14847 sources."is-binary-path-2.1.0" 15579 14848 sources."is-extglob-2.1.1" 15580 - sources."is-fullwidth-code-point-3.0.0" 15581 14849 sources."is-glob-4.0.3" 15582 14850 sources."is-number-7.0.0" 15583 14851 sources."isexe-2.0.0" 15584 - sources."jackspeak-3.4.3" 15585 - sources."lru-cache-10.4.3" 15586 - sources."minimatch-9.0.5" 15587 - sources."minipass-7.1.2" 15588 14852 sources."normalize-path-3.0.0" 15589 - sources."package-json-from-dist-1.0.1" 15590 14853 sources."path-key-3.1.1" 15591 - sources."path-scurry-1.11.1" 15592 14854 sources."picomatch-2.3.1" 15593 14855 sources."readdirp-3.6.0" 15594 14856 sources."shebang-command-2.0.0" 15595 14857 sources."shebang-regex-3.0.0" 15596 - sources."signal-exit-4.1.0" 15597 14858 sources."split-1.0.1" 15598 - sources."string-width-5.1.2" 15599 - ( 15600 - sources."string-width-cjs-4.2.3" 15601 - // { 15602 - dependencies = [ 15603 - sources."emoji-regex-8.0.0" 15604 - sources."strip-ansi-6.0.1" 15605 - ]; 15606 - } 15607 - ) 14859 + sources."supports-color-7.2.0" 14860 + sources."through-2.3.8" 15608 14861 ( 15609 - sources."strip-ansi-7.1.0" 14862 + sources."tinyglobby-0.2.14" 15610 14863 // { 15611 14864 dependencies = [ 15612 - sources."ansi-regex-6.1.0" 14865 + sources."picomatch-4.0.2" 15613 14866 ]; 15614 14867 } 15615 14868 ) 15616 - sources."strip-ansi-cjs-6.0.1" 15617 - sources."supports-color-7.2.0" 15618 - sources."through-2.3.8" 15619 14869 sources."to-regex-range-5.0.1" 15620 14870 sources."which-2.0.2" 15621 - sources."wrap-ansi-8.1.0" 15622 - ( 15623 - sources."wrap-ansi-cjs-7.0.0" 15624 - // { 15625 - dependencies = [ 15626 - sources."ansi-styles-4.3.0" 15627 - sources."emoji-regex-8.0.0" 15628 - sources."string-width-4.2.3" 15629 - sources."strip-ansi-6.0.1" 15630 - ]; 15631 - } 15632 - ) 15633 14871 sources."xmlbuilder-15.1.1" 15634 14872 ]; 15635 14873 buildInputs = globalBuildInputs; ··· 15656 14894 sources."@types/cacheable-request-6.0.3" 15657 14895 sources."@types/http-cache-semantics-4.0.4" 15658 14896 sources."@types/keyv-3.1.4" 15659 - sources."@types/node-22.13.4" 14897 + sources."@types/node-24.0.1" 15660 14898 sources."@types/responselike-1.0.3" 15661 14899 sources."cacheable-lookup-2.0.1" 15662 14900 sources."cacheable-request-7.0.4" ··· 15681 14919 sources."graceful-fs-4.2.11" 15682 14920 sources."has-symbol-support-x-1.4.2" 15683 14921 sources."has-to-string-tag-x-1.4.1" 15684 - sources."http-cache-semantics-4.1.1" 14922 + sources."http-cache-semantics-4.2.0" 15685 14923 sources."ini-1.3.8" 15686 14924 sources."is-object-1.0.2" 15687 14925 sources."isexe-2.0.0" ··· 15704 14942 sources."responselike-2.0.1" 15705 14943 sources."safe-buffer-5.2.1" 15706 14944 sources."safename-1.0.2" 15707 - sources."semver-7.7.1" 14945 + sources."semver-7.7.2" 15708 14946 sources."to-readable-stream-2.1.0" 15709 14947 sources."tunnel-agent-0.6.0" 15710 14948 sources."type-fest-0.10.0" 15711 - sources."undici-types-6.20.0" 14949 + sources."undici-types-7.8.0" 15712 14950 sources."universalify-0.1.2" 15713 14951 sources."url-to-options-1.0.1" 15714 14952 sources."which-2.0.2" ··· 15738 14976 sources."ansi-regex-5.0.1" 15739 14977 sources."ansi-styles-4.3.0" 15740 14978 sources."balanced-match-1.0.2" 15741 - sources."brace-expansion-2.0.1" 14979 + sources."brace-expansion-2.0.2" 15742 14980 sources."chalk-4.1.2" 15743 14981 ( 15744 14982 sources."cliui-8.0.1" ··· 15757 14995 sources."eastasianwidth-0.2.0" 15758 14996 sources."emoji-regex-9.2.2" 15759 14997 sources."escalade-3.2.0" 15760 - sources."foreground-child-3.3.0" 14998 + sources."foreground-child-3.3.1" 15761 14999 sources."fs-extra-11.3.0" 15762 15000 sources."get-caller-file-2.0.5" 15763 15001 sources."glob-10.4.5" ··· 15899 15137 }; 15900 15138 dependencies = [ 15901 15139 sources."@babel/cli-7.12.10" 15902 - sources."@babel/code-frame-7.26.2" 15903 - sources."@babel/compat-data-7.26.8" 15140 + sources."@babel/code-frame-7.27.1" 15141 + sources."@babel/compat-data-7.27.5" 15904 15142 sources."@babel/core-7.12.10" 15905 - sources."@babel/generator-7.26.9" 15906 - sources."@babel/helper-annotate-as-pure-7.25.9" 15143 + sources."@babel/generator-7.27.5" 15144 + sources."@babel/helper-annotate-as-pure-7.27.3" 15907 15145 ( 15908 - sources."@babel/helper-compilation-targets-7.26.5" 15146 + sources."@babel/helper-compilation-targets-7.27.2" 15909 15147 // { 15910 15148 dependencies = [ 15911 15149 sources."semver-6.3.1" ··· 15913 15151 } 15914 15152 ) 15915 15153 ( 15916 - sources."@babel/helper-create-class-features-plugin-7.26.9" 15154 + sources."@babel/helper-create-class-features-plugin-7.27.1" 15917 15155 // { 15918 15156 dependencies = [ 15919 15157 sources."semver-6.3.1" ··· 15921 15159 } 15922 15160 ) 15923 15161 ( 15924 - sources."@babel/helper-create-regexp-features-plugin-7.26.3" 15162 + sources."@babel/helper-create-regexp-features-plugin-7.27.1" 15925 15163 // { 15926 15164 dependencies = [ 15927 15165 sources."semver-6.3.1" ··· 15929 15167 } 15930 15168 ) 15931 15169 sources."@babel/helper-environment-visitor-7.24.7" 15932 - sources."@babel/helper-member-expression-to-functions-7.25.9" 15933 - sources."@babel/helper-module-imports-7.25.9" 15934 - sources."@babel/helper-module-transforms-7.26.0" 15935 - sources."@babel/helper-optimise-call-expression-7.25.9" 15936 - sources."@babel/helper-plugin-utils-7.26.5" 15937 - sources."@babel/helper-remap-async-to-generator-7.25.9" 15938 - sources."@babel/helper-replace-supers-7.26.5" 15939 - sources."@babel/helper-skip-transparent-expression-wrappers-7.25.9" 15940 - sources."@babel/helper-string-parser-7.25.9" 15941 - sources."@babel/helper-validator-identifier-7.25.9" 15942 - sources."@babel/helper-validator-option-7.25.9" 15943 - sources."@babel/helper-wrap-function-7.25.9" 15944 - sources."@babel/helpers-7.26.9" 15170 + sources."@babel/helper-member-expression-to-functions-7.27.1" 15171 + sources."@babel/helper-module-imports-7.27.1" 15172 + sources."@babel/helper-module-transforms-7.27.3" 15173 + sources."@babel/helper-optimise-call-expression-7.27.1" 15174 + sources."@babel/helper-plugin-utils-7.27.1" 15175 + sources."@babel/helper-remap-async-to-generator-7.27.1" 15176 + sources."@babel/helper-replace-supers-7.27.1" 15177 + sources."@babel/helper-skip-transparent-expression-wrappers-7.27.1" 15178 + sources."@babel/helper-string-parser-7.27.1" 15179 + sources."@babel/helper-validator-identifier-7.27.1" 15180 + sources."@babel/helper-validator-option-7.27.1" 15181 + sources."@babel/helper-wrap-function-7.27.1" 15182 + sources."@babel/helpers-7.27.6" 15945 15183 sources."@babel/highlight-7.25.9" 15946 - sources."@babel/parser-7.26.9" 15184 + sources."@babel/parser-7.27.5" 15947 15185 sources."@babel/plugin-proposal-async-generator-functions-7.20.7" 15948 15186 sources."@babel/plugin-proposal-class-properties-7.18.6" 15949 15187 sources."@babel/plugin-proposal-dynamic-import-7.18.6" ··· 15969 15207 sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 15970 15208 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 15971 15209 sources."@babel/plugin-syntax-top-level-await-7.14.5" 15972 - sources."@babel/plugin-transform-arrow-functions-7.25.9" 15973 - sources."@babel/plugin-transform-async-to-generator-7.25.9" 15974 - sources."@babel/plugin-transform-block-scoped-functions-7.26.5" 15975 - sources."@babel/plugin-transform-block-scoping-7.25.9" 15976 - sources."@babel/plugin-transform-classes-7.25.9" 15977 - sources."@babel/plugin-transform-computed-properties-7.25.9" 15978 - sources."@babel/plugin-transform-destructuring-7.25.9" 15979 - sources."@babel/plugin-transform-dotall-regex-7.25.9" 15980 - sources."@babel/plugin-transform-duplicate-keys-7.25.9" 15981 - sources."@babel/plugin-transform-exponentiation-operator-7.26.3" 15982 - sources."@babel/plugin-transform-for-of-7.26.9" 15983 - sources."@babel/plugin-transform-function-name-7.25.9" 15984 - sources."@babel/plugin-transform-literals-7.25.9" 15985 - sources."@babel/plugin-transform-member-expression-literals-7.25.9" 15986 - sources."@babel/plugin-transform-modules-amd-7.25.9" 15987 - sources."@babel/plugin-transform-modules-commonjs-7.26.3" 15988 - sources."@babel/plugin-transform-modules-systemjs-7.25.9" 15989 - sources."@babel/plugin-transform-modules-umd-7.25.9" 15990 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.25.9" 15991 - sources."@babel/plugin-transform-new-target-7.25.9" 15992 - sources."@babel/plugin-transform-object-super-7.25.9" 15993 - sources."@babel/plugin-transform-parameters-7.25.9" 15994 - sources."@babel/plugin-transform-property-literals-7.25.9" 15995 - sources."@babel/plugin-transform-regenerator-7.25.9" 15996 - sources."@babel/plugin-transform-reserved-words-7.25.9" 15210 + sources."@babel/plugin-transform-arrow-functions-7.27.1" 15211 + sources."@babel/plugin-transform-async-to-generator-7.27.1" 15212 + sources."@babel/plugin-transform-block-scoped-functions-7.27.1" 15213 + sources."@babel/plugin-transform-block-scoping-7.27.5" 15214 + sources."@babel/plugin-transform-classes-7.27.1" 15215 + sources."@babel/plugin-transform-computed-properties-7.27.1" 15216 + sources."@babel/plugin-transform-destructuring-7.27.3" 15217 + sources."@babel/plugin-transform-dotall-regex-7.27.1" 15218 + sources."@babel/plugin-transform-duplicate-keys-7.27.1" 15219 + sources."@babel/plugin-transform-exponentiation-operator-7.27.1" 15220 + sources."@babel/plugin-transform-for-of-7.27.1" 15221 + sources."@babel/plugin-transform-function-name-7.27.1" 15222 + sources."@babel/plugin-transform-literals-7.27.1" 15223 + sources."@babel/plugin-transform-member-expression-literals-7.27.1" 15224 + sources."@babel/plugin-transform-modules-amd-7.27.1" 15225 + sources."@babel/plugin-transform-modules-commonjs-7.27.1" 15226 + sources."@babel/plugin-transform-modules-systemjs-7.27.1" 15227 + sources."@babel/plugin-transform-modules-umd-7.27.1" 15228 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.27.1" 15229 + sources."@babel/plugin-transform-new-target-7.27.1" 15230 + sources."@babel/plugin-transform-object-super-7.27.1" 15231 + sources."@babel/plugin-transform-parameters-7.27.1" 15232 + sources."@babel/plugin-transform-property-literals-7.27.1" 15233 + sources."@babel/plugin-transform-regenerator-7.27.5" 15234 + sources."@babel/plugin-transform-reserved-words-7.27.1" 15997 15235 sources."@babel/plugin-transform-runtime-7.12.10" 15998 - sources."@babel/plugin-transform-shorthand-properties-7.25.9" 15999 - sources."@babel/plugin-transform-spread-7.25.9" 16000 - sources."@babel/plugin-transform-sticky-regex-7.25.9" 16001 - sources."@babel/plugin-transform-template-literals-7.26.8" 16002 - sources."@babel/plugin-transform-typeof-symbol-7.26.7" 16003 - sources."@babel/plugin-transform-unicode-escapes-7.25.9" 16004 - sources."@babel/plugin-transform-unicode-regex-7.25.9" 15236 + sources."@babel/plugin-transform-shorthand-properties-7.27.1" 15237 + sources."@babel/plugin-transform-spread-7.27.1" 15238 + sources."@babel/plugin-transform-sticky-regex-7.27.1" 15239 + sources."@babel/plugin-transform-template-literals-7.27.1" 15240 + sources."@babel/plugin-transform-typeof-symbol-7.27.1" 15241 + sources."@babel/plugin-transform-unicode-escapes-7.27.1" 15242 + sources."@babel/plugin-transform-unicode-regex-7.27.1" 16005 15243 sources."@babel/preset-env-7.12.10" 16006 15244 sources."@babel/preset-modules-0.1.6" 16007 15245 sources."@babel/runtime-7.12.5" 16008 - sources."@babel/template-7.26.9" 16009 - sources."@babel/traverse-7.26.9" 16010 - sources."@babel/types-7.26.9" 15246 + sources."@babel/template-7.27.2" 15247 + sources."@babel/traverse-7.27.4" 15248 + sources."@babel/types-7.27.6" 16011 15249 sources."@hapi/address-2.1.4" 16012 15250 sources."@hapi/bourne-1.3.2" 16013 15251 sources."@hapi/hoek-8.5.1" 16014 15252 sources."@hapi/joi-15.1.1" 16015 15253 sources."@hapi/topo-3.1.6" 16016 - ( 16017 - sources."@isaacs/cliui-8.0.2" 16018 - // { 16019 - dependencies = [ 16020 - sources."ansi-regex-6.1.0" 16021 - sources."emoji-regex-9.2.2" 16022 - sources."string-width-5.1.2" 16023 - sources."strip-ansi-7.1.0" 16024 - ]; 16025 - } 16026 - ) 16027 15254 sources."@jridgewell/gen-mapping-0.3.8" 16028 15255 sources."@jridgewell/resolve-uri-3.1.2" 16029 15256 sources."@jridgewell/set-array-1.2.1" ··· 16036 15263 sources."@types/http-proxy-1.17.16" 16037 15264 sources."@types/json-schema-7.0.15" 16038 15265 sources."@types/minimatch-5.1.2" 16039 - sources."@types/node-22.13.4" 15266 + sources."@types/node-24.0.1" 16040 15267 sources."@types/parse-json-4.0.2" 16041 15268 sources."@types/q-1.5.8" 16042 15269 sources."@types/source-list-map-0.1.6" ··· 16111 15338 sources."array-union-1.0.2" 16112 15339 sources."array-uniq-1.0.3" 16113 15340 sources."array-unique-0.3.2" 16114 - sources."array.prototype.reduce-1.0.7" 15341 + sources."array.prototype.reduce-1.0.8" 16115 15342 sources."arraybuffer.prototype.slice-1.0.4" 16116 15343 sources."asap-2.0.6" 16117 15344 sources."asn1-0.2.6" ··· 16119 15346 sources."asn1.js-4.10.1" 16120 15347 // { 16121 15348 dependencies = [ 16122 - sources."bn.js-4.12.1" 15349 + sources."bn.js-4.12.2" 16123 15350 ]; 16124 15351 } 16125 15352 ) ··· 16189 15416 sources."binary-extensions-2.3.0" 16190 15417 sources."bindings-1.5.0" 16191 15418 sources."bluebird-3.7.2" 16192 - sources."bn.js-5.2.1" 15419 + sources."bn.js-5.2.2" 16193 15420 ( 16194 15421 sources."body-parser-1.20.3" 16195 15422 // { ··· 16209 15436 } 16210 15437 ) 16211 15438 sources."boolbase-1.0.0" 16212 - sources."brace-expansion-1.1.11" 15439 + sources."brace-expansion-1.1.12" 16213 15440 sources."braces-3.0.3" 16214 15441 sources."brorand-1.1.0" 16215 15442 sources."browserify-aes-1.2.0" ··· 16232 15459 } 16233 15460 ) 16234 15461 sources."browserify-zlib-0.2.0" 16235 - sources."browserslist-4.24.4" 15462 + sources."browserslist-4.25.0" 16236 15463 sources."buffer-4.9.2" 16237 15464 sources."buffer-from-1.1.2" 16238 15465 sources."buffer-indexof-1.1.1" ··· 16243 15470 sources."cache-base-1.0.1" 16244 15471 sources."call-bind-1.0.8" 16245 15472 sources."call-bind-apply-helpers-1.0.2" 16246 - sources."call-bound-1.0.3" 15473 + sources."call-bound-1.0.4" 16247 15474 sources."call-me-maybe-1.0.2" 16248 15475 sources."caller-callsite-2.0.0" 16249 15476 sources."caller-path-2.0.0" ··· 16251 15478 sources."camel-case-4.1.2" 16252 15479 sources."camelcase-5.3.1" 16253 15480 sources."caniuse-api-3.0.0" 16254 - sources."caniuse-lite-1.0.30001699" 15481 + sources."caniuse-lite-1.0.30001722" 16255 15482 sources."case-sensitive-paths-webpack-plugin-2.3.0" 16256 15483 sources."caseless-0.12.0" 16257 15484 ( ··· 16309 15536 sources."is-fullwidth-code-point-1.0.0" 16310 15537 sources."string-width-1.0.2" 16311 15538 sources."strip-ansi-3.0.1" 16312 - sources."wrap-ansi-2.1.0" 16313 15539 ]; 16314 15540 } 16315 15541 ) ··· 16373 15599 } 16374 15600 ) 16375 15601 sources."core-js-2.6.12" 16376 - sources."core-js-compat-3.40.0" 15602 + sources."core-js-compat-3.43.0" 16377 15603 sources."core-util-is-1.0.3" 16378 15604 sources."cosmiconfig-5.2.1" 16379 15605 ( 16380 15606 sources."create-ecdh-4.0.4" 16381 15607 // { 16382 15608 dependencies = [ 16383 - sources."bn.js-4.12.1" 15609 + sources."bn.js-4.12.2" 16384 15610 ]; 16385 15611 } 16386 15612 ) ··· 16407 15633 sources."loader-utils-2.0.4" 16408 15634 sources."picocolors-0.2.1" 16409 15635 sources."postcss-7.0.39" 16410 - sources."semver-7.7.1" 15636 + sources."semver-7.7.2" 16411 15637 sources."source-map-0.6.1" 16412 15638 ]; 16413 15639 } ··· 16473 15699 sources."data-view-buffer-1.0.2" 16474 15700 sources."data-view-byte-length-1.0.2" 16475 15701 sources."data-view-byte-offset-1.0.1" 16476 - sources."debug-4.4.0" 15702 + sources."debug-4.4.1" 16477 15703 sources."decamelize-1.2.0" 16478 15704 sources."decode-uri-component-0.2.2" 16479 15705 sources."deep-equal-0.2.2" ··· 16514 15740 sources."diffie-hellman-5.0.3" 16515 15741 // { 16516 15742 dependencies = [ 16517 - sources."bn.js-4.12.1" 15743 + sources."bn.js-4.12.2" 16518 15744 ]; 16519 15745 } 16520 15746 ) ··· 16534 15760 sources."dunder-proto-1.0.1" 16535 15761 sources."duplexer-0.1.2" 16536 15762 sources."duplexify-3.7.1" 16537 - sources."eastasianwidth-0.2.0" 16538 15763 sources."ecc-jsbn-0.1.2" 16539 15764 sources."ee-first-1.1.1" 16540 - sources."electron-to-chromium-1.5.101" 15765 + sources."electron-to-chromium-1.5.166" 16541 15766 ( 16542 15767 sources."elliptic-6.6.1" 16543 15768 // { 16544 15769 dependencies = [ 16545 - sources."bn.js-4.12.1" 15770 + sources."bn.js-4.12.2" 16546 15771 ]; 16547 15772 } 16548 15773 ) ··· 16552 15777 sources."elm-hot-webpack-loader-1.1.7" 16553 15778 sources."elm-solve-deps-wasm-2.0.0" 16554 15779 ( 16555 - sources."elm-test-0.19.1-revision14" 15780 + sources."elm-test-0.19.1-revision15" 16556 15781 // { 16557 15782 dependencies = [ 16558 15783 sources."ansi-styles-4.3.0" 16559 - sources."brace-expansion-2.0.1" 16560 15784 sources."chalk-4.1.2" 16561 15785 sources."color-convert-2.0.1" 16562 15786 sources."color-name-1.1.4" 16563 15787 sources."commander-9.5.0" 16564 15788 sources."cross-spawn-7.0.6" 16565 - sources."glob-10.4.5" 16566 15789 sources."has-flag-4.0.0" 16567 - sources."minimatch-9.0.5" 16568 15790 sources."supports-color-7.2.0" 16569 15791 ]; 16570 15792 } ··· 16585 15807 sources."entities-2.2.0" 16586 15808 sources."errno-0.1.8" 16587 15809 sources."error-ex-1.3.2" 16588 - sources."es-abstract-1.23.9" 15810 + sources."es-abstract-1.24.0" 16589 15811 sources."es-array-method-boxes-properly-1.0.0" 16590 15812 sources."es-define-property-1.0.1" 16591 15813 sources."es-errors-1.3.0" ··· 16620 15842 sources."path-key-2.0.1" 16621 15843 sources."shebang-command-1.2.0" 16622 15844 sources."shebang-regex-1.0.0" 16623 - sources."signal-exit-3.0.7" 16624 15845 sources."which-1.3.1" 16625 15846 ]; 16626 15847 } ··· 16707 15928 ) 16708 15929 sources."fast-json-stable-stringify-2.1.0" 16709 15930 sources."faye-websocket-0.11.4" 15931 + ( 15932 + sources."fdir-6.4.6" 15933 + // { 15934 + dependencies = [ 15935 + sources."picomatch-4.0.2" 15936 + ]; 15937 + } 15938 + ) 16710 15939 sources."figgy-pudding-3.5.2" 16711 15940 ( 16712 15941 sources."figures-2.0.0" ··· 16753 15982 sources."follow-redirects-1.15.9" 16754 15983 sources."for-each-0.3.5" 16755 15984 sources."for-in-1.0.2" 16756 - sources."foreground-child-3.3.0" 16757 15985 sources."forever-agent-0.6.1" 16758 15986 sources."form-data-2.3.3" 16759 15987 sources."forwarded-0.2.0" ··· 16771 15999 sources."functions-have-names-1.2.3" 16772 16000 sources."gensync-1.0.0-beta.2" 16773 16001 sources."get-caller-file-1.0.3" 16774 - sources."get-intrinsic-1.2.7" 16002 + sources."get-intrinsic-1.3.0" 16775 16003 sources."get-own-enumerable-property-symbols-3.0.2" 16776 16004 sources."get-proto-1.0.1" 16777 16005 sources."get-stream-4.1.0" ··· 16869 16097 sources."htmlparser2-6.1.0" 16870 16098 sources."http-deceiver-1.2.7" 16871 16099 sources."http-errors-2.0.0" 16872 - sources."http-parser-js-0.5.9" 16100 + sources."http-parser-js-0.5.10" 16873 16101 sources."http-proxy-1.18.1" 16874 16102 sources."http-proxy-middleware-0.21.0" 16875 16103 sources."http-signature-1.2.0" ··· 16952 16180 sources."is-generator-function-1.1.0" 16953 16181 sources."is-glob-4.0.3" 16954 16182 sources."is-map-2.0.3" 16183 + sources."is-negative-zero-2.0.3" 16955 16184 sources."is-number-7.0.0" 16956 16185 sources."is-number-object-1.1.1" 16957 16186 sources."is-obj-2.0.0" ··· 16981 16210 sources."isexe-2.0.0" 16982 16211 sources."isobject-3.0.1" 16983 16212 sources."isstream-0.1.2" 16984 - sources."jackspeak-3.4.3" 16985 16213 sources."js-tokens-4.0.0" 16986 16214 sources."js-yaml-3.14.1" 16987 16215 sources."jsbn-0.1.1" ··· 16991 16219 sources."json-schema-0.4.0" 16992 16220 sources."json-schema-traverse-0.4.1" 16993 16221 ( 16994 - sources."json-stable-stringify-1.2.1" 16222 + sources."json-stable-stringify-1.3.0" 16995 16223 // { 16996 16224 dependencies = [ 16997 16225 sources."isarray-2.0.5" ··· 17054 16282 sources."miller-rabin-4.0.1" 17055 16283 // { 17056 16284 dependencies = [ 17057 - sources."bn.js-4.12.1" 16285 + sources."bn.js-4.12.2" 17058 16286 ]; 17059 16287 } 17060 16288 ) ··· 17074 16302 sources."minimalistic-crypto-utils-1.0.1" 17075 16303 sources."minimatch-3.1.2" 17076 16304 sources."minimist-1.2.5" 17077 - sources."minipass-7.1.2" 17078 16305 sources."mississippi-3.0.0" 17079 16306 ( 17080 16307 sources."mixin-deep-1.3.2" ··· 17090 16317 sources."multicast-dns-6.2.3" 17091 16318 sources."multicast-dns-service-types-1.1.0" 17092 16319 sources."mute-stream-0.0.8" 17093 - sources."nan-2.22.0" 17094 - sources."nanoid-3.3.8" 16320 + sources."nan-2.22.2" 16321 + sources."nanoid-3.3.11" 17095 16322 sources."nanomatch-1.2.13" 17096 16323 sources."ncp-1.0.1" 17097 16324 sources."negotiator-0.6.3" ··· 17151 16378 sources."object-keys-1.1.1" 17152 16379 sources."object-visit-1.0.1" 17153 16380 sources."object.assign-4.1.7" 17154 - sources."object.entries-1.1.8" 16381 + sources."object.entries-1.1.9" 17155 16382 sources."object.getownpropertydescriptors-2.1.8" 17156 16383 sources."object.pick-1.3.0" 17157 16384 sources."object.values-1.2.1" ··· 17173 16400 sources."p-map-2.1.0" 17174 16401 sources."p-retry-3.0.1" 17175 16402 sources."p-try-2.2.0" 17176 - sources."package-json-from-dist-1.0.1" 17177 16403 sources."pako-1.0.11" 17178 16404 sources."parallel-transform-1.2.0" 17179 16405 sources."param-case-3.0.4" ··· 17205 16431 sources."path-is-inside-1.0.2" 17206 16432 sources."path-key-3.1.1" 17207 16433 sources."path-parse-1.0.7" 17208 - ( 17209 - sources."path-scurry-1.11.1" 17210 - // { 17211 - dependencies = [ 17212 - sources."lru-cache-10.4.3" 17213 - ]; 17214 - } 17215 - ) 17216 16434 sources."path-to-regexp-0.1.12" 17217 16435 ( 17218 16436 sources."path-type-3.0.0" ··· 17245 16463 ) 17246 16464 sources."pkginfo-0.4.1" 17247 16465 ( 17248 - sources."portfinder-1.0.32" 16466 + sources."portfinder-1.0.37" 17249 16467 // { 17250 16468 dependencies = [ 17251 - sources."async-2.6.4" 17252 - sources."debug-3.2.7" 17253 - sources."minimist-1.2.8" 17254 - sources."mkdirp-0.5.6" 16469 + sources."async-3.2.6" 17255 16470 ]; 17256 16471 } 17257 16472 ) 17258 16473 sources."posix-character-classes-0.1.1" 17259 16474 sources."possible-typed-array-names-1.1.0" 17260 - sources."postcss-8.5.2" 16475 + sources."postcss-8.5.5" 17261 16476 ( 17262 16477 sources."postcss-calc-7.0.5" 17263 16478 // { ··· 17351 16566 sources."path-type-4.0.0" 17352 16567 sources."resolve-from-4.0.0" 17353 16568 sources."schema-utils-3.3.0" 17354 - sources."semver-7.7.1" 16569 + sources."semver-7.7.2" 17355 16570 ]; 17356 16571 } 17357 16572 ) ··· 17632 16847 sources."public-encrypt-4.0.3" 17633 16848 // { 17634 16849 dependencies = [ 17635 - sources."bn.js-4.12.1" 16850 + sources."bn.js-4.12.2" 17636 16851 ]; 17637 16852 } 17638 16853 ) ··· 17723 16938 sources."regenerate-1.4.2" 17724 16939 sources."regenerate-unicode-properties-10.2.0" 17725 16940 sources."regenerator-runtime-0.13.11" 17726 - sources."regenerator-transform-0.15.2" 17727 16941 sources."regex-not-1.0.2" 17728 16942 sources."regexp.prototype.flags-1.5.4" 17729 16943 sources."regexpu-core-6.2.0" ··· 17758 16972 sources."resolve-dir-1.0.1" 17759 16973 sources."resolve-from-3.0.0" 17760 16974 sources."resolve-url-0.2.1" 17761 - ( 17762 - sources."restore-cursor-2.0.0" 17763 - // { 17764 - dependencies = [ 17765 - sources."signal-exit-3.0.7" 17766 - ]; 17767 - } 17768 - ) 16975 + sources."restore-cursor-2.0.0" 17769 16976 sources."ret-0.1.15" 17770 16977 sources."retry-0.12.0" 17771 16978 sources."revalidator-0.1.8" ··· 17862 17069 sources."side-channel-list-1.0.0" 17863 17070 sources."side-channel-map-1.0.1" 17864 17071 sources."side-channel-weakmap-1.0.2" 17865 - sources."signal-exit-4.1.0" 17072 + sources."signal-exit-3.0.7" 17866 17073 ( 17867 17074 sources."simple-swizzle-0.2.2" 17868 17075 // { ··· 17962 17169 } 17963 17170 ) 17964 17171 sources."statuses-2.0.1" 17172 + sources."stop-iteration-iterator-1.1.0" 17965 17173 sources."stream-browserify-2.0.2" 17966 17174 sources."stream-each-1.2.3" 17967 17175 sources."stream-http-2.8.3" ··· 17976 17184 ]; 17977 17185 } 17978 17186 ) 17979 - ( 17980 - sources."string-width-cjs-4.2.3" 17981 - // { 17982 - dependencies = [ 17983 - sources."strip-ansi-6.0.1" 17984 - ]; 17985 - } 17986 - ) 17987 17187 sources."string.prototype.trim-1.2.10" 17988 17188 sources."string.prototype.trimend-1.0.9" 17989 17189 sources."string.prototype.trimstart-1.0.8" ··· 17997 17197 } 17998 17198 ) 17999 17199 sources."strip-ansi-6.0.0" 18000 - sources."strip-ansi-cjs-6.0.1" 18001 17200 sources."strip-bom-2.0.0" 18002 17201 sources."strip-comments-1.0.2" 18003 17202 sources."strip-eof-1.0.0" ··· 18081 17280 sources."thunky-1.1.0" 18082 17281 sources."timers-browserify-2.0.12" 18083 17282 sources."timsort-0.3.0" 17283 + ( 17284 + sources."tinyglobby-0.2.14" 17285 + // { 17286 + dependencies = [ 17287 + sources."picomatch-4.0.2" 17288 + ]; 17289 + } 17290 + ) 18084 17291 sources."tmp-0.0.33" 18085 17292 sources."to-arraybuffer-1.0.1" 18086 17293 ( ··· 18141 17348 } 18142 17349 ) 18143 17350 sources."unbox-primitive-1.1.0" 18144 - sources."undici-types-6.20.0" 17351 + sources."undici-types-7.8.0" 18145 17352 sources."unicode-canonical-property-names-ecmascript-2.0.1" 18146 17353 sources."unicode-match-property-ecmascript-2.0.0" 18147 17354 sources."unicode-match-property-value-ecmascript-2.2.0" ··· 18171 17378 } 18172 17379 ) 18173 17380 sources."upath-1.2.0" 18174 - sources."update-browserslist-db-1.1.2" 17381 + sources."update-browserslist-db-1.1.3" 18175 17382 sources."uri-js-4.4.1" 18176 17383 sources."urix-0.1.0" 18177 17384 ( ··· 18385 17592 ) 18386 17593 sources."which-collection-1.0.2" 18387 17594 sources."which-module-1.0.0" 18388 - sources."which-typed-array-1.1.18" 17595 + sources."which-typed-array-1.1.19" 18389 17596 ( 18390 17597 sources."winston-2.1.1" 18391 17598 // { ··· 18421 17628 sources."workbox-window-4.3.1" 18422 17629 sources."worker-farm-1.7.0" 18423 17630 ( 18424 - sources."wrap-ansi-8.1.0" 18425 - // { 18426 - dependencies = [ 18427 - sources."ansi-regex-6.1.0" 18428 - sources."ansi-styles-6.2.1" 18429 - sources."emoji-regex-9.2.2" 18430 - sources."string-width-5.1.2" 18431 - sources."strip-ansi-7.1.0" 18432 - ]; 18433 - } 18434 - ) 18435 - ( 18436 - sources."wrap-ansi-cjs-7.0.0" 17631 + sources."wrap-ansi-2.1.0" 18437 17632 // { 18438 17633 dependencies = [ 18439 - sources."ansi-styles-4.3.0" 18440 - sources."color-convert-2.0.1" 18441 - sources."color-name-1.1.4" 17634 + sources."ansi-regex-2.1.1" 17635 + sources."is-fullwidth-code-point-1.0.0" 17636 + sources."string-width-1.0.2" 17637 + sources."strip-ansi-3.0.1" 18442 17638 ]; 18443 17639 } 18444 17640 ) ··· 18494 17690 sources."ansi-regex-5.0.1" 18495 17691 sources."ansi-styles-5.2.0" 18496 17692 sources."balanced-match-1.0.2" 18497 - sources."brace-expansion-1.1.11" 17693 + sources."brace-expansion-1.1.12" 18498 17694 ( 18499 17695 sources."chalk-4.1.2" 18500 17696 // { ··· 18555 17751 elm-pages = nodeEnv.buildNodePackage { 18556 17752 name = "elm-pages"; 18557 17753 packageName = "elm-pages"; 18558 - version = "3.0.20"; 17754 + version = "3.0.24"; 18559 17755 src = fetchurl { 18560 - url = "https://registry.npmjs.org/elm-pages/-/elm-pages-3.0.20.tgz"; 18561 - sha512 = "fuK5egJEGYBGZQpVUE4HaaSZXIepEraRj9x3jO0HOH4pPzbCzlSIGOvzxmdeXBKpwMBUtOlAzHQegHuMrcSrgA=="; 17756 + url = "https://registry.npmjs.org/elm-pages/-/elm-pages-3.0.24.tgz"; 17757 + sha512 = "rVxsEGCkddv6hqEtwFe3L+tEs2nnItBdhuhhW3W5BLvfK8vgFl1dNAVnTX7xKn09c5ZF9Y8sKe4rs0Z9RoyVNQ=="; 18562 17758 }; 18563 17759 dependencies = [ 18564 17760 sources."@adobe/css-tools-4.3.3" 18565 - sources."@bufbuild/protobuf-2.2.3" 17761 + sources."@bufbuild/protobuf-2.5.2" 18566 17762 sources."@isaacs/cliui-8.0.2" 18567 17763 sources."@isaacs/fs-minipass-4.0.1" 18568 17764 sources."@jridgewell/gen-mapping-0.3.8" ··· 18580 17776 } 18581 17777 ) 18582 17778 ( 18583 - sources."@jsonjoy.com/json-pack-1.1.1" 17779 + sources."@jsonjoy.com/json-pack-1.2.0" 18584 17780 // { 18585 17781 dependencies = [ 18586 17782 sources."tslib-2.8.1" ··· 18588 17784 } 18589 17785 ) 18590 17786 ( 18591 - sources."@jsonjoy.com/util-1.5.0" 17787 + sources."@jsonjoy.com/util-1.6.0" 18592 17788 // { 18593 17789 dependencies = [ 18594 17790 sources."tslib-2.8.1" ··· 18613 17809 sources."@sindresorhus/merge-streams-4.0.0" 18614 17810 sources."@types/configstore-2.1.1" 18615 17811 sources."@types/debug-0.0.30" 18616 - sources."@types/estree-1.0.6" 17812 + sources."@types/estree-1.0.7" 18617 17813 sources."@types/get-port-3.2.0" 18618 17814 sources."@types/glob-5.0.38" 18619 - sources."@types/lodash-4.17.15" 17815 + sources."@types/lodash-4.17.17" 18620 17816 sources."@types/minimatch-5.1.2" 18621 17817 sources."@types/mkdirp-0.5.2" 18622 17818 sources."@types/node-8.10.66" 18623 17819 sources."@types/rimraf-2.0.5" 18624 17820 sources."@types/tmp-0.0.33" 18625 17821 sources."accepts-1.3.8" 18626 - sources."acorn-8.14.0" 17822 + sources."acorn-8.15.0" 18627 17823 sources."agent-base-7.1.3" 18628 17824 sources."ansi-escapes-4.3.2" 18629 17825 sources."ansi-regex-5.0.1" ··· 18643 17839 ]; 18644 17840 } 18645 17841 ) 18646 - sources."brace-expansion-1.1.11" 17842 + sources."brace-expansion-1.1.12" 18647 17843 sources."braces-3.0.3" 18648 17844 sources."buffer-builder-0.2.0" 18649 17845 sources."buffer-from-1.1.2" ··· 18655 17851 sources."cacache-19.0.1" 18656 17852 // { 18657 17853 dependencies = [ 18658 - sources."brace-expansion-2.0.1" 17854 + sources."brace-expansion-2.0.2" 18659 17855 sources."glob-10.4.5" 18660 17856 sources."jackspeak-3.4.3" 18661 17857 sources."lru-cache-10.4.3" ··· 18665 17861 } 18666 17862 ) 18667 17863 sources."call-bind-apply-helpers-1.0.2" 18668 - sources."call-bound-1.0.3" 17864 + sources."call-bound-1.0.4" 18669 17865 sources."chalk-5.4.1" 18670 17866 sources."chokidar-4.0.3" 18671 17867 sources."chownr-3.0.0" ··· 18674 17870 sources."color-name-1.1.4" 18675 17871 sources."colorjs.io-0.5.2" 18676 17872 sources."command-exists-1.2.9" 18677 - sources."commander-12.1.0" 17873 + sources."commander-13.1.0" 18678 17874 sources."concat-map-0.0.1" 18679 17875 sources."config-chain-1.1.13" 18680 17876 sources."connect-3.7.0" ··· 18698 17894 sources."define-lazy-prop-3.0.0" 18699 17895 sources."depd-2.0.0" 18700 17896 sources."destroy-1.2.0" 18701 - sources."detect-libc-1.0.3" 17897 + sources."detect-libc-2.0.4" 18702 17898 ( 18703 17899 sources."devcert-1.2.2" 18704 17900 // { ··· 18715 17911 sources."elm-doc-preview-6.0.1" 18716 17912 // { 18717 17913 dependencies = [ 18718 - sources."brace-expansion-2.0.1" 17914 + sources."balanced-match-3.0.1" 17915 + sources."brace-expansion-4.0.1" 18719 17916 sources."chokidar-3.6.0" 18720 - sources."glob-11.0.1" 18721 - sources."minimatch-10.0.1" 17917 + sources."commander-12.1.0" 17918 + sources."glob-11.0.2" 17919 + sources."minimatch-10.0.2" 18722 17920 sources."readdirp-3.6.0" 18723 17921 sources."tmp-0.2.3" 18724 17922 ]; ··· 18733 17931 sources."es-define-property-1.0.1" 18734 17932 sources."es-errors-1.3.0" 18735 17933 sources."es-object-atoms-1.1.1" 18736 - sources."esbuild-0.24.2" 17934 + sources."esbuild-0.25.5" 18737 17935 sources."escape-html-1.0.3" 18738 17936 sources."esprima-4.0.1" 18739 17937 sources."etag-1.8.1" ··· 18759 17957 ) 18760 17958 sources."extend-shallow-2.0.1" 18761 17959 sources."fast-glob-3.3.3" 18762 - sources."fastq-1.19.0" 17960 + sources."fastq-1.19.1" 17961 + ( 17962 + sources."fdir-6.4.6" 17963 + // { 17964 + dependencies = [ 17965 + sources."picomatch-4.0.2" 17966 + ]; 17967 + } 17968 + ) 18763 17969 sources."fill-range-7.1.1" 18764 17970 sources."finalhandler-1.1.2" 18765 - sources."foreground-child-3.3.0" 17971 + sources."foreground-child-3.3.1" 18766 17972 sources."forwarded-0.2.0" 18767 17973 sources."fresh-0.5.2" 18768 17974 sources."fs-extra-11.3.0" 18769 17975 sources."fs-minipass-3.0.3" 18770 17976 sources."fs.realpath-1.0.0" 18771 17977 sources."function-bind-1.1.2" 18772 - sources."get-intrinsic-1.2.7" 17978 + sources."get-intrinsic-1.3.0" 18773 17979 sources."get-port-3.2.0" 18774 17980 sources."get-proto-1.0.1" 18775 - sources."get-tsconfig-4.10.0" 17981 + sources."get-tsconfig-4.10.1" 18776 17982 sources."glob-7.2.3" 18777 17983 sources."glob-parent-5.1.2" 18778 17984 ( 18779 - sources."globby-14.0.2" 17985 + sources."globby-14.1.0" 18780 17986 // { 18781 17987 dependencies = [ 18782 17988 sources."@sindresorhus/merge-streams-2.3.0" ··· 18789 17995 sources."has-flag-4.0.0" 18790 17996 sources."has-symbols-1.1.0" 18791 17997 sources."hasown-2.0.2" 18792 - sources."http-cache-semantics-4.1.1" 17998 + sources."http-cache-semantics-4.2.0" 18793 17999 ( 18794 18000 sources."http-errors-2.0.0" 18795 18001 // { ··· 18802 18008 sources."http-proxy-agent-7.0.2" 18803 18009 // { 18804 18010 dependencies = [ 18805 - sources."debug-4.4.0" 18011 + sources."debug-4.4.1" 18806 18012 sources."ms-2.1.3" 18807 18013 ]; 18808 18014 } ··· 18811 18017 sources."https-proxy-agent-7.0.6" 18812 18018 // { 18813 18019 dependencies = [ 18814 - sources."debug-4.4.0" 18020 + sources."debug-4.4.1" 18815 18021 sources."ms-2.1.3" 18816 18022 ]; 18817 18023 } 18818 18024 ) 18819 18025 sources."hyperdyperid-1.2.0" 18820 18026 sources."iconv-lite-0.4.24" 18821 - sources."ignore-5.3.2" 18027 + sources."ignore-7.0.5" 18822 18028 sources."image-size-0.5.5" 18823 - sources."immutable-5.0.3" 18029 + sources."immutable-5.1.3" 18824 18030 sources."imurmurhash-0.1.4" 18825 18031 sources."inflight-1.0.6" 18826 18032 sources."inherits-2.0.4" ··· 18846 18052 sources."is-what-3.14.1" 18847 18053 sources."is-wsl-3.1.0" 18848 18054 sources."isexe-2.0.0" 18849 - sources."jackspeak-4.0.3" 18055 + sources."jackspeak-4.1.1" 18850 18056 sources."jiti-2.4.2" 18851 18057 sources."js-yaml-3.14.1" 18852 18058 sources."jsbn-1.1.0" ··· 18854 18060 sources."jsonfile-6.1.0" 18855 18061 sources."kind-of-6.0.3" 18856 18062 sources."kleur-4.1.5" 18857 - sources."ky-1.7.5" 18063 + sources."ky-1.8.1" 18858 18064 sources."latest-version-9.0.0" 18859 18065 ( 18860 - sources."less-4.2.2" 18066 + sources."less-4.3.0" 18861 18067 // { 18862 18068 dependencies = [ 18863 18069 sources."tslib-2.8.1" 18864 18070 ]; 18865 18071 } 18866 18072 ) 18867 - sources."lightningcss-1.29.1" 18073 + sources."lightningcss-1.30.1" 18868 18074 sources."lodash-4.17.21" 18869 - sources."lru-cache-11.0.2" 18075 + sources."lru-cache-11.1.0" 18870 18076 ( 18871 18077 sources."make-dir-2.1.0" 18872 18078 // { ··· 18886 18092 sources."math-intrinsics-1.1.0" 18887 18093 sources."media-typer-0.3.0" 18888 18094 ( 18889 - sources."memfs-4.17.0" 18095 + sources."memfs-4.17.2" 18890 18096 // { 18891 18097 dependencies = [ 18892 18098 sources."tslib-2.8.1" ··· 18905 18111 sources."minimist-1.2.8" 18906 18112 sources."minipass-7.1.2" 18907 18113 sources."minipass-collect-2.0.1" 18908 - sources."minipass-fetch-4.0.0" 18114 + sources."minipass-fetch-4.0.1" 18909 18115 ( 18910 18116 sources."minipass-flush-1.0.5" 18911 18117 // { ··· 18933 18139 ]; 18934 18140 } 18935 18141 ) 18936 - ( 18937 - sources."minizlib-3.0.1" 18938 - // { 18939 - dependencies = [ 18940 - sources."brace-expansion-2.0.1" 18941 - sources."glob-10.4.5" 18942 - sources."jackspeak-3.4.3" 18943 - sources."lru-cache-10.4.3" 18944 - sources."minimatch-9.0.5" 18945 - sources."path-scurry-1.11.1" 18946 - sources."rimraf-5.0.10" 18947 - ]; 18948 - } 18949 - ) 18142 + sources."minizlib-3.0.2" 18950 18143 sources."mkdirp-0.5.6" 18951 18144 sources."ms-2.0.0" 18952 - sources."nanoid-3.3.8" 18145 + sources."nanoid-3.3.11" 18953 18146 ( 18954 18147 sources."needle-3.3.1" 18955 18148 // { ··· 18965 18158 sources."on-finished-2.3.0" 18966 18159 sources."once-1.4.0" 18967 18160 sources."onetime-7.0.0" 18968 - sources."open-10.1.0" 18161 + sources."open-10.1.2" 18969 18162 sources."os-tmpdir-1.0.2" 18970 18163 sources."p-map-7.0.3" 18971 18164 sources."package-json-10.0.1" ··· 18977 18170 sources."path-key-3.1.1" 18978 18171 sources."path-scurry-2.0.0" 18979 18172 sources."path-to-regexp-0.1.12" 18980 - sources."path-type-5.0.0" 18173 + sources."path-type-6.0.0" 18981 18174 sources."picocolors-1.1.1" 18982 18175 sources."picomatch-2.3.1" 18983 18176 sources."pify-4.0.1" 18984 - sources."postcss-8.5.2" 18177 + sources."postcss-8.5.5" 18985 18178 sources."proc-log-5.0.0" 18986 18179 sources."promise-retry-2.0.1" 18987 18180 sources."proto-list-1.2.4" ··· 18999 18192 sources."resolve-pkg-maps-1.0.0" 19000 18193 sources."restore-cursor-5.1.0" 19001 18194 sources."retry-0.12.0" 19002 - sources."reusify-1.0.4" 18195 + sources."reusify-1.1.0" 19003 18196 sources."rimraf-2.7.1" 19004 - sources."rollup-4.34.7" 18197 + sources."rollup-4.43.0" 19005 18198 sources."run-applescript-7.0.0" 19006 18199 sources."run-parallel-1.2.0" 19007 18200 ( 19008 - sources."rxjs-7.8.1" 18201 + sources."rxjs-7.8.2" 19009 18202 // { 19010 18203 dependencies = [ 19011 18204 sources."tslib-2.8.1" ··· 19014 18207 ) 19015 18208 sources."safe-buffer-5.2.1" 19016 18209 sources."safer-buffer-2.1.2" 19017 - sources."sass-1.85.0" 19018 - sources."sass-embedded-1.85.0" 18210 + sources."sass-1.89.2" 18211 + sources."sass-embedded-1.89.2" 19019 18212 sources."sax-1.4.1" 19020 18213 sources."section-matter-1.0.0" 19021 - sources."semver-7.7.1" 18214 + sources."semver-7.7.2" 19022 18215 ( 19023 18216 sources."send-0.19.0" 19024 18217 // { ··· 19058 18251 sources."signal-exit-4.1.0" 19059 18252 sources."slash-5.1.0" 19060 18253 sources."smart-buffer-4.2.0" 19061 - sources."socks-2.8.4" 18254 + sources."socks-2.8.5" 19062 18255 ( 19063 18256 sources."socks-proxy-agent-8.0.5" 19064 18257 // { 19065 18258 dependencies = [ 19066 - sources."debug-4.4.0" 18259 + sources."debug-4.4.1" 19067 18260 sources."ms-2.1.3" 19068 18261 ]; 19069 18262 } ··· 19100 18293 sources."stylus-0.64.0" 19101 18294 // { 19102 18295 dependencies = [ 19103 - sources."brace-expansion-2.0.1" 19104 - sources."debug-4.4.0" 18296 + sources."brace-expansion-2.0.2" 18297 + sources."debug-4.4.1" 19105 18298 sources."glob-10.4.5" 19106 18299 sources."jackspeak-3.4.3" 19107 18300 sources."lru-cache-10.4.3" ··· 19126 18319 } 19127 18320 ) 19128 18321 ( 19129 - sources."terser-5.39.0" 18322 + sources."terser-5.42.0" 19130 18323 // { 19131 18324 dependencies = [ 19132 18325 sources."commander-2.20.3" ··· 19141 18334 ]; 19142 18335 } 19143 18336 ) 19144 - sources."tmp-0.0.33" 19145 - sources."to-regex-range-5.0.1" 19146 - sources."toidentifier-1.0.1" 19147 18337 ( 19148 - sources."tree-dump-1.0.2" 18338 + sources."tinyglobby-0.2.14" 19149 18339 // { 19150 18340 dependencies = [ 19151 - sources."tslib-2.8.1" 18341 + sources."picomatch-4.0.2" 19152 18342 ]; 19153 18343 } 19154 18344 ) 19155 - sources."tslib-1.14.1" 18345 + sources."tmp-0.0.33" 18346 + sources."to-regex-range-5.0.1" 18347 + sources."toidentifier-1.0.1" 19156 18348 ( 19157 - sources."tsx-4.19.2" 18349 + sources."tree-dump-1.0.3" 19158 18350 // { 19159 18351 dependencies = [ 19160 - sources."esbuild-0.23.1" 18352 + sources."tslib-2.8.1" 19161 18353 ]; 19162 18354 } 19163 18355 ) 18356 + sources."tslib-1.14.1" 18357 + sources."tsx-4.20.2" 19164 18358 sources."type-fest-0.21.3" 19165 18359 sources."type-is-1.6.18" 19166 - sources."undici-types-6.20.0" 19167 - sources."unicorn-magic-0.1.0" 18360 + sources."undici-types-7.8.0" 18361 + sources."unicorn-magic-0.3.0" 19168 18362 sources."unique-filename-4.0.0" 19169 18363 sources."unique-slug-5.0.0" 19170 18364 sources."universalify-2.0.1" ··· 19174 18368 sources."varint-6.0.0" 19175 18369 sources."vary-1.1.2" 19176 18370 ( 19177 - sources."vite-6.1.0" 18371 + sources."vite-6.3.5" 19178 18372 // { 19179 18373 dependencies = [ 19180 - sources."@types/node-22.13.4" 18374 + sources."@types/node-24.0.1" 18375 + sources."picomatch-4.0.2" 19181 18376 ]; 19182 18377 } 19183 18378 ) ··· 19202 18397 } 19203 18398 ) 19204 18399 sources."wrappy-1.0.2" 19205 - sources."ws-8.18.0" 18400 + sources."ws-8.18.2" 19206 18401 sources."yallist-5.0.0" 19207 - sources."yaml-2.7.0" 18402 + sources."yaml-2.8.0" 19208 18403 ]; 19209 18404 buildInputs = globalBuildInputs; 19210 18405 meta = { 19211 - description = "Type-safe static sites, written in pure elm with your own custom elm-markup syntax."; 18406 + description = "Hybrid Elm framework with full-stack and static routes."; 19212 18407 homepage = "https://elm-pages.com"; 19213 18408 license = "BSD-3-Clause"; 19214 18409 }; ··· 19227 18422 dependencies = [ 19228 18423 sources."@kwsites/file-exists-1.1.1" 19229 18424 sources."@kwsites/promise-deferred-1.1.1" 19230 - sources."debug-4.4.0" 18425 + sources."debug-4.4.1" 19231 18426 sources."git-clone-able-0.1.2" 19232 18427 sources."ms-2.1.3" 19233 - sources."semver-7.7.1" 19234 - sources."simple-git-3.27.0" 18428 + sources."semver-7.7.2" 18429 + sources."simple-git-3.28.0" 19235 18430 sources."upath-2.0.1" 19236 18431 ]; 19237 18432 buildInputs = globalBuildInputs; ··· 19255 18450 dependencies = [ 19256 18451 sources."asynckit-0.4.0" 19257 18452 sources."balanced-match-1.0.2" 19258 - sources."brace-expansion-1.1.11" 18453 + sources."brace-expansion-1.1.12" 19259 18454 sources."call-bind-apply-helpers-1.0.2" 19260 18455 sources."combined-stream-1.0.8" 19261 18456 sources."concat-map-0.0.1" ··· 19272 18467 sources."form-data-3.0.3" 19273 18468 sources."fs.realpath-1.0.0" 19274 18469 sources."function-bind-1.1.2" 19275 - sources."get-intrinsic-1.2.7" 18470 + sources."get-intrinsic-1.3.0" 19276 18471 sources."get-proto-1.0.1" 19277 18472 sources."glob-7.2.3" 19278 18473 sources."gopd-1.2.0" 19279 - sources."graphql-16.10.0" 18474 + sources."graphql-16.11.0" 19280 18475 sources."graphql-request-3.7.0" 19281 18476 sources."has-symbols-1.1.0" 19282 18477 sources."has-tostringtag-1.0.2"
+3 -5
pkgs/development/compilers/elm/update.sh
··· 2 2 #!nix-shell -p cabal2nix elm2nix -i bash ../../.. 3 3 4 4 # Update all cabal packages. 5 - cabal2nix 'https://github.com/zwilias/elm-instrument' --revision '0.0.7' > packages/ghc8_10/elm-instrument/default.nix 6 5 for subpath in 'avh4-lib' 'elm-format-lib' 'elm-format-markdown' 'elm-format-test-lib'; do 7 - cabal2nix 'https://github.com/avh4/elm-format' --revision '0.8.7' \ 8 - --subpath $subpath > packages/ghc9_2/elm-format/${subpath}.nix 6 + cabal2nix --no-haddock 'https://github.com/avh4/elm-format' --revision '0.8.8' \ 7 + --subpath $subpath > packages/ghc9_8/elm-format/${subpath}.nix 9 8 done 10 - cabal2nix 'https://github.com/avh4/elm-format' --revision '0.8.7' > packages/ghc9_2/elm-format/elm-format.nix 11 - cabal2nix 'https://github.com/stoeffel/elmi-to-json' --revision '1.3.0' > packages/ghc8_10/elmi-to-json/default.nix 9 + cabal2nix --no-haddock 'https://github.com/avh4/elm-format' --revision '0.8.8' > packages/ghc9_8/elm-format/elm-format.nix 12 10 cabal2nix 'https://github.com/ekmett/ansi-wl-pprint' --revision 'v0.6.8.1' > packages/ghc9_6/ansi-wl-pprint/default.nix 13 11 14 12 # We're building binaries from commit that npm installer is using since
+10 -5
pkgs/development/compilers/ghc/8.10.7-binary.nix
··· 342 342 -exec sed -i "s@extra-lib-dirs: @extra-lib-dirs: ${libiconv}/lib@" {} \; 343 343 '' 344 344 + 345 - # aarch64 does HAVE_NUMA so -lnuma requires it in library-dirs in rts/package.conf.in 345 + # Some platforms do HAVE_NUMA so -lnuma requires it in library-dirs in rts/package.conf.in 346 346 # FFI_LIB_DIR is a good indication of places it must be needed. 347 - lib.optionalString (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) '' 348 - find . -name package.conf.in \ 349 - -exec sed -i "s@FFI_LIB_DIR@FFI_LIB_DIR ${numactl.out}/lib@g" {} \; 350 - '' 347 + lib.optionalString 348 + ( 349 + lib.meta.availableOn stdenv.hostPlatform numactl 350 + && builtins.any ({ nixPackage, ... }: nixPackage == numactl) binDistUsed.archSpecificLibraries 351 + ) 352 + '' 353 + find . -name package.conf.in \ 354 + -exec sed -i "s@FFI_LIB_DIR@FFI_LIB_DIR ${numactl.out}/lib@g" {} \; 355 + '' 351 356 + 352 357 # Rename needed libraries and binaries, fix interpreter 353 358 lib.optionalString stdenv.hostPlatform.isLinux ''
+511
pkgs/development/compilers/ghc/9.0.2-binary.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchurl, 5 + perl, 6 + gcc, 7 + ncurses5, 8 + ncurses6, 9 + gmp, 10 + libiconv, 11 + numactl, 12 + libffi, 13 + llvmPackages, 14 + coreutils, 15 + targetPackages, 16 + 17 + # minimal = true; will remove files that aren't strictly necessary for 18 + # regular builds and GHC bootstrapping. 19 + # This is "useful" for staying within hydra's output limits for at least the 20 + # aarch64-linux architecture. 21 + minimal ? false, 22 + }: 23 + 24 + # Prebuilt only does native 25 + assert stdenv.targetPlatform == stdenv.hostPlatform; 26 + 27 + let 28 + downloadsUrl = "https://downloads.haskell.org/ghc"; 29 + 30 + # Copy sha256 from https://downloads.haskell.org/~ghc/9.0.2/SHA256SUMS 31 + version = "9.0.2"; 32 + 33 + # Information about available bindists that we use in the build. 34 + # 35 + # # Bindist library checking 36 + # 37 + # The field `archSpecificLibraries` also provides a way for us get notified 38 + # early when the upstream bindist changes its dependencies (e.g. because a 39 + # newer Debian version is used that uses a new `ncurses` version). 40 + # 41 + # Usage: 42 + # 43 + # * You can find the `fileToCheckFor` of libraries by running `readelf -d` 44 + # on the compiler binary (`exePathForLibraryCheck`). 45 + # * To skip library checking for an architecture, 46 + # set `exePathForLibraryCheck = null`. 47 + # * To skip file checking for a specific arch specific library, 48 + # set `fileToCheckFor = null`. 49 + ghcBinDists = { 50 + # Binary distributions for the default libc (e.g. glibc, or libSystem on Darwin) 51 + # nixpkgs uses for the respective system. 52 + defaultLibc = { 53 + i686-linux = { 54 + variantSuffix = ""; 55 + src = { 56 + url = "${downloadsUrl}/${version}/ghc-${version}-i386-deb9-linux.tar.xz"; 57 + sha256 = "fdeb9f8928fbe994064778a8e1e85bb1a58a6cd3dd7b724fcc2a1dcfda6cad47"; 58 + }; 59 + exePathForLibraryCheck = "ghc/stage2/build/tmp/ghc-stage2"; 60 + archSpecificLibraries = [ 61 + { 62 + nixPackage = gmp; 63 + fileToCheckFor = null; 64 + } 65 + # The i686-linux bindist provided by GHC HQ is currently built on Debian 9, 66 + # which link it against `libtinfo.so.5` (ncurses 5). 67 + # Other bindists are linked `libtinfo.so.6` (ncurses 6). 68 + { 69 + nixPackage = ncurses5; 70 + fileToCheckFor = "libtinfo.so.5"; 71 + } 72 + ]; 73 + }; 74 + x86_64-linux = { 75 + variantSuffix = ""; 76 + src = { 77 + url = "${downloadsUrl}/${version}/ghc-${version}-x86_64-deb10-linux.tar.xz"; 78 + sha256 = "5d0b9414b10cfb918453bcd01c5ea7a1824fe95948b08498d6780f20ba247afc"; 79 + }; 80 + exePathForLibraryCheck = "ghc/stage2/build/tmp/ghc-stage2"; 81 + archSpecificLibraries = [ 82 + { 83 + nixPackage = gmp; 84 + fileToCheckFor = null; 85 + } 86 + { 87 + nixPackage = ncurses6; 88 + fileToCheckFor = "libtinfo.so.6"; 89 + } 90 + { 91 + nixPackage = numactl; 92 + fileToCheckFor = null; 93 + } 94 + ]; 95 + }; 96 + aarch64-linux = { 97 + variantSuffix = ""; 98 + src = { 99 + url = "${downloadsUrl}/${version}/ghc-${version}-aarch64-deb10-linux.tar.xz"; 100 + sha256 = "cb016344c70a872738a24af60bd15d3b18749087b9905c1b3f1b1549dc01f46d"; 101 + }; 102 + exePathForLibraryCheck = "ghc/stage2/build/tmp/ghc-stage2"; 103 + archSpecificLibraries = [ 104 + { 105 + nixPackage = gmp; 106 + fileToCheckFor = null; 107 + } 108 + { 109 + nixPackage = ncurses6; 110 + fileToCheckFor = "libtinfo.so.6"; 111 + } 112 + { 113 + nixPackage = numactl; 114 + fileToCheckFor = null; 115 + } 116 + ]; 117 + }; 118 + x86_64-darwin = { 119 + variantSuffix = ""; 120 + src = { 121 + url = "${downloadsUrl}/${version}/ghc-${version}-x86_64-apple-darwin.tar.xz"; 122 + sha256 = "e1fe990eb987f5c4b03e0396f9c228a10da71769c8a2bc8fadbc1d3b10a0f53a"; 123 + }; 124 + exePathForLibraryCheck = null; # we don't have a library check for darwin yet 125 + archSpecificLibraries = [ 126 + { 127 + nixPackage = gmp; 128 + fileToCheckFor = null; 129 + } 130 + { 131 + nixPackage = ncurses6; 132 + fileToCheckFor = null; 133 + } 134 + { 135 + nixPackage = libiconv; 136 + fileToCheckFor = null; 137 + } 138 + ]; 139 + }; 140 + aarch64-darwin = { 141 + variantSuffix = ""; 142 + src = { 143 + url = "${downloadsUrl}/${version}/ghc-${version}-aarch64-apple-darwin.tar.xz"; 144 + sha256 = "b1fcab17fe48326d2ff302d70c12bc4cf4d570dfbbce68ab57c719cfec882b05"; 145 + }; 146 + exePathForLibraryCheck = null; # we don't have a library check for darwin yet 147 + archSpecificLibraries = [ 148 + { 149 + nixPackage = gmp; 150 + fileToCheckFor = null; 151 + } 152 + { 153 + nixPackage = ncurses6; 154 + fileToCheckFor = null; 155 + } 156 + { 157 + nixPackage = libiconv; 158 + fileToCheckFor = null; 159 + } 160 + ]; 161 + }; 162 + }; 163 + # Binary distributions for the musl libc for the respective system. 164 + musl = { 165 + x86_64-linux = { 166 + variantSuffix = "-musl"; 167 + src = { 168 + url = "${downloadsUrl}/${version}/ghc-${version}-x86_64-alpine3.12-linux-gmp.tar.xz"; 169 + sha256 = "5bb1e7192c2b9fcff68930dbdc65509d345138e9a43c5d447056a68decc05ec8"; 170 + }; 171 + exePathForLibraryCheck = "bin/ghc"; 172 + archSpecificLibraries = [ 173 + { 174 + nixPackage = gmp; 175 + fileToCheckFor = null; 176 + } 177 + { 178 + nixPackage = ncurses6; 179 + fileToCheckFor = "libncursesw.so.6"; 180 + } 181 + ]; 182 + }; 183 + }; 184 + }; 185 + 186 + distSetName = if stdenv.hostPlatform.isMusl then "musl" else "defaultLibc"; 187 + 188 + binDistUsed = 189 + ghcBinDists.${distSetName}.${stdenv.hostPlatform.system} 190 + or (throw "cannot bootstrap GHC on this platform ('${stdenv.hostPlatform.system}' with libc '${distSetName}')"); 191 + 192 + gmpUsed = 193 + (builtins.head ( 194 + builtins.filter ( 195 + drv: lib.hasPrefix "gmp" (drv.nixPackage.name or "") 196 + ) binDistUsed.archSpecificLibraries 197 + )).nixPackage; 198 + 199 + useLLVM = !(import ./common-have-ncg.nix { inherit lib stdenv version; }); 200 + 201 + libPath = lib.makeLibraryPath ( 202 + # Add arch-specific libraries. 203 + map ({ nixPackage, ... }: nixPackage) binDistUsed.archSpecificLibraries 204 + ); 205 + 206 + libEnvVar = lib.optionalString stdenv.hostPlatform.isDarwin "DY" + "LD_LIBRARY_PATH"; 207 + 208 + runtimeDeps = 209 + [ 210 + targetPackages.stdenv.cc 211 + targetPackages.stdenv.cc.bintools 212 + coreutils # for cat 213 + ] 214 + ++ lib.optionals useLLVM [ 215 + (lib.getBin llvmPackages.llvm) 216 + ] 217 + # On darwin, we need unwrapped bintools as well (for otool) 218 + ++ lib.optionals (stdenv.targetPlatform.linker == "cctools") [ 219 + targetPackages.stdenv.cc.bintools.bintools 220 + ]; 221 + 222 + in 223 + 224 + stdenv.mkDerivation { 225 + inherit version; 226 + pname = "ghc-binary${binDistUsed.variantSuffix}"; 227 + 228 + src = fetchurl binDistUsed.src; 229 + 230 + nativeBuildInputs = [ perl ]; 231 + 232 + # Set LD_LIBRARY_PATH or equivalent so that the programs running as part 233 + # of the bindist installer can find the libraries they expect. 234 + # Cannot patchelf beforehand due to relative RPATHs that anticipate 235 + # the final install location. 236 + ${libEnvVar} = libPath; 237 + 238 + postUnpack = 239 + # Verify our assumptions of which `libtinfo.so` (ncurses) version is used, 240 + # so that we know when ghc bindists upgrade that and we need to update the 241 + # version used in `libPath`. 242 + lib.optionalString (binDistUsed.exePathForLibraryCheck != null) 243 + # Note the `*` glob because some GHCs have a suffix when unpacked, e.g. 244 + # the musl bindist has dir `ghc-VERSION-x86_64-unknown-linux/`. 245 + # As a result, don't shell-quote this glob when splicing the string. 246 + ( 247 + let 248 + buildExeGlob = ''ghc-${version}*/"${binDistUsed.exePathForLibraryCheck}"''; 249 + in 250 + lib.concatStringsSep "\n" [ 251 + ('' 252 + shopt -u nullglob 253 + echo "Checking that ghc binary exists in bindist at ${buildExeGlob}" 254 + if ! test -e ${buildExeGlob}; then 255 + echo >&2 "GHC binary ${binDistUsed.exePathForLibraryCheck} could not be found in the bindist build directory (at ${buildExeGlob}) for arch ${stdenv.hostPlatform.system}, please check that ghcBinDists correctly reflect the bindist dependencies!"; exit 1; 256 + fi 257 + '') 258 + (lib.concatMapStringsSep "\n" ( 259 + { fileToCheckFor, nixPackage }: 260 + lib.optionalString (fileToCheckFor != null) '' 261 + echo "Checking bindist for ${fileToCheckFor} to ensure that is still used" 262 + if ! readelf -d ${buildExeGlob} | grep "${fileToCheckFor}"; then 263 + echo >&2 "File ${fileToCheckFor} could not be found in ${binDistUsed.exePathForLibraryCheck} for arch ${stdenv.hostPlatform.system}, please check that ghcBinDists correctly reflect the bindist dependencies!"; exit 1; 264 + fi 265 + 266 + echo "Checking that the nix package ${nixPackage} contains ${fileToCheckFor}" 267 + if ! test -e "${lib.getLib nixPackage}/lib/${fileToCheckFor}"; then 268 + echo >&2 "Nix package ${nixPackage} did not contain ${fileToCheckFor} for arch ${stdenv.hostPlatform.system}, please check that ghcBinDists correctly reflect the bindist dependencies!"; exit 1; 269 + fi 270 + '' 271 + ) binDistUsed.archSpecificLibraries) 272 + ] 273 + ) 274 + # GHC has dtrace probes, which causes ld to try to open /usr/lib/libdtrace.dylib 275 + # during linking 276 + + lib.optionalString stdenv.hostPlatform.isDarwin '' 277 + export NIX_LDFLAGS+=" -no_dtrace_dof" 278 + # not enough room in the object files for the full path to libiconv :( 279 + for exe in $(find . -type f -executable); do 280 + isScript $exe && continue 281 + ln -fs ${libiconv}/lib/libiconv.dylib $(dirname $exe)/libiconv.dylib 282 + install_name_tool -change /usr/lib/libiconv.2.dylib @executable_path/libiconv.dylib -change /usr/local/lib/gcc/6/libgcc_s.1.dylib ${gcc.cc.lib}/lib/libgcc_s.1.dylib $exe 283 + done 284 + '' 285 + + 286 + 287 + # Some scripts used during the build need to have their shebangs patched 288 + '' 289 + patchShebangs ghc-${version}/utils/ 290 + patchShebangs ghc-${version}/configure 291 + test -d ghc-${version}/inplace/bin && \ 292 + patchShebangs ghc-${version}/inplace/bin 293 + '' 294 + + 295 + # We have to patch the GMP paths for the integer-gmp package. 296 + '' 297 + find . -name ghc-bignum.buildinfo \ 298 + -exec sed -i "s@extra-lib-dirs: @extra-lib-dirs: ${lib.getLib gmpUsed}/lib@" {} \; 299 + 300 + # we need to modify the package db directly for hadrian bindists 301 + find . -name 'ghc-bignum*.conf' \ 302 + -exec sed -e '/^[a-z-]*library-dirs/a \ ${lib.getLib gmpUsed}/lib' -i {} \; 303 + '' 304 + + lib.optionalString stdenv.hostPlatform.isDarwin '' 305 + # we need to modify the package db directly for hadrian bindists 306 + # (all darwin bindists are hadrian-based for 9.2.2) 307 + find . -name 'base*.conf' \ 308 + -exec sed -e '/^[a-z-]*library-dirs/a \ ${lib.getLib libiconv}/lib' -i {} \; 309 + 310 + # To link RTS in the end we also need libffi now 311 + find . -name 'rts*.conf' \ 312 + -exec sed -e '/^[a-z-]*library-dirs/a \ ${lib.getLib libffi}/lib' \ 313 + -e 's@/Library/Developer/.*/usr/include/ffi@${lib.getDev libffi}/include@' \ 314 + -i {} \; 315 + '' 316 + + 317 + # Some platforms do HAVE_NUMA so -lnuma requires it in library-dirs in rts/package.conf.in 318 + # FFI_LIB_DIR is a good indication of places it must be needed. 319 + lib.optionalString 320 + ( 321 + lib.meta.availableOn stdenv.hostPlatform numactl 322 + && builtins.any ({ nixPackage, ... }: nixPackage == numactl) binDistUsed.archSpecificLibraries 323 + ) 324 + '' 325 + find . -name package.conf.in \ 326 + -exec sed -i "s@FFI_LIB_DIR@FFI_LIB_DIR ${numactl.out}/lib@g" {} \; 327 + '' 328 + + 329 + # Rename needed libraries and binaries, fix interpreter 330 + lib.optionalString stdenv.hostPlatform.isLinux '' 331 + find . -type f -executable -exec patchelf \ 332 + --interpreter ${stdenv.cc.bintools.dynamicLinker} {} \; 333 + ''; 334 + 335 + # fix for `configure: error: Your linker is affected by binutils #16177` 336 + preConfigure = lib.optionalString stdenv.targetPlatform.isAarch32 "LD=ld.gold"; 337 + 338 + configurePlatforms = [ ]; 339 + configureFlags = 340 + [ 341 + "--with-gmp-includes=${lib.getDev gmpUsed}/include" 342 + # Note `--with-gmp-libraries` does nothing for GHC bindists: 343 + # https://gitlab.haskell.org/ghc/ghc/-/merge_requests/6124 344 + ] 345 + ++ lib.optional stdenv.hostPlatform.isDarwin "--with-gcc=${./gcc-clang-wrapper.sh}" 346 + # From: https://github.com/NixOS/nixpkgs/pull/43369/commits 347 + ++ lib.optional stdenv.hostPlatform.isMusl "--disable-ld-override"; 348 + 349 + # No building is necessary, but calling make without flags ironically 350 + # calls install-strip ... 351 + dontBuild = true; 352 + 353 + # GHC tries to remove xattrs when installing to work around Gatekeeper 354 + # (see https://gitlab.haskell.org/ghc/ghc/-/issues/17418). This step normally 355 + # succeeds in nixpkgs because xattrs are not allowed in the store, but it 356 + # can fail when a file has the `com.apple.provenance` xattr, and it can’t be 357 + # modified (such as target of the symlink to `libiconv.dylib`). 358 + # The `com.apple.provenance` xattr is a new feature of macOS as of macOS 13. 359 + # See: https://eclecticlight.co/2023/03/13/ventura-has-changed-app-quarantine-with-a-new-xattr/ 360 + makeFlags = lib.optionals stdenv.buildPlatform.isDarwin [ "XATTR=/does-not-exist" ]; 361 + 362 + # Patch scripts to include runtime dependencies in $PATH. 363 + postInstall = '' 364 + for i in "$out/bin/"*; do 365 + test ! -h "$i" || continue 366 + isScript "$i" || continue 367 + sed -i -e '2i export PATH="${lib.makeBinPath runtimeDeps}:$PATH"' "$i" 368 + done 369 + ''; 370 + 371 + # Apparently necessary for the ghc Alpine (musl) bindist: 372 + # When we strip, and then run the 373 + # patchelf --set-rpath "${libPath}:$(patchelf --print-rpath $p)" $p 374 + # below, running ghc (e.g. during `installCheckPhase)` gives some apparently 375 + # corrupted rpath or whatever makes the loader work on nonsensical strings: 376 + # running install tests 377 + # Error relocating /nix/store/...-ghc-8.10.2-binary/lib/ghc-8.10.5/bin/ghc: : symbol not found 378 + # Error relocating /nix/store/...-ghc-8.10.2-binary/lib/ghc-8.10.5/bin/ghc: ir6zf6c9f86pfx8sr30n2vjy-ghc-8.10.2-binary/lib/ghc-8.10.5/bin/../lib/x86_64-linux-ghc-8.10.5/libHSexceptions-0.10.4-ghc8.10.5.so: symbol not found 379 + # Error relocating /nix/store/...-ghc-8.10.2-binary/lib/ghc-8.10.5/bin/ghc: y/lib/ghc-8.10.5/bin/../lib/x86_64-linux-ghc-8.10.5/libHStemplate-haskell-2.16.0.0-ghc8.10.5.so: symbol not found 380 + # Error relocating /nix/store/...-ghc-8.10.2-binary/lib/ghc-8.10.5/bin/ghc: 8.10.5/libHStemplate-haskell-2.16.0.0-ghc8.10.5.so: symbol not found 381 + # Error relocating /nix/store/...-ghc-8.10.2-binary/lib/ghc-8.10.5/bin/ghc: �: symbol not found 382 + # Error relocating /nix/store/...-ghc-8.10.2-binary/lib/ghc-8.10.5/bin/ghc: �?: symbol not found 383 + # Error relocating /nix/store/...-ghc-8.10.2-binary/lib/ghc-8.10.5/bin/ghc: 64-linux-ghc-8.10.5/libHSexceptions-0.10.4-ghc8.10.5.so: symbol not found 384 + # This is extremely bogus and should be investigated. 385 + dontStrip = if stdenv.hostPlatform.isMusl then true else false; # `if` for explicitness 386 + 387 + # On Linux, use patchelf to modify the executables so that they can 388 + # find editline/gmp. 389 + postFixup = 390 + lib.optionalString (stdenv.hostPlatform.isLinux && !(binDistUsed.isStatic or false)) ( 391 + if stdenv.hostPlatform.isAarch64 then 392 + # Keep rpath as small as possible on aarch64 for patchelf#244. All Elfs 393 + # are 2 directories deep from $out/lib, so pooling symlinks there makes 394 + # a short rpath. 395 + '' 396 + (cd $out/lib; ln -s ${ncurses6.out}/lib/libtinfo.so.6) 397 + (cd $out/lib; ln -s ${lib.getLib gmpUsed}/lib/libgmp.so.10) 398 + (cd $out/lib; ln -s ${numactl.out}/lib/libnuma.so.1) 399 + for p in $(find "$out/lib" -type f -name "*\.so*"); do 400 + (cd $out/lib; ln -s $p) 401 + done 402 + 403 + for p in $(find "$out/lib" -type f -executable); do 404 + if isELF "$p"; then 405 + echo "Patchelfing $p" 406 + patchelf --set-rpath "\$ORIGIN:\$ORIGIN/../.." $p 407 + fi 408 + done 409 + '' 410 + else 411 + '' 412 + for p in $(find "$out" -type f -executable); do 413 + if isELF "$p"; then 414 + echo "Patchelfing $p" 415 + patchelf --set-rpath "${libPath}:$(patchelf --print-rpath $p)" $p 416 + fi 417 + done 418 + '' 419 + ) 420 + + lib.optionalString stdenv.hostPlatform.isDarwin '' 421 + # not enough room in the object files for the full path to libiconv :( 422 + for exe in $(find "$out" -type f -executable); do 423 + isScript $exe && continue 424 + ln -fs ${libiconv}/lib/libiconv.dylib $(dirname $exe)/libiconv.dylib 425 + install_name_tool -change /usr/lib/libiconv.2.dylib @executable_path/libiconv.dylib -change /usr/local/lib/gcc/6/libgcc_s.1.dylib ${gcc.cc.lib}/lib/libgcc_s.1.dylib $exe 426 + done 427 + 428 + for file in $(find "$out" -name setup-config); do 429 + substituteInPlace $file --replace /usr/bin/ranlib "$(type -P ranlib)" 430 + done 431 + '' 432 + + lib.optionalString minimal '' 433 + # Remove profiling files 434 + find $out -type f -name '*.p_o' -delete 435 + find $out -type f -name '*.p_hi' -delete 436 + find $out -type f -name '*_p.a' -delete 437 + # `-f` because e.g. musl bindist does not have this file. 438 + rm -f $out/lib/ghc-*/bin/ghc-iserv-prof 439 + # Hydra will redistribute this derivation, so we have to keep the docs for 440 + # legal reasons (retaining the legal notices etc) 441 + # As a last resort we could unpack the docs separately and symlink them in. 442 + # They're in $out/share/{doc,man}. 443 + '' 444 + # Recache package db which needs to happen for Hadrian bindists 445 + # where we modify the package db before installing 446 + + '' 447 + shopt -s nullglob 448 + package_db=("$out"/lib/ghc-*/lib/package.conf.d "$out"/lib/ghc-*/package.conf.d) 449 + "$out/bin/ghc-pkg" --package-db="$package_db" recache 450 + ''; 451 + 452 + # GHC cannot currently produce outputs that are ready for `-pie` linking. 453 + # Thus, disable `pie` hardening, otherwise `recompile with -fPIE` errors appear. 454 + # See: 455 + # * https://github.com/NixOS/nixpkgs/issues/129247 456 + # * https://gitlab.haskell.org/ghc/ghc/-/issues/19580 457 + hardeningDisable = [ "pie" ]; 458 + 459 + doInstallCheck = true; 460 + installCheckPhase = '' 461 + # Sanity check, can ghc create executables? 462 + cd $TMP 463 + mkdir test-ghc; cd test-ghc 464 + cat > main.hs << EOF 465 + {-# LANGUAGE TemplateHaskell #-} 466 + module Main where 467 + main = putStrLn \$([|"yes"|]) 468 + EOF 469 + env -i $out/bin/ghc --make main.hs || exit 1 470 + echo compilation ok 471 + [ $(./main) == "yes" ] 472 + ''; 473 + 474 + passthru = 475 + { 476 + targetPrefix = ""; 477 + enableShared = true; 478 + 479 + inherit llvmPackages; 480 + 481 + # Our Cabal compiler name 482 + haskellCompilerName = "ghc-${version}"; 483 + } 484 + # We duplicate binDistUsed here since we have a sensible default even if no bindist is available, 485 + # this makes sure that getting the `meta` attribute doesn't throw even on unsupported platforms. 486 + // lib.optionalAttrs (ghcBinDists.${distSetName}.${stdenv.hostPlatform.system}.isHadrian or false) { 487 + # Normal GHC derivations expose the hadrian derivation used to build them 488 + # here. In the case of bindists we just make sure that the attribute exists, 489 + # as it is used for checking if a GHC derivation has been built with hadrian. 490 + # The isHadrian mechanism will become obsolete with GHCs that use hadrian 491 + # exclusively, i.e. 9.6 (and 9.4?). 492 + hadrian = null; 493 + }; 494 + 495 + meta = rec { 496 + homepage = "http://haskell.org/ghc"; 497 + description = "Glasgow Haskell Compiler"; 498 + license = lib.licenses.bsd3; 499 + # HACK: since we can't encode the libc / abi in platforms, we need 500 + # to make the platform list dependent on the evaluation platform 501 + # in order to avoid eval errors with musl which supports less 502 + # platforms than the default libcs (i. e. glibc / libSystem). 503 + # This is done for the benefit of Hydra, so `packagePlatforms` 504 + # won't return any platforms that would cause an evaluation 505 + # failure for `pkgsMusl.haskell.compiler.ghc922Binary`, as 506 + # long as the evaluator runs on a platform that supports 507 + # `pkgsMusl`. 508 + platforms = builtins.attrNames ghcBinDists.${distSetName}; 509 + teams = [ lib.teams.haskell ]; 510 + }; 511 + }
+10 -5
pkgs/development/compilers/ghc/9.2.4-binary.nix
··· 311 311 -i {} \; 312 312 '' 313 313 + 314 - # aarch64 does HAVE_NUMA so -lnuma requires it in library-dirs in rts/package.conf.in 314 + # Some platforms do HAVE_NUMA so -lnuma requires it in library-dirs in rts/package.conf.in 315 315 # FFI_LIB_DIR is a good indication of places it must be needed. 316 - lib.optionalString (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) '' 317 - find . -name package.conf.in \ 318 - -exec sed -i "s@FFI_LIB_DIR@FFI_LIB_DIR ${numactl.out}/lib@g" {} \; 319 - '' 316 + lib.optionalString 317 + ( 318 + lib.meta.availableOn stdenv.hostPlatform numactl 319 + && builtins.any ({ nixPackage, ... }: nixPackage == numactl) binDistUsed.archSpecificLibraries 320 + ) 321 + '' 322 + find . -name package.conf.in \ 323 + -exec sed -i "s@FFI_LIB_DIR@FFI_LIB_DIR ${numactl.out}/lib@g" {} \; 324 + '' 320 325 + 321 326 # Rename needed libraries and binaries, fix interpreter 322 327 lib.optionalString stdenv.hostPlatform.isLinux ''
+10 -5
pkgs/development/compilers/ghc/9.6.3-binary.nix
··· 297 297 -i {} \; 298 298 '' 299 299 + 300 - # aarch64 does HAVE_NUMA so -lnuma requires it in library-dirs in rts/package.conf.in 300 + # Some platforms do HAVE_NUMA so -lnuma requires it in library-dirs in rts/package.conf.in 301 301 # FFI_LIB_DIR is a good indication of places it must be needed. 302 - lib.optionalString (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) '' 303 - find . -name package.conf.in \ 304 - -exec sed -i "s@FFI_LIB_DIR@FFI_LIB_DIR ${numactl.out}/lib@g" {} \; 305 - '' 302 + lib.optionalString 303 + ( 304 + lib.meta.availableOn stdenv.hostPlatform numactl 305 + && builtins.any ({ nixPackage, ... }: nixPackage == numactl) binDistUsed.archSpecificLibraries 306 + ) 307 + '' 308 + find . -name package.conf.in \ 309 + -exec sed -i "s@FFI_LIB_DIR@FFI_LIB_DIR ${numactl.out}/lib@g" {} \; 310 + '' 306 311 + 307 312 # Rename needed libraries and binaries, fix interpreter 308 313 lib.optionalString stdenv.hostPlatform.isLinux ''
+10 -5
pkgs/development/compilers/ghc/9.8.4-binary.nix
··· 311 311 -i {} \; 312 312 '' 313 313 + 314 - # aarch64 does HAVE_NUMA so -lnuma requires it in library-dirs in rts/package.conf.in 314 + # Some platforms do HAVE_NUMA so -lnuma requires it in library-dirs in rts/package.conf.in 315 315 # FFI_LIB_DIR is a good indication of places it must be needed. 316 - lib.optionalString (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) '' 317 - find . -name package.conf.in \ 318 - -exec sed -i "s@FFI_LIB_DIR@FFI_LIB_DIR ${numactl.out}/lib@g" {} \; 319 - '' 316 + lib.optionalString 317 + ( 318 + lib.meta.availableOn stdenv.hostPlatform numactl 319 + && builtins.any ({ nixPackage, ... }: nixPackage == numactl) binDistUsed.archSpecificLibraries 320 + ) 321 + '' 322 + find . -name package.conf.in \ 323 + -exec sed -i "s@FFI_LIB_DIR@FFI_LIB_DIR ${numactl.out}/lib@g" {} \; 324 + '' 320 325 + 321 326 # Rename needed libraries and binaries, fix interpreter 322 327 lib.optionalString stdenv.hostPlatform.isLinux ''
+4 -1
pkgs/development/compilers/ghc/common-hadrian.nix
··· 359 359 ++ lib.optional enableDwarf elfutils 360 360 ++ lib.optional (!enableNativeBignum) gmp 361 361 ++ lib.optional ( 362 - platform.libc != "glibc" && !targetPlatform.isWindows && !targetPlatform.isGhcjs 362 + platform.libc != "glibc" 363 + && !targetPlatform.isWindows 364 + && !targetPlatform.isGhcjs 365 + && !targetPlatform.useAndroidPrebuilt 363 366 ) libiconv; 364 367 365 368 # TODO(@sternenseemann): is buildTarget LLVM unnecessary?
+40 -1
pkgs/development/compilers/ghc/common-make-native-bignum.nix
··· 365 365 ./Cabal-3.2-3.4-paths-fix-cycle-aarch64-darwin.patch 366 366 ) 367 367 ] 368 + 368 369 # Fixes stack overrun in rts which crashes an process whenever 369 370 # freeHaskellFunPtr is called with nixpkgs' hardening flags. 370 371 # https://gitlab.haskell.org/ghc/ghc/-/issues/25485 ··· 376 377 url = "https://gitlab.haskell.org/ghc/ghc/-/commit/39bb6e583d64738db51441a556d499aa93a4fc4a.patch"; 377 378 sha256 = "0w5fx413z924bi2irsy1l4xapxxhrq158b5gn6jzrbsmhvmpirs0"; 378 379 }) 379 - ]; 380 + ] 381 + 382 + # Before GHC 9.6, GHC, when used to compile C sources (i.e. to drive the CC), would first 383 + # invoke the C compiler to generate assembly and later call the assembler on the result of 384 + # that operation. Unfortunately, that is brittle in a lot of cases, e.g. when using mismatched 385 + # CC / assembler (https://gitlab.haskell.org/ghc/ghc/-/merge_requests/12005). This issue 386 + # does not affect us. However, LLVM 18 introduced a check in clang that makes sure no 387 + # non private labels occur between .cfi_startproc and .cfi_endproc which causes the 388 + # assembly that the same version (!) of clang generates from rts/StgCRun.c to be rejected. 389 + # This causes GHC to fail compilation on mach-o platforms ever since we upgraded to 390 + # LLVM 19. 391 + # 392 + # clang compiles the same file without issues whithout the roundtrip via assembly. Thus, 393 + # the solution is to backport those changes from GHC 9.6 that skip the intermediate 394 + # assembly step. 395 + # 396 + # https://gitlab.haskell.org/ghc/ghc/-/issues/25608#note_622589 397 + # https://gitlab.haskell.org/ghc/ghc/-/merge_requests/6877 398 + ++ ( 399 + if lib.versionAtLeast version "9.4" then 400 + [ 401 + # Need to use this patch so the next one applies, passes file location info to the cc phase 402 + (fetchpatch { 403 + name = "ghc-add-location-to-cc-phase.patch"; 404 + url = "https://gitlab.haskell.org/ghc/ghc/-/commit/4a7256a75af2fc0318bef771a06949ffb3939d5a.patch"; 405 + hash = "sha256-DnTI+i1zMebeWvw75D59vMaEEBb2Nr9HusxTyhmdy2M="; 406 + }) 407 + # Makes Cc phase directly generate object files instead of assembly 408 + (fetchpatch { 409 + name = "ghc-cc-directly-emit-object.patch"; 410 + url = "https://gitlab.haskell.org/ghc/ghc/-/commit/96811ba491495b601ec7d6a32bef8563b0292109.patch"; 411 + hash = "sha256-G8u7/MK/tGOEN8Wxccxj/YIOP7mL2G9Co1WKdHXOo6I="; 412 + }) 413 + ] 414 + else 415 + [ 416 + # TODO(@sternenseemann): backport changes to GHC < 9.4 if possible 417 + ] 418 + ); 380 419 381 420 postPatch = "patchShebangs ."; 382 421
+4
pkgs/development/haskell-modules/configuration-arm.nix
··· 124 124 # https://github.com/haskell-crypto/cryptonite/issues/367 125 125 cryptonite = dontCheck super.cryptonite; 126 126 } 127 + // lib.optionalAttrs (with pkgs.stdenv.hostPlatform; isAarch && isAndroid) { 128 + # android is not currently allowed as 'supported-platforms' by hackage2nix 129 + android-activity = unmarkBroken super.android-activity; 130 + }
+264 -304
pkgs/development/haskell-modules/configuration-common.nix
··· 11 11 # distinction. 12 12 { pkgs, haskellLib }: 13 13 14 + self: super: 15 + 14 16 let 15 17 inherit (pkgs) fetchpatch lib; 16 18 inherit (lib) throwIfNot versionOlder; 19 + 20 + warnAfterVersion = 21 + ver: pkg: 22 + lib.warnIf (lib.versionOlder ver 23 + super.${pkg.pname}.version 24 + ) "override for haskellPackages.${pkg.pname} may no longer be needed" pkg; 25 + 17 26 in 18 27 19 28 with haskellLib; 20 29 21 30 # To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. 22 - self: super: 23 31 { 24 32 # Hackage's accelerate is from 2020 and incompatible with our GHC. 25 33 # The existing derivation also has missing dependencies 26 34 # compared to the source from github. 27 35 # https://github.com/AccelerateHS/accelerate/issues/553 28 - accelerate = 29 - assert super.accelerate.version == "1.3.0.0"; 30 - lib.pipe super.accelerate [ 31 - (addBuildDepends [ 32 - self.double-conversion 33 - self.formatting 34 - self.microlens 35 - ]) 36 + accelerate = lib.pipe super.accelerate [ 37 + (warnAfterVersion "1.3.0.0") 38 + (addBuildDepends [ 39 + self.double-conversion 40 + self.formatting 41 + self.microlens 42 + ]) 36 43 37 - (overrideCabal (drv: { 38 - version = "1.3.0.0-unstable-2025-04-25"; 39 - src = pkgs.fetchFromGitHub { 40 - owner = "AccelerateHS"; 41 - repo = "accelerate"; 42 - rev = "3f681a5091eddf5a3b97f4cd0de32adc830e1117"; 43 - sha256 = "sha256-tCcl7wAls+5cBSrqbxfEAJngbV43OJcLJdaC4qqkBxc="; 44 - }; 45 - })) 46 - ]; 44 + (overrideCabal (drv: { 45 + version = "1.3.0.0-unstable-2025-04-25"; 46 + src = pkgs.fetchFromGitHub { 47 + owner = "AccelerateHS"; 48 + repo = "accelerate"; 49 + rev = "3f681a5091eddf5a3b97f4cd0de32adc830e1117"; 50 + sha256 = "sha256-tCcl7wAls+5cBSrqbxfEAJngbV43OJcLJdaC4qqkBxc="; 51 + }; 52 + })) 53 + ]; 47 54 48 55 # https://github.com/ivanperez-keera/dunai/issues/427 49 56 dunai = addBuildDepend self.list-transformer (enableCabalFlag "list-transformer" super.dunai); ··· 80 87 81 88 # Needs matching version of Cabal 82 89 Cabal-hooks = super.Cabal-hooks.override { 90 + Cabal = self.Cabal_3_14_2_0; 91 + }; 92 + 93 + # Needs Cabal>=3.14 94 + cabal-lenses = super.cabal-lenses.override { 83 95 Cabal = self.Cabal_3_14_2_0; 84 96 }; 85 97 ··· 164 176 guardian 165 177 ; 166 178 179 + # Expected test output for these accidentally checks the absolute location of the source directory 180 + # https://github.com/dan-t/cabal-cargs/issues/9 181 + cabal-cargs = overrideCabal (drv: { 182 + testFlags = drv.testFlags or [ ] ++ [ 183 + "-p" 184 + "!/FindCabalFilePure withoutSandbox/" 185 + "-p" 186 + "!/FromCabalFilePure withoutSandbox/" 187 + "-p" 188 + "!/FromLibSrcPure withoutSandbox/" 189 + "-p" 190 + "!/FromExeSrcFilePure withoutSandbox/" 191 + "-p" 192 + "!/FindCabalFilePure withSandbox/" 193 + "-p" 194 + "!/FromCabalFilePure withSandbox/" 195 + "-p" 196 + "!/FromLibSrcPure withSandbox/" 197 + "-p" 198 + "!/FromExeSrcFilePure withSandbox/" 199 + ]; 200 + }) super.cabal-cargs; 201 + 167 202 # Extensions wants the latest version of Cabal for its list of Haskell 168 203 # language extensions. 169 204 # 2025-02-10: jailbreak to allow hspec-hedgehog 0.3.0.0 and hedgehog 1.5 ··· 203 238 disableCabalFlag "auto" super.ghc-lib-parser-ex 204 239 ); 205 240 206 - ghcide = appendPatches [ 207 - # Support ghc == 9.10.2 208 - (pkgs.fetchpatch2 { 209 - name = "ghcide-ghc-9.10.2.patch"; 210 - url = "https://github.com/haskell/haskell-language-server/commit/fb17921128bd56ba74872cae9539767e63b9fd79.patch"; 211 - sha256 = "161kcpfnv3q0n1fgsc0rx2v1rqf16g3pnjqabayym47yg2kp1qiv"; 212 - stripLen = 1; 213 - }) 214 - # Support hie-bios >= 0.15 (unreleased to hackage) 215 - (pkgs.fetchpatch2 { 216 - name = "ghcide-hie-bios-0.15.patch"; 217 - url = "https://github.com/haskell/haskell-language-server/commit/eb06c6f6ad7d7fcc29ff4b62f679f428897147f8.patch"; 218 - sha256 = "0im3mf71chsgk787lz942c8zlmq00gfsd5rclprlsncg0zli1whq"; 219 - includes = [ 220 - "ghcide.cabal" 221 - "**/Diagnostics.hs" 222 - ]; 223 - stripLen = 1; 224 - }) 225 - ] super.ghcide; 226 - 227 241 ########################################### 228 242 ### END HASKELL-LANGUAGE-SERVER SECTION ### 229 243 ########################################### ··· 246 260 ]; 247 261 }) super.vector; 248 262 249 - # Too strict bounds on base 250 - # https://github.com/lspitzner/butcher/issues/7#issuecomment-1681394943 251 - butcher = doJailbreak super.butcher; 252 263 # https://github.com/lspitzner/data-tree-print/issues/4 253 264 data-tree-print = doJailbreak super.data-tree-print; 254 - # … and template-haskell. 255 - # https://github.com/lspitzner/czipwith/issues/5 256 - czipwith = doJailbreak super.czipwith; 257 265 258 266 # jacinda needs latest version of alex and happy 259 267 jacinda = super.jacinda.override { ··· 377 385 # 2023-07-17: Outdated base bound https://github.com/srid/lvar/issues/5 378 386 lvar = doJailbreak super.lvar; 379 387 388 + # Don't call setEnv in parallel in the test suite (which leads to flaky failures) 389 + env-extra = 390 + appendPatches 391 + [ 392 + (pkgs.fetchpatch { 393 + name = "env-extra-no-parallel-setenv.patch"; 394 + url = "https://github.com/d12frosted/env-extra/commit/4fcbc031b210e71e4243fcfe7c48d381e2f51d78.patch"; 395 + sha256 = "sha256-EbXk+VOmxMJAMCMTXpTiW8fkbNI9za7f1alzCeaJaV4="; 396 + excludes = [ "package.yaml" ]; 397 + }) 398 + ] 399 + ( 400 + overrideCabal (drv: { 401 + prePatch = '' 402 + ${drv.prePatch or ""} 403 + ${lib.getExe' pkgs.buildPackages.dos2unix "dos2unix"} *.cabal 404 + ''; 405 + }) super.env-extra 406 + ); 407 + 380 408 # This used to be a core package provided by GHC, but then the compiler 381 409 # dropped it. We define the name here to make sure that old packages which 382 410 # depend on this library still evaluate (even though they won't compile ··· 415 443 }) 416 444 ] super.lukko; 417 445 446 + # Relax version constraints (network < 3.2, text < 2.1) 447 + # https://github.com/essandess/adblock2privoxy/pull/43 448 + adblock2privoxy = doJailbreak super.adblock2privoxy; 449 + 450 + # Missing test file https://gitlab.com/dpwiz/hs-jpeg-turbo/-/issues/1 451 + jpeg-turbo = dontCheck super.jpeg-turbo; 452 + JuicyPixels-jpeg-turbo = dontCheck super.JuicyPixels-jpeg-turbo; 453 + 418 454 # Fixes compilation for basement on i686 for GHC >= 9.4 419 455 # https://github.com/haskell-foundation/foundation/pull/573 420 456 # Patch would not work for GHC >= 9.2 where it breaks compilation on x86_64 ··· 470 506 # https://github.com/schuelermine/ret/issues/3 471 507 ret = doJailbreak super.ret; # base < 4.19 472 508 473 - # 2025-02-13: This part from https://github.com/haskell/ThreadScope/pull/130 seems to be unreleased: 474 - threadscope = appendPatches [ 475 - (fetchpatch { 476 - name = "import-monad.patch"; 477 - url = "https://github.com/haskell/ThreadScope/commit/8846508e9769a8dfd82b3ff66259ba4d58255932.patch"; 478 - sha256 = "sha256-wBqDJWmqvmU1sFuw/ZlxHOb8xPhZO2RBuyYFP9bJCVI="; 479 - }) 480 - ] super.threadscope; 481 - 482 509 # The latest release on hackage has an upper bound on containers which 483 510 # breaks the build, though it works with the version of containers present 484 511 # and the upper bound doesn't exist in code anymore: ··· 508 535 # https://github.com/FPtje/GLuaFixer/issues/165 509 536 glualint = dontCheck super.glualint; 510 537 511 - # The Hackage tarball is purposefully broken, because it's not intended to be, like, useful. 512 - # https://git-annex.branchable.com/bugs/bash_completion_file_is_missing_in_the_6.20160527_tarball_on_hackage/ 538 + # Hackage tarball only includes what is supported by `cabal install git-annex`, 539 + # but we want e.g. completions as well. See 540 + # https://web.archive.org/web/20160724083703/https://git-annex.branchable.com/bugs/bash_completion_file_is_missing_in_the_6.20160527_tarball_on_hackage/ 541 + # or git-annex @ 3571b077a1244330cc736181ee04b4d258a78476 doc/bugs/bash_completion_file_is_missing* 513 542 git-annex = lib.pipe super.git-annex ( 514 543 [ 515 544 (overrideCabal (drv: { ··· 517 546 name = "git-annex-${super.git-annex.version}-src"; 518 547 url = "git://git-annex.branchable.com/"; 519 548 rev = "refs/tags/" + super.git-annex.version; 520 - sha256 = "10prmih74h31fwv14inqavzmm25hmlr24h49h9lpxqd88dn3r9cd"; 549 + sha256 = "0d968aciaxmblahk79x2m708rvbg19flj5naxzg0zdp9j2jwlcqf"; 521 550 # delete android and Android directories which cause issues on 522 551 # darwin (case insensitive directory). Since we don't need them 523 552 # during the build process, we can delete it to prevent a hash ··· 607 636 ) 608 637 ); 609 638 639 + # Overly strict bounds on postgresql-simple (< 0.7), tasty (< 1.5) and tasty-quickcheck (< 0.11) 640 + # https://github.com/tdammers/migrant/pull/5 641 + migrant-core = doJailbreak super.migrant-core; 642 + migrant-sqlite-simple = doJailbreak super.migrant-sqlite-simple; 643 + migrant-hdbc = doJailbreak super.migrant-hdbc; 644 + migrant-postgresql-simple = lib.pipe super.migrant-postgresql-simple [ 645 + (overrideCabal { 646 + preCheck = '' 647 + postgresqlTestUserOptions="LOGIN SUPERUSER" 648 + ''; 649 + }) 650 + (addTestToolDepends [ 651 + pkgs.postgresql 652 + pkgs.postgresqlTestHook 653 + ]) 654 + doJailbreak 655 + ]; 656 + 610 657 # https://github.com/froozen/kademlia/issues/2 611 658 kademlia = dontCheck super.kademlia; 612 659 ··· 715 762 # https://github.com/alphaHeavy/lzma-conduit/issues/23 716 763 lzma-conduit = doJailbreak super.lzma-conduit; 717 764 765 + # doctest suite needs adjustment with GHC 9.12 766 + xml-conduit = appendPatch (pkgs.fetchpatch { 767 + name = "xml-conduit-ghc-9.12.patch"; 768 + url = "https://github.com/snoyberg/xml/commit/73ce67029c61decaa6525536377a15581325fd9e.patch"; 769 + sha256 = "1gvdhwz7f6rw28xqm82h1kx2kwbdvigipfcb0y66520lvd544sm6"; 770 + stripLen = 1; 771 + }) super.xml-conduit; 772 + 718 773 # 2020-06-05: HACK: does not pass own build suite - `dontCheck` 719 774 # 2024-01-15: too strict bound on free < 5.2 720 775 hnix = doJailbreak ( ··· 1088 1143 } 1089 1144 sed -i ${name}.cabal \ 1090 1145 -e 's/\(bytestring\) .*/\1/w c1' \ 1091 - -e 's/\(text\) .*/\1/w c2' 1146 + -e 's/\(text\) .*/\1/w c2' \ 1147 + -e 's/\(aeson\) .*/\1/w c3' 1092 1148 check_sed c1 'bytestring .*' 1093 1149 check_sed c2 'text .*' 1150 + ${lib.optionalString (name == "selda-json") "check_sed c3 'aeson .*'"} 1094 1151 ''; 1095 1152 }) super.${name}; 1096 1153 in ··· 1240 1297 1241 1298 # 2025-02-10: Too strict bounds on text < 2.1 1242 1299 digestive-functors-blaze = doJailbreak super.digestive-functors-blaze; 1243 - digestive-functors = doJailbreak super.digestive-functors; 1244 1300 1245 1301 # Wrap the generated binaries to include their run-time dependencies in 1246 1302 # $PATH. Also, cryptol needs a version of sbl that's newer than what we have ··· 1530 1586 }) 1531 1587 ] super.servant-routes; 1532 1588 1589 + # Fix test suite with text >= 2.1.2 1590 + servant-client = 1591 + appendPatches 1592 + [ 1593 + (pkgs.fetchpatch { 1594 + name = "servant-client-text-2.1.2.patch"; 1595 + url = "https://github.com/haskell-servant/servant/commit/9cda0cfb356a01ad402ee949e0b0d5c0494eace2.patch"; 1596 + sha256 = "19vpn7h108wra9b84r642zxg0mii66rq4vjbqhi7ackkdb0mx9yn"; 1597 + relative = "servant-client"; 1598 + # patch to servant-client.cabal doesn't apply on 0.20.2 1599 + includes = [ "README.md" ]; 1600 + }) 1601 + ] 1602 + ( 1603 + overrideCabal (drv: { 1604 + postPatch = 1605 + super.postPatch or "" 1606 + + '' 1607 + # Restore the symlink (to the file we patch) which becomes a regular file 1608 + # in the hackage tarball 1609 + ln -sf README.md README.lhs 1610 + ''; 1611 + }) super.servant-client 1612 + ); 1613 + 1533 1614 # it wants to build a statically linked binary by default 1534 1615 hledger-flow = overrideCabal (drv: { 1535 1616 postPatch = ··· 1588 1669 # https://github.com/NixOS/nixpkgs/issues/198495 1589 1670 (dontCheckIf (pkgs.postgresqlTestHook.meta.broken) super.persistent-postgresql); 1590 1671 1672 + # Downgrade persistent-test to a version that's compatible with 1673 + # persistent < 2.16 (which Stackage prescribed). Unfortunately, the 1674 + # bad version of persistent-test slipped into Stackage LTS because 1675 + # PVP allows it and LTS doesn't continuously run test suites (contrary 1676 + # to nightly). 1677 + # See also https://github.com/yesodweb/persistent/pull/1584#issuecomment-2939756529 1678 + # https://github.com/commercialhaskell/stackage/issues/7768 1679 + persistent-test_2_13_1_4 = dontDistribute super.persistent-test; 1680 + persistent-test = doDistribute self.persistent-test_2_13_1_3; 1681 + 1591 1682 # Needs matching lsp-types 1592 1683 # Allow lens >= 5.3 1593 1684 lsp_2_4_0_0 = doDistribute ( ··· 1622 1713 unmarkBroken 1623 1714 ]; 1624 1715 1625 - # Tests disabled because they assume to run in the whole jsaddle repo and not the hackage tarball of jsaddle-warp. 1626 - jsaddle-warp = 1627 - appendPatch 1628 - # https://github.com/ghcjs/jsaddle/pull/158 1629 - (fetchpatch { 1630 - url = "https://github.com/ghcjs/jsaddle/commit/3a5648dd2e326c589170b58af711c72ab2a10a84.patch"; 1631 - relative = "jsaddle-warp"; 1632 - sha256 = "sha256-Eqm/oFRvQsAWtmd/Q1m25lOlcYB+j4bJ27t43CzZpHo="; 1633 - }) 1634 - (dontCheck super.jsaddle-warp); 1635 - 1636 1716 # https://github.com/ghcjs/jsaddle/issues/151 1637 1717 jsaddle-webkit2gtk = 1638 1718 overrideCabal ··· 1727 1807 }) 1728 1808 ] (doJailbreak super.Spock-core); 1729 1809 1730 - # https://github.com/strake/filtrable.hs/issues/6 1731 - filtrable = doJailbreak super.filtrable; 1732 - 1733 1810 hcoord = overrideCabal (drv: { 1734 1811 # Remove when https://github.com/danfran/hcoord/pull/8 is merged. 1735 1812 patches = [ ··· 1810 1887 semver-range = dontCheck super.semver-range; 1811 1888 1812 1889 # 2024-03-02: vty <5.39 - https://github.com/reflex-frp/reflex-ghci/pull/33 1813 - reflex-ghci = 1814 - assert super.reflex-ghci.version == "0.2.0.1"; 1815 - doJailbreak super.reflex-ghci; 1890 + reflex-ghci = warnAfterVersion "0.2.0.1" (doJailbreak super.reflex-ghci); 1816 1891 1817 1892 # 2024-09-18: transformers <0.5 https://github.com/reflex-frp/reflex-gloss/issues/6 1818 - reflex-gloss = 1819 - assert super.reflex-gloss.version == "0.2"; 1820 - doJailbreak super.reflex-gloss; 1893 + reflex-gloss = warnAfterVersion "0.2" (doJailbreak super.reflex-gloss); 1821 1894 1822 1895 # 2024-09-18: primitive <0.8 https://gitlab.com/Kritzefitz/reflex-gi-gtk/-/merge_requests/20 1823 - reflex-gi-gtk = 1824 - assert super.reflex-gi-gtk.version == "0.2.0.1"; 1825 - doJailbreak super.reflex-gi-gtk; 1896 + reflex-gi-gtk = warnAfterVersion "0.2.0.1" (doJailbreak super.reflex-gi-gtk); 1826 1897 1827 1898 # Due to tests restricting base in 0.8.0.0 release 1828 1899 http-media = doJailbreak super.http-media; ··· 1978 2049 # https://github.com/mpickering/hs-speedscope/issues/16 1979 2050 hs-speedscope = doJailbreak super.hs-speedscope; 1980 2051 2052 + # Missing test files in sdist tarball: 2053 + # https://gitlab.com/dpwiz/geomancy-layout/-/issues/1 2054 + geomancy-layout = dontCheck super.geomancy-layout; 2055 + 1981 2056 # 2025-02-11: Too strict bounds on base < 4.19, bytestring < 0.12, tasty < 1.5, tasty-quickcheck < 0.11 1982 2057 blake2 = doJailbreak super.blake2; 1983 2058 ··· 2102 2177 2103 2178 # 2024-09-18: Make compatible with haskell-gi 0.26.10 2104 2179 # https://github.com/owickstrom/gi-gtk-declarative/pull/118 2105 - gi-gtk-declarative = overrideCabal ( 2106 - drv: 2107 - assert drv.version == "0.7.1"; 2108 - { 2180 + gi-gtk-declarative = warnAfterVersion "0.7.1" ( 2181 + overrideCabal (drv: { 2109 2182 jailbreak = true; 2110 2183 postPatch = '' 2111 2184 sed -i '1 i {-# LANGUAGE FlexibleContexts #-}' \ 2112 2185 src/GI/Gtk/Declarative/Widget/Conversions.hs 2113 2186 ''; 2114 - } 2115 - ) super.gi-gtk-declarative; 2187 + }) super.gi-gtk-declarative 2188 + ); 2116 2189 gi-gtk-declarative-app-simple = doJailbreak super.gi-gtk-declarative-app-simple; 2117 2190 2118 2191 # FIXME: These should be removed as gi-gtk4/gi-gdk4 become the standard 2119 2192 gi-gtk_4 = self.gi-gtk_4_0_12; 2120 2193 gi-gdk_4 = self.gi-gdk_4_0_10; 2121 2194 2122 - # Missing dependency on gi-gdkpixbuf 2123 - # https://github.com/haskell-gi/haskell-gi/commit/889f478456b38425eca7df42b01f85fae626f113 2124 - # Fixed in 2.91.35 2125 - gi-vte = overrideCabal ( 2126 - oldAttrs: 2127 - assert lib.versionOlder oldAttrs.version "2.91.35"; 2128 - { 2129 - # This is implemented as a sed expression instead of pulling a patch 2130 - # from upstream because the gi-vte repo doesn't actually contain a 2131 - # gi-vte.cabal file. The gi-vte.cabal file is generated from metadata in 2132 - # the repo. 2133 - postPatch = 2134 - (oldAttrs.postPatch or "") 2135 - + '' 2136 - sed -i 's/\(gi-gtk == .*\),/\1, gi-gdkpixbuf == 2.0.*,/' ./gi-vte.cabal 2137 - ''; 2138 - buildDepends = (oldAttrs.buildDepends or [ ]) ++ [ self.gi-gdkpixbuf ]; 2139 - } 2140 - ) super.gi-vte; 2141 - 2142 2195 # 2023-04-09: haskell-ci needs Cabal-syntax 3.10 2143 2196 # 2024-03-21: pins specific version of ShellCheck 2144 2197 # 2025-03-10: jailbreak, https://github.com/haskell-CI/haskell-ci/issues/771 ··· 2199 2252 testFlags = [ "-j1" ]; 2200 2253 } super.libarchive; 2201 2254 2202 - # 2025-02-11: Too strict bounds on doclayout < 0.5 2203 - table-layout = doJailbreak super.table-layout; 2204 - 2205 2255 # https://github.com/plow-technologies/hspec-golden-aeson/issues/17 2206 2256 hspec-golden-aeson = dontCheck super.hspec-golden-aeson; 2207 2257 ··· 2242 2292 # https://github.com/kapralVV/Unique/issues/9 2243 2293 # Too strict bounds on hashable 2244 2294 # https://github.com/kapralVV/Unique/pull/10 2245 - Unique = 2246 - assert super.Unique.version == "0.4.7.9"; 2295 + Unique = warnAfterVersion "0.4.7.9" ( 2247 2296 overrideCabal (drv: { 2248 2297 testFlags = [ 2249 2298 "--skip" ··· 2253 2302 "--skip" 2254 2303 "/Data.List.UniqueUnsorted.repeatedBy,repeated,unique/repeatedBy: simple test/" 2255 2304 ] ++ drv.testFlags or [ ]; 2256 - }) super.Unique; 2305 + }) super.Unique 2306 + ); 2257 2307 2258 2308 # https://github.com/AndrewRademacher/aeson-casing/issues/8 2259 - aeson-casing = 2260 - assert super.aeson-casing.version == "0.2.0.0"; 2309 + aeson-casing = warnAfterVersion "0.2.0.0" ( 2261 2310 overrideCabal (drv: { 2262 2311 testFlags = [ 2263 2312 "-p" 2264 2313 "! /encode train/" 2265 2314 ] ++ drv.testFlags or [ ]; 2266 - }) super.aeson-casing; 2315 + }) super.aeson-casing 2316 + ); 2267 2317 2268 2318 # https://github.com/emc2/HUnit-Plus/issues/26 2269 2319 HUnit-Plus = dontCheck super.HUnit-Plus; ··· 2379 2429 2380 2430 # 2025-02-11: Too strict bounds on hedgehog < 1.5, hspec-hedgehog < 0.2 2381 2431 validation-selective = doJailbreak super.validation-selective; 2382 - 2383 - # 2025-02-11: strict upper bounds on base < 4.18 2384 - shower = doJailbreak super.shower; 2385 2432 2386 2433 # Test suite isn't supposed to succeed yet, apparently… 2387 2434 # https://github.com/andrewufrank/uniform-error/blob/f40629ad119e90f8dae85e65e93d7eb149bddd53/test/Uniform/Error_test.hs#L124 ··· 2549 2596 ''; 2550 2597 }) super.hermes-json; 2551 2598 2599 + # hexstring is not compatible with newer versions of base16-bytestring 2600 + # See https://github.com/solatis/haskell-hexstring/issues/3 2601 + hexstring = overrideCabal (old: { 2602 + # Prevent DOS line endings from Hackage from breaking a patch 2603 + prePatch = 2604 + old.prePatch or "" 2605 + + '' 2606 + ${pkgs.buildPackages.dos2unix}/bin/dos2unix src/Data/HexString.hs 2607 + ''; 2608 + patches = old.patches or [ ] ++ [ 2609 + (pkgs.fetchpatch { 2610 + name = "fix-base16-bytestring-compat"; 2611 + url = "https://github.com/solatis/haskell-hexstring/commit/4f0a27c64ecb4a767eeea2efebebfd7edba18de0.patch"; 2612 + hash = "sha256-DHT566Ov1D++1VNjUor9xSeOsuSi2LPiIAGT55gqr8s="; 2613 + }) 2614 + ]; 2615 + }) super.hexstring; 2616 + 2552 2617 # Disabling doctests. 2553 2618 regex-tdfa = overrideCabal { 2554 2619 testTargets = [ "regex-tdfa-unittest" ]; ··· 2722 2787 2723 2788 # 2024-03-02: Apply unreleased changes necessary for compatibility 2724 2789 # with commonmark-extensions-0.2.5.3. 2725 - commonmark-simple = 2726 - assert super.commonmark-simple.version == "0.1.0.0"; 2790 + commonmark-simple = warnAfterVersion "0.1.0.0" ( 2727 2791 appendPatches (map 2728 2792 ( 2729 2793 { rev, hash }: ··· 2744 2808 hash = "sha256-9cpgRNFWhpSuSttAvnwPiLmi1sIoDSYbp0sMwcKWgDQ="; 2745 2809 } 2746 2810 ] 2747 - ) (doJailbreak super.commonmark-simple); 2811 + ) (doJailbreak super.commonmark-simple) 2812 + ); 2748 2813 2749 2814 # Test files missing from sdist 2750 2815 # https://github.com/tweag/webauthn/issues/166 ··· 2755 2820 tasty-autocollect = dontCheck super.tasty-autocollect; 2756 2821 2757 2822 postgres-websockets = lib.pipe super.postgres-websockets [ 2758 - (appendPatches [ 2759 - (pkgs.fetchpatch { 2760 - # Needed for the patch below to apply. 2761 - name = "remove-protolude.patch"; 2762 - url = "https://github.com/diogob/postgres-websockets/commit/8027c0f6dc0c5fe6bab4e3e7730db8653b2c51cc.patch"; 2763 - hash = "sha256-gefVUR+tJLrmpwnc1hf4GjLbGVe1GwNmLn5YU7qW/HY="; 2764 - }) 2765 - (pkgs.fetchpatch { 2766 - # Can be removed with the next update. 2767 - name = "fix-connection-closing-when-no-write-mode-is-present.patch"; 2768 - url = "https://github.com/diogob/postgres-websockets/commit/577a2f0bf4750c682c2c3c63e37d90e0ec6f95eb.patch"; 2769 - hash = "sha256-7PCVbfNiJhWfmQrEjaVqbmCL5jffhofOto1RF2FVYJo="; 2770 - }) 2771 - ]) 2772 2823 (addTestToolDepends [ 2773 2824 pkgs.postgresql 2774 2825 pkgs.postgresqlTestHook ··· 2813 2864 doJailbreak 2814 2865 # 2022-12-02: Hackage release lags behind actual releases: https://github.com/PostgREST/postgrest/issues/2275 2815 2866 (overrideSrc rec { 2816 - version = "13.0.0"; 2867 + version = "13.0.4"; 2817 2868 src = pkgs.fetchFromGitHub { 2818 2869 owner = "PostgREST"; 2819 2870 repo = "postgrest"; 2820 2871 rev = "v${version}"; 2821 - hash = "sha256-j+WlY7D3hkPHIjiyCFenC5trF31L05gEPptCwOVil6U="; 2872 + hash = "sha256-Y9Nxfs2w3Iinx61Om7dd+R8TTsK12oWD+3vki3WUz9Y="; 2822 2873 }; 2823 2874 }) 2824 2875 ]; ··· 2869 2920 2870 2921 # Too strict bounds on base 2871 2922 kewar = doJailbreak super.kewar; 2872 - 2873 - # Too strict bounds on aeson and text 2874 - # https://github.com/finn-no/unleash-client-haskell/issues/14 2875 - unleash-client-haskell = doJailbreak super.unleash-client-haskell; 2876 2923 2877 2924 # Tests rely on (missing) submodule 2878 2925 unleash-client-haskell-core = dontCheck super.unleash-client-haskell-core; ··· 2972 3019 doJailbreak 2973 3020 ]; 2974 3021 2975 - # 2024-08-09: Apply optparse-applicative compat fix from master branch 2976 - # https://github.com/NorfairKing/feedback/commit/9368468934a4d8bd94709bdcb1116210b162bab8 2977 - feedback = overrideCabal ( 2978 - drv: 2979 - assert drv.version == "0.1.0.5"; 2980 - { 2981 - postPatch = 2982 - drv.postPatch or "" 2983 - + '' 2984 - substituteInPlace src/Feedback/Loop/OptParse.hs \ 2985 - --replace-fail '(uncurry loopConfigLine)' '(pure . uncurry loopConfigLine)' 2986 - ''; 2987 - } 2988 - ) super.feedback; 2989 - 2990 - testcontainers = lib.pipe super.testcontainers [ 2991 - dontCheck # Tests require docker 2992 - doJailbreak # https://github.com/testcontainers/testcontainers-hs/pull/58 2993 - ]; 3022 + # Tests require docker 3023 + testcontainers = dontCheck super.testcontainers; 2994 3024 2995 3025 # https://bitbucket.org/echo_rm/hailgun/pull-requests/27 2996 3026 hailgun = appendPatches [ ··· 3030 3060 http-client-tls = doJailbreak super.http-client-tls; 3031 3061 3032 3062 bsb-http-chunked = lib.pipe super.bsb-http-chunked [ 3033 - (lib.warnIf (lib.versionOlder "0.0.0.4" super.bsb-http-chunked.version) "override for haskellPackages.bsb-http-chunked may no longer be needed") 3063 + (warnAfterVersion "0.0.0.4") 3034 3064 # Last released in 2018 3035 3065 # https://github.com/sjakobi/bsb-http-chunked/issues/38 3036 3066 # https://github.com/sjakobi/bsb-http-chunked/issues/45 ··· 3047 3077 url = "https://github.com/sjakobi/bsb-http-chunked/commit/689bf9ce12b8301d0e13a68e4a515c2779b62947.patch"; 3048 3078 sha256 = "sha256-ZdCXMhni+RGisRODiElObW5c4hKy2giWQmWnatqeRJo="; 3049 3079 })) 3050 - 3051 - # blaze-builder's code is missing the following fix, causing it to produce 3052 - # incorrect chunking on 32 bit platforms: 3053 - # https://github.com/sjakobi/bsb-http-chunked/commit/dde7c9fa33bb6e55b44c5f3e3024215475f64d4c 3054 - (overrideCabal (drv: { 3055 - testFlags = 3056 - drv.testFlags or [ ] 3057 - ++ lib.optionals pkgs.stdenv.hostPlatform.is32bit [ 3058 - "-p" 3059 - "!/Identical output as Blaze/" 3060 - ]; 3061 - })) 3062 3080 ]; 3063 3081 3064 3082 # jailbreak to allow deepseq >= 1.5, https://github.com/jumper149/blucontrol/issues/3 ··· 3069 3087 commonmark-pandoc = doDistribute self.commonmark-pandoc_0_2_2_3; 3070 3088 3071 3089 pandoc = lib.pipe super.pandoc [ 3090 + dontCheck # test errors in "jats-writer" possibly fixed in newer release 3072 3091 # Test output changes with newer version of texmath 3073 3092 (appendPatch (fetchpatch { 3093 + name = "jats:update-for-texmath"; 3074 3094 url = "https://github.com/jgm/pandoc/commit/e2a0cc9ddaf9e7d35cbd3c76f37e39737a79c2bf.patch"; 3075 3095 sha256 = "sha256-qA9mfYS/VhWwYbB9yu7wbHwozz3cqequ361PxkbAt08="; 3076 3096 includes = [ "test/*" ]; 3077 3097 })) 3078 3098 (appendPatch (fetchpatch { 3099 + name = "jats:update-for-mathml"; 3079 3100 url = "https://github.com/jgm/pandoc/commit/4ba0bac5c118da4da1d44e3bbb38d7c7aef19e3b.patch"; 3080 3101 sha256 = "sha256-ayRKeCqYKgZVA826xgAXxGhttm0Gx4ZrIRJlFlXPKhw="; 3081 3102 })) 3103 + (appendPatch (fetchpatch { 3104 + name = "jats:use-texmath-0.12.10.1"; 3105 + url = "https://github.com/jgm/pandoc/commit/d3d5366e5197330e035f9f1700929c9b5a24d532.patch"; 3106 + sha256 = "sha256-skG7LbKl4ypVnEYA9xMtDbUmHrjuXWfuchV8iMn8Yy0="; 3107 + includes = [ "test/*" ]; 3108 + })) 3082 3109 ]; 3083 3110 3084 3111 HList = lib.pipe super.HList [ ··· 3091 3118 ]; 3092 3119 3093 3120 # 2025-04-09: jailbreak to allow hedgehog >= 1.5 3094 - hw-int = 3095 - assert super.hw-int.version == "0.0.2.0"; 3096 - doJailbreak super.hw-int; 3121 + hw-int = warnAfterVersion "0.0.2.0" (doJailbreak super.hw-int); 3097 3122 3098 3123 # 2025-04-09: jailbreak to allow tasty-quickcheck >= 0.11 3099 - chimera = 3100 - assert super.chimera.version == "0.4.1.0"; 3101 - doJailbreak super.chimera; 3124 + chimera = warnAfterVersion "0.4.1.0" (doJailbreak super.chimera); 3102 3125 3103 3126 # 2025-04-09: jailbreak to allow tasty-quickcheck >= 0.11 3104 - bzlib = 3105 - assert super.bzlib.version == "0.5.2.0"; 3106 - doJailbreak super.bzlib; 3127 + bzlib = warnAfterVersion "0.5.2.0" (doJailbreak super.bzlib); 3107 3128 3108 3129 inherit 3109 3130 (lib.mapAttrs ( ··· 3133 3154 ]; 3134 3155 3135 3156 # 2025-04-09: jailbreak to allow mtl >= 2.3, template-haskell >= 2.17, text >= 1.3 3136 - egison-pattern-src-th-mode = 3137 - assert super.egison-pattern-src-th-mode.version == "0.2.1.2"; 3138 - doJailbreak super.egison-pattern-src-th-mode; 3157 + egison-pattern-src-th-mode = warnAfterVersion "0.2.1.2" ( 3158 + doJailbreak super.egison-pattern-src-th-mode 3159 + ); 3139 3160 3140 3161 # 2025-04-09: jailbreak to allow base >= 4.17, hasql >= 1.6, hasql-transaction-io >= 0.2 3141 - hasql-streams-core = 3142 - assert super.hasql-streams-core.version == "0.1.0.0"; 3143 - doJailbreak super.hasql-streams-core; 3162 + hasql-streams-core = warnAfterVersion "0.1.0.0" (doJailbreak super.hasql-streams-core); 3144 3163 3145 3164 # 2025-04-09: jailbreak to allow bytestring >= 0.12, text >= 2.1 3146 - pipes-text = 3147 - assert super.pipes-text.version == "1.0.1"; 3148 - doJailbreak super.pipes-text; 3165 + pipes-text = warnAfterVersion "1.0.1" (doJailbreak super.pipes-text); 3149 3166 3150 3167 # 2025-04-09: jailbreak to allow bytestring >= 0.12 3151 - array-builder = 3152 - assert super.array-builder.version == "0.1.4.1"; 3153 - doJailbreak super.array-builder; 3168 + array-builder = warnAfterVersion "0.1.4.1" (doJailbreak super.array-builder); 3154 3169 3155 3170 # 2025-04-09: missing dependency - somehow it's not listed on hackage 3156 3171 broadcast-chan = addExtraLibrary self.conduit super.broadcast-chan; 3157 3172 3158 3173 # 2025-04-09: jailbreak to allow template-haskell >= 2.21, th-abstraction >= 0.7 3159 - kind-generics-th = 3160 - assert super.kind-generics-th.version == "0.2.3.3"; 3161 - doJailbreak super.kind-generics-th; 3174 + kind-generics-th = warnAfterVersion "0.2.3.3" (doJailbreak super.kind-generics-th); 3162 3175 3163 3176 # 2025-04-09: jailbreak to allow tasty >= 1.5 3164 - cvss = 3165 - assert super.cvss.version == "0.1"; 3166 - doJailbreak super.cvss; 3177 + cvss = warnAfterVersion "0.1" (doJailbreak super.cvss); 3167 3178 3168 3179 # 2025-04-09: jailbreak to allow aeson >= 2.2, base >= 4.19, text >= 2.1 3169 - ebird-api = 3170 - assert super.ebird-api.version == "0.2.0.0"; 3171 - doJailbreak super.ebird-api; 3180 + ebird-api = warnAfterVersion "0.2.0.0" (doJailbreak super.ebird-api); 3172 3181 3173 3182 # 2025-04-13: jailbreak to allow bytestring >= 0.12 3174 - strings = 3175 - assert super.strings.version == "1.1"; 3176 - doJailbreak super.strings; 3183 + strings = warnAfterVersion "1.1" (doJailbreak super.strings); 3177 3184 3178 3185 # 2025-04-13: jailbreak to allow bytestring >= 0.12 3179 - twain = 3180 - assert super.twain.version == "2.2.0.1"; 3181 - doJailbreak super.twain; 3186 + twain = warnAfterVersion "2.2.0.1" (doJailbreak super.twain); 3182 3187 3183 3188 # 2025-04-13: jailbreak to allow hedgehog >= 1.5 3184 - hw-bits = 3185 - assert super.hw-bits.version == "0.7.2.2"; 3186 - doJailbreak super.hw-bits; 3189 + hw-bits = warnAfterVersion "0.7.2.2" (doJailbreak super.hw-bits); 3187 3190 3188 3191 # 2025-04-23: jailbreak to allow bytestring >= 0.12 3189 - brillo-rendering = lib.warnIf ( 3190 - super.brillo-rendering.version != "1.13.3" 3191 - ) "haskellPackages.brillo-rendering override can be dropped" doJailbreak super.brillo-rendering; 3192 - brillo-examples = lib.warnIf ( 3193 - super.brillo-examples.version != "1.13.3" 3194 - ) "haskellPackages.brillo-examples override can be dropped" doJailbreak super.brillo-examples; 3195 - brillo-juicy = lib.warnIf ( 3196 - super.brillo-juicy.version != "0.2.4" 3197 - ) "haskellPackages.brillo-juicy override can be dropped" doJailbreak super.brillo-juicy; 3198 - brillo = lib.warnIf ( 3199 - super.brillo.version != "1.13.3" 3200 - ) "haskellPackages.brillo override can be dropped" doJailbreak super.brillo; 3192 + brillo-rendering = warnAfterVersion "1.13.3" (doJailbreak super.brillo-rendering); 3193 + brillo-examples = warnAfterVersion "1.13.3" (doJailbreak super.brillo-examples); 3194 + brillo-juicy = warnAfterVersion "0.2.4" (doJailbreak super.brillo-juicy); 3195 + brillo = warnAfterVersion "1.13.3" (doJailbreak super.brillo); 3201 3196 3202 3197 # 2025-04-13: jailbreak to allow th-abstraction >= 0.7 3203 - crucible = 3204 - assert super.crucible.version == "0.7.2"; 3198 + crucible = warnAfterVersion "0.7.2" ( 3205 3199 doJailbreak ( 3206 3200 super.crucible.override { 3207 3201 what4 = self.what4_1_7; 3208 3202 } 3209 - ); 3203 + ) 3204 + ); 3210 3205 3211 3206 crucible-llvm = super.crucible-llvm.override { 3212 3207 what4 = self.what4_1_7; ··· 3260 3255 finitary = dontCheck super.finitary; 3261 3256 3262 3257 # 2025-04-13: jailbreak to allow bytestring >= 0.12, text >= 2.1 3263 - ktx-codec = 3264 - assert super.ktx-codec.version == "0.0.2.1"; 3265 - doJailbreak super.ktx-codec; 3266 - 3267 - # 2025-04-23: jailbreak to allow text >= 2.1 3268 - # https://github.com/wereHamster/haskell-css-syntax/issues/8 3269 - css-syntax = doJailbreak super.css-syntax; 3258 + ktx-codec = warnAfterVersion "0.0.2.1" (doJailbreak super.ktx-codec); 3270 3259 3271 3260 # 2025-04-13: jailbreak to allow template-haskell >= 2.17 3272 - sr-extra = overrideCabal (drv: { 3273 - version = 3274 - assert super.sr-extra.version == "1.88"; 3275 - "1.88-unstable-2025-03-30"; 3276 - # includes https://github.com/seereason/sr-extra/pull/7 3277 - src = pkgs.fetchFromGitHub { 3278 - owner = "seereason"; 3279 - repo = "sr-extra"; 3280 - rev = "2b18ced8d07aa8832168971842b20ea49369e4f0"; 3281 - hash = "sha256-jInfHA1xkLjx5PfsgQVzeQIN3OjTUpEz7dpVNOGNo3g="; 3282 - }; 3283 - editedCabalFile = null; 3284 - revision = null; 3285 - }) super.sr-extra; 3261 + sr-extra = warnAfterVersion "1.88" ( 3262 + overrideCabal (drv: { 3263 + version = "1.88-unstable-2025-03-30"; 3264 + # includes https://github.com/seereason/sr-extra/pull/7 3265 + src = pkgs.fetchFromGitHub { 3266 + owner = "seereason"; 3267 + repo = "sr-extra"; 3268 + rev = "2b18ced8d07aa8832168971842b20ea49369e4f0"; 3269 + hash = "sha256-jInfHA1xkLjx5PfsgQVzeQIN3OjTUpEz7dpVNOGNo3g="; 3270 + }; 3271 + editedCabalFile = null; 3272 + revision = null; 3273 + }) super.sr-extra 3274 + ); 3286 3275 3287 3276 # Too strict bounds on base <4.19 and tasty <1.5 3288 3277 # https://github.com/maoe/ghc-prof/issues/25 ··· 3299 3288 3300 3289 # 2025-5-15: Too strict bounds on base <4.19, see: https://github.com/zachjs/sv2v/issues/317 3301 3290 sv2v = doJailbreak super.sv2v; 3291 + 3292 + # 2025-06-25: Upper bounds of transformers and bytestring too strict, 3293 + # as haskore 0.2.0.8 was released in 2016 and is quite outdated. 3294 + # Tests fail with: 3295 + # ### Error in: 11:comparison with MIDI files generated by former Haskore versions:23:Ssf:1 3296 + # src/Test/MIDI/Ssf.mid: openBinaryFile: does not exist (No such file or directory) 3297 + # Necessary files aren't listed in extra-source-files in the cabal file 3298 + # and therefore aren't uploaded to hackage 3299 + # Needs to be fixed upstream 3300 + haskore = dontCheck (doJailbreak super.haskore); 3302 3301 } 3303 3302 // import ./configuration-tensorflow.nix { inherit pkgs haskellLib; } self super 3304 3303 3305 - # Gogol Packages 3306 - # 2024-12-27: use latest source files from github, as the hackage release is outdated 3307 - // ( 3308 - let 3309 - gogolSrc = pkgs.fetchFromGitHub { 3310 - owner = "brendanhay"; 3311 - repo = "gogol"; 3312 - rev = "a9d50bbd73d2cb9675bd9bff0f50fcd108f95608"; 3313 - sha256 = "sha256-8ilQe/Z5MLFIDY8T68azFpYW5KkSyhy3c6pgWtsje9w="; 3314 - }; 3315 - setGogolSourceRoot = 3316 - dir: drv: 3317 - (overrideCabal (drv: { src = gogolSrc; }) drv).overrideAttrs (_oldAttrs: { 3318 - sourceRoot = "${gogolSrc.name}/${dir}"; 3319 - }); 3320 - isGogolService = name: lib.hasPrefix "gogol-" name && name != "gogol-core"; 3321 - gogolServices = lib.filter isGogolService (lib.attrNames super); 3322 - gogolServiceOverrides = ( 3323 - lib.genAttrs gogolServices (name: setGogolSourceRoot "lib/services/${name}" super.${name}) 3324 - ); 3325 - in 3326 - { 3327 - gogol-core = 3328 - assert super.gogol-core.version == "0.5.0"; 3329 - lib.pipe super.gogol-core [ 3330 - (setGogolSourceRoot "lib/gogol-core") 3331 - (addBuildDepend self.base64) 3332 - (overrideCabal (drv: { 3333 - editedCabalFile = null; 3334 - revision = null; 3335 - })) 3336 - ]; 3337 - gogol = 3338 - assert super.gogol.version == "0.5.0"; 3339 - setGogolSourceRoot "lib/gogol" super.gogol; 3340 - } 3341 - // gogolServiceOverrides 3342 - ) 3343 - 3344 3304 # Amazonka Packages 3345 3305 # 2025-01-24: use latest source files from github, as the hackage release is outdated, https://github.com/brendanhay/amazonka/issues/1001 3346 3306 // ( ··· 3358 3318 src = amazonkaSrc + "/${dir}"; 3359 3319 }) 3360 3320 drv; 3361 - isAmazonkaService = name: lib.hasPrefix "amazonka-" name && name != "amazonka-test"; 3321 + isAmazonkaService = 3322 + name: lib.hasPrefix "amazonka-" name && name != "amazonka-test" && name != "amazonka-s3-streaming"; 3362 3323 amazonkaServices = lib.filter isAmazonkaService (lib.attrNames super); 3363 3324 amazonkaServiceOverrides = ( 3364 3325 lib.genAttrs amazonkaServices ( ··· 3372 3333 in 3373 3334 amazonkaServiceOverrides 3374 3335 // { 3375 - amazonka-core = 3376 - assert super.amazonka-core.version == "2.0"; 3377 - lib.pipe super.amazonka-core [ 3378 - (setAmazonkaSourceRoot "lib/amazonka-core") 3379 - (addBuildDepends [ 3380 - self.microlens 3381 - self.microlens-contra 3382 - self.microlens-pro 3383 - ]) 3384 - ]; 3385 - amazonka = 3386 - assert super.amazonka.version == "2.0"; 3387 - setAmazonkaSourceRoot "lib/amazonka" (doJailbreak super.amazonka); 3336 + amazonka-core = lib.pipe super.amazonka-core [ 3337 + (warnAfterVersion "2.0") 3338 + (setAmazonkaSourceRoot "lib/amazonka-core") 3339 + (addBuildDepends [ 3340 + self.microlens 3341 + self.microlens-contra 3342 + self.microlens-pro 3343 + ]) 3344 + ]; 3345 + amazonka = warnAfterVersion "2.0" ( 3346 + setAmazonkaSourceRoot "lib/amazonka" (doJailbreak super.amazonka) 3347 + ); 3388 3348 } 3389 3349 )
-3
pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
··· 157 157 } 158 158 ); 159 159 160 - # Restrictive upper bound on base and containers 161 - sv2v = doJailbreak super.sv2v; 162 - 163 160 # Later versions only support GHC >= 9.2 164 161 ghc-exactprint = self.ghc-exactprint_0_6_4; 165 162
+19 -24
pkgs/development/haskell-modules/configuration-ghc-9.10.x.nix
··· 1 1 { pkgs, haskellLib }: 2 2 3 + self: super: 4 + 3 5 with haskellLib; 4 6 5 7 let 6 8 inherit (pkgs) lib; 7 9 10 + warnAfterVersion = 11 + ver: pkg: 12 + lib.warnIf (lib.versionOlder ver 13 + super.${pkg.pname}.version 14 + ) "override for haskell.packages.ghc910.${pkg.pname} may no longer be needed" pkg; 15 + 8 16 in 9 17 10 - self: super: { 18 + { 11 19 llvmPackages = lib.dontRecurseIntoAttrs self.ghc.llvmPackages; 12 20 13 21 # Disable GHC core libraries ··· 68 76 extensions = doJailbreak (doDistribute self.extensions_0_1_0_2); 69 77 fourmolu = doDistribute self.fourmolu_0_16_0_0; 70 78 # https://github.com/digital-asset/ghc-lib/issues/600 71 - ghc-lib = doDistribute (doJailbreak self.ghc-lib_9_10_2_20250503); 72 - ghc-lib-parser = doDistribute (doJailbreak self.ghc-lib-parser_9_10_2_20250503); 79 + ghc-lib = doDistribute self.ghc-lib_9_10_2_20250515; 80 + ghc-lib-parser = doDistribute self.ghc-lib-parser_9_10_2_20250515; 73 81 ghc-lib-parser-ex = doDistribute self.ghc-lib-parser-ex_9_10_0_0; 74 82 htree = doDistribute self.htree_0_2_0_0; 75 83 ormolu = doDistribute self.ormolu_0_7_7_0; 84 + stylish-haskell = doDistribute self.stylish-haskell_0_15_0_1; 76 85 77 86 # A given major version of ghc-exactprint only supports one version of GHC. 78 87 ghc-exactprint = doDistribute self.ghc-exactprint_1_9_0_0; ··· 88 97 # 89 98 # Jailbreaks 90 99 # 91 - base64 = doJailbreak super.base64; # base <4.20 92 100 # 2025-04-09: base <4.20, containers <0.7, filepath <1.5, Cabal-syntax <3.11 93 101 cabal-install-parsers = 94 102 assert super.cabal-install-parsers.version == "0.6.1.1"; ··· 98 106 haddock-library = 99 107 assert super.haddock-library.version == "1.11.0"; 100 108 doJailbreak super.haddock-library; 101 - spdx = doJailbreak super.spdx; # Cabal-syntax < 3.13 102 - tasty-coverage = doJailbreak super.tasty-coverage; # base <4.20, filepath <1.5 103 - tree-diff = doJailbreak super.tree-diff; # base <4.20 109 + large-generics = doJailbreak super.large-generics; # base <4.20 104 110 tree-sitter = doJailbreak super.tree-sitter; # containers <0.7, filepath <1.5 105 - time-compat = doJailbreak super.time-compat; # base <4.20 106 - # https://github.com/haskell-party/feed/issues/73 107 - feed = doJailbreak super.feed; # base 108 - 109 - bitvec = doJailbreak super.bitvec; # primitive <0.9 110 111 111 112 hashable_1_5_0_0 = doJailbreak super.hashable_1_5_0_0; # relax bounds for QuickCheck, tasty, and tasty-quickcheck 112 113 ··· 118 119 hinotify = pkgs.haskell.lib.dontCheck super.hinotify; # https://github.com/kolmodin/hinotify/issues/38 119 120 monad-dijkstra = dontCheck super.monad-dijkstra; # needs hlint 3.10 120 121 121 - haskell-language-server = disableCabalFlag "retrie" ( 122 - disableCabalFlag "hlint" ( 123 - disableCabalFlag "stylishhaskel" ( 124 - super.haskell-language-server.override { 125 - stylish-haskell = null; 126 - retrie = null; 127 - apply-refact = null; 128 - hlint = null; 129 - } 130 - ) 131 - ) 132 - ); 122 + haskell-language-server = super.haskell-language-server.override { 123 + floskell = null; 124 + retrie = null; 125 + hlint = null; 126 + apply-refact = null; 127 + }; 133 128 134 129 }
+13 -40
pkgs/development/haskell-modules/configuration-ghc-9.12.x.nix
··· 5 5 let 6 6 inherit (pkgs) lib; 7 7 8 - versionAtMost = a: b: lib.versionAtLeast b a; 9 - 10 - warnVersion = 11 - predicate: ver: pkg: 12 - let 13 - pname = pkg.pname; 14 - in 15 - lib.warnIf (predicate ver 16 - super.${pname}.version 17 - ) "override for haskell.packages.ghc912.${pname} may no longer be needed" pkg; 18 - 19 - warnAfterVersion = warnVersion lib.versionOlder; 20 - warnFromVersion = warnVersion versionAtMost; 8 + warnAfterVersion = 9 + ver: pkg: 10 + lib.warnIf (lib.versionOlder ver 11 + super.${pkg.pname}.version 12 + ) "override for haskell.packages.ghc912.${pkg.pname} may no longer be needed" pkg; 21 13 22 14 in 23 15 ··· 93 85 ghc-lib-parser = doDistribute self.ghc-lib-parser_9_12_2_20250421; 94 86 ghc-lib-parser-ex = doDistribute self.ghc-lib-parser-ex_9_12_0_0; 95 87 hlint = doDistribute self.hlint_3_10; 96 - fourmolu = doDistribute self.fourmolu_0_18_0_0; 88 + # fourmolu checks require Diff > 1.0, which is not yet supported by various other deps of hls. 89 + fourmolu = doDistribute (dontCheck self.fourmolu_0_18_0_0); 97 90 ormolu = doDistribute self.ormolu_0_8_0_0; 91 + stylish-haskell = doDistribute self.stylish-haskell_0_15_1_0; 98 92 apply-refact = doDistribute self.apply-refact_0_15_0_0; 99 93 100 94 # 101 95 # Jailbreaks 102 96 # 103 97 104 - lucid = doJailbreak super.lucid; # base <4.21 105 - extensions_0_1_0_3 = doJailbreak super.extensions_0_1_0_3; # hedgehog >=1.0 && <1.5, hspec-hedgehog >=0.0.1 && <0.2 106 - hie-compat = doJailbreak super.hie-compat; # base <4.21 107 - hiedb = doJailbreak super.hiedb; # base >=4.12 && <4.21, ghc >=8.6 && <9.11 108 - ed25519 = doJailbreak super.ed25519; # https://github.com/thoughtpolice/hs-ed25519/issues/39 109 - ghc-trace-events = doJailbreak super.ghc-trace-events; # base <4.21 98 + large-generics = doJailbreak super.large-generics; # base <4.20 110 99 time-compat_1_9_8 = doJailbreak super.time-compat_1_9_8; # too strict lower bound on QuickCheck 111 100 cpphs = overrideCabal (drv: { 112 101 # jail break manually the conditional dependencies ··· 115 104 ''; 116 105 }) super.cpphs; 117 106 vector = doJailbreak super.vector; # doctest >=0.15 && <0.24 118 - binary-instances = doJailbreak super.binary-instances; # base >=4.6.0.1 && <4.21, tagged >=0.8.8 && <0.8.9 119 107 cabal-install-parsers = doJailbreak super.cabal-install-parsers; # base, Cabal-syntax, etc. 120 - http-api-data = doJailbreak super.http-api-data; # base < 4.21 121 - servant = doJailbreak super.servant; # base < 4.21 122 108 ghc-exactprint_1_12_0_0 = addBuildDepends [ 123 109 # somehow buildDepends was missing 124 110 self.Diff ··· 128 114 self.syb 129 115 self.HUnit 130 116 ] super.ghc-exactprint_1_12_0_0; 131 - co-log-core = doJailbreak super.co-log-core; # doctest >=0.16.0 && <0.24 132 117 133 118 # 134 119 # Test suite issues ··· 172 157 # 173 158 # Multiple issues 174 159 # 175 - 176 - fourmolu_0_18_0_0 = dontCheck ( 177 - super.fourmolu_0_18_0_0.override { 178 - # Diff >=1 && <2 179 - Diff = super.Diff_1_0_2; 180 - } 181 - ); 182 160 183 161 doctest-parallel = overrideCabal (drv: { 184 162 patches = drv.patches or [ ] ++ [ ··· 191 169 ]; 192 170 }) (dontCheck (doJailbreak super.doctest-parallel)); # Cabal >=2.4 && <3.13 193 171 194 - haskell-language-server = disableCabalFlag "retrie" ( 195 - disableCabalFlag "stylishhaskel" ( 196 - super.haskell-language-server.override { 197 - stylish-haskell = null; 198 - floskell = null; 199 - retrie = null; 200 - } 201 - ) 202 - ); 172 + haskell-language-server = super.haskell-language-server.override { 173 + floskell = null; 174 + retrie = null; 175 + }; 203 176 204 177 # Allow Cabal 3.14 205 178 hpack = doDistribute self.hpack_0_38_0;
+7 -11
pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix
··· 2 2 3 3 let 4 4 inherit (pkgs) fetchpatch lib; 5 - checkAgainAfter = 6 - pkg: ver: msg: act: 7 - if builtins.compareVersions pkg.version ver <= 0 then 8 - act 9 - else 10 - builtins.throw "Check if '${msg}' was resolved in ${pkg.pname} ${pkg.version} and update or remove this"; 11 5 in 12 6 13 7 with haskellLib; 14 - self: super: 15 - let 16 - jailbreakForCurrentVersion = p: v: checkAgainAfter p v "bad bounds" (doJailbreak p); 17 - in 18 - { 8 + self: super: { 19 9 llvmPackages = lib.dontRecurseIntoAttrs self.ghc.llvmPackages; 20 10 21 11 # Disable GHC core libraries. ··· 148 138 hlint 149 139 stylish-haskell 150 140 ; 141 + 142 + # directory-ospath-streaming requires the ospath API in core packages 143 + # filepath, directory and unix. 144 + stan = super.stan.override { 145 + directory-ospath-streaming = null; 146 + }; 151 147 152 148 # Packages which need compat library for GHC < 9.6 153 149 inherit (lib.mapAttrs (_: addBuildDepends [ self.foldable1-classes-compat ]) super)
+8 -16
pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix
··· 1 1 { pkgs, haskellLib }: 2 2 3 + self: super: 4 + 3 5 with haskellLib; 4 6 5 7 let 6 8 inherit (pkgs) lib; 7 9 8 - jailbreakWhileRevision = 9 - rev: 10 - overrideCabal (old: { 11 - jailbreak = 12 - assert old.revision or "0" == toString rev; 13 - true; 14 - }); 15 - checkAgainAfter = 16 - pkg: ver: msg: act: 17 - if builtins.compareVersions pkg.version ver <= 0 then 18 - act 19 - else 20 - builtins.throw "Check if '${msg}' was resolved in ${pkg.pname} ${pkg.version} and update or remove this"; 21 - jailbreakForCurrentVersion = p: v: checkAgainAfter p v "bad bounds" (doJailbreak p); 10 + warnAfterVersion = 11 + ver: pkg: 12 + lib.warnIf (lib.versionOlder ver 13 + super.${pkg.pname}.version 14 + ) "override for haskell.packages.ghc96.${pkg.pname} may no longer be needed" pkg; 22 15 23 16 in 24 17 25 - self: super: 26 18 { 27 19 llvmPackages = lib.dontRecurseIntoAttrs self.ghc.llvmPackages; 28 20 ··· 102 94 cabal-install = doJailbreak super.cabal-install; 103 95 104 96 # Forbids base >= 4.18, fix proposed: https://github.com/sjakobi/newtype-generics/pull/25 105 - newtype-generics = jailbreakForCurrentVersion super.newtype-generics "0.6.2"; 97 + newtype-generics = warnAfterVersion "0.6.2" (doJailbreak super.newtype-generics); 106 98 107 99 # Jailbreaks for servant <0.20 108 100 servant-lucid = doJailbreak super.servant-lucid;
+13 -4
pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix
··· 1 1 { pkgs, haskellLib }: 2 2 3 + self: super: 4 + 3 5 with haskellLib; 4 6 5 7 let 6 8 inherit (pkgs.stdenv.hostPlatform) isDarwin; 7 9 inherit (pkgs) lib; 10 + 11 + warnAfterVersion = 12 + ver: pkg: 13 + lib.warnIf (lib.versionOlder ver 14 + super.${pkg.pname}.version 15 + ) "override for haskell.packages.ghc912.${pkg.pname} may no longer be needed" pkg; 16 + 8 17 in 9 18 10 - self: super: { 19 + { 11 20 12 21 llvmPackages = pkgs.lib.dontRecurseIntoAttrs self.ghc.llvmPackages; 13 22 ··· 88 97 89 98 # 2025-04-21: "flavor" for GHC 9.8.5 is missing a fix introduced for 9.8.4. See: 90 99 # https://github.com/digital-asset/ghc-lib/pull/571#discussion_r2052684630 91 - ghc-lib-parser = 92 - assert super.ghc-lib-parser.version == "9.8.5.20250214"; 100 + ghc-lib-parser = warnAfterVersion "9.8.5.20250214" ( 93 101 overrideCabal { 94 102 postPatch = '' 95 103 substituteInPlace compiler/cbits/genSym.c \ 96 104 --replace-fail "HsWord64 u = atomic_inc64" "HsWord64 u = atomic_inc" 97 105 ''; 98 - } super.ghc-lib-parser; 106 + } super.ghc-lib-parser 107 + ); 99 108 }
+20 -25
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 64 64 - adaptive-containers # failure in job https://hydra.nixos.org/build/233243181 at 2023-09-02 65 65 - adaptive-tuple # failure in job https://hydra.nixos.org/build/233244881 at 2023-09-02 66 66 - adb # failure in job https://hydra.nixos.org/build/233193888 at 2023-09-02 67 - - adblock2privoxy # failure in job https://hydra.nixos.org/build/295091236 at 2025-04-22 68 67 - addy # failure in job https://hydra.nixos.org/build/233240594 at 2023-09-02 69 68 - adhoc-fixtures-hspec # failure in job https://hydra.nixos.org/build/252725981 at 2024-03-16 70 69 - adjunction # failure in job https://hydra.nixos.org/build/233237774 at 2023-09-02 ··· 160 159 - amazonka-iam-policy # failure in job https://hydra.nixos.org/build/233233098 at 2023-09-02 161 160 - amazonka-mtl # failure in job https://hydra.nixos.org/build/295091544 at 2025-04-22 162 161 - amazonka-s3-encryption # failure in job https://hydra.nixos.org/build/295091601 at 2025-04-22 163 - - amazonka-s3-streaming # failure in job https://hydra.nixos.org/build/295091587 at 2025-04-22 164 162 - AMI # failure in job https://hydra.nixos.org/build/233232505 at 2023-09-02 165 163 - amqp-conduit # failure in job https://hydra.nixos.org/build/233228080 at 2023-09-02 166 164 - amqp-streamly # failure in job https://hydra.nixos.org/build/295091669 at 2025-04-22 167 165 - amqp-worker # failure in job https://hydra.nixos.org/build/236675859 at 2023-10-04 168 166 - amrun # failure in job https://hydra.nixos.org/build/295091655 at 2025-04-22 169 - - anagrep # failure in job https://hydra.nixos.org/build/295091652 at 2025-04-22 170 167 - analyze # failure in job https://hydra.nixos.org/build/233251441 at 2023-09-02 171 168 - anansi # failure in job https://hydra.nixos.org/build/273451545 at 2024-10-01 172 169 - anansi-pandoc # failure in job https://hydra.nixos.org/build/233252389 at 2023-09-02 ··· 198 195 - antisplice # failure in job https://hydra.nixos.org/build/233238144 at 2023-09-02 199 196 - antlr-haskell # failure in job https://hydra.nixos.org/build/233208196 at 2023-09-02 200 197 - anydbm # failure in job https://hydra.nixos.org/build/233195447 at 2023-09-02 201 - - aoc # failure in job https://hydra.nixos.org/build/295091701 at 2025-04-22 202 198 - Aoide # failure in job https://hydra.nixos.org/build/233239286 at 2023-09-02 203 199 - aop-prelude # failure in job https://hydra.nixos.org/build/295091671 at 2025-04-22 204 200 - aosd # failure in job https://hydra.nixos.org/build/233207331 at 2023-09-02 ··· 436 432 - binary-derive # failure in job https://hydra.nixos.org/build/233201950 at 2023-09-02 437 433 - binary-ext # failure in job https://hydra.nixos.org/build/233247463 at 2023-09-02 438 434 - binary-indexed-tree # failure in job https://hydra.nixos.org/build/233204069 at 2023-09-02 439 - - binary-parsers # failure in job https://hydra.nixos.org/build/233194579 at 2023-09-02 440 435 - binary-protocol # failure in job https://hydra.nixos.org/build/233206098 at 2023-09-02 441 436 - binary-strict # failure in job https://hydra.nixos.org/build/233231473 at 2023-09-02 442 437 - binary-tree # failure in job https://hydra.nixos.org/build/233211047 at 2023-09-02 ··· 529 524 - blubber-server # failure in job https://hydra.nixos.org/build/233199530 at 2023-09-02 530 525 - bludigon # failure in job https://hydra.nixos.org/build/233248190 at 2023-09-02 531 526 - Blueprint # failure in job https://hydra.nixos.org/build/233252987 at 2023-09-02 532 - - bluesky-tools # failure in job https://hydra.nixos.org/build/295092042 at 2025-04-22 533 527 - bluetileutils # failure in job https://hydra.nixos.org/build/233197334 at 2023-09-02 534 528 - blunk-hask-tests # failure in job https://hydra.nixos.org/build/233240288 at 2023-09-02 535 529 - bogocopy # failure in job https://hydra.nixos.org/build/233232322 at 2023-09-02 ··· 654 648 - cabal-install-bundle # failure in job https://hydra.nixos.org/build/233194629 at 2023-09-02 655 649 - cabal-install-ghc72 # failure in job https://hydra.nixos.org/build/233246160 at 2023-09-02 656 650 - cabal-install-ghc74 # failure in job https://hydra.nixos.org/build/233226625 at 2023-09-02 657 - - cabal-lenses # failure in job https://hydra.nixos.org/build/233247565 at 2023-09-02 658 651 - cabal-meta # failure in job https://hydra.nixos.org/build/233194466 at 2023-09-02 659 652 - cabal-mon # failure in job https://hydra.nixos.org/build/233217320 at 2023-09-02 660 653 - cabal-nirvana # failure in job https://hydra.nixos.org/build/233222083 at 2023-09-02 ··· 1259 1252 - definitive-base # failure in job https://hydra.nixos.org/build/233255489 at 2023-09-02 1260 1253 - deiko-config # failure in job https://hydra.nixos.org/build/233210895 at 2023-09-02 1261 1254 - deka # failure in job https://hydra.nixos.org/build/233206540 at 2023-09-02 1262 - - delivery-status-notification # failure in job https://hydra.nixos.org/build/295092814 at 2025-04-22 1263 1255 - Delta-Lambda # failure in job https://hydra.nixos.org/build/233239406 at 2023-09-02 1256 + - delta-store # failure in job https://hydra.nixos.org/build/299186683 at 2025-06-23 1264 1257 - delude # failure in job https://hydra.nixos.org/build/233231224 at 2023-09-02 1265 1258 - demangler # failure in job https://hydra.nixos.org/build/295092777 at 2025-04-22 1266 1259 - demarcate # failure in job https://hydra.nixos.org/build/233194005 at 2023-09-02 ··· 1582 1575 - enummapmap # failure in job https://hydra.nixos.org/build/233228525 at 2023-09-02 1583 1576 - enummaps # failure in job https://hydra.nixos.org/build/233251965 at 2023-09-02 1584 1577 - enummapset-th # failure in job https://hydra.nixos.org/build/233225322 at 2023-09-02 1585 - - env-extra # failure in job https://hydra.nixos.org/build/296519026 at 2025-05-14 1586 1578 - env-parser # failure in job https://hydra.nixos.org/build/233237933 at 2023-09-02 1587 1579 - envelope # failure in job https://hydra.nixos.org/build/233199309 at 2023-09-02 1588 1580 - envstatus # failure in job https://hydra.nixos.org/build/233257940 at 2023-09-02 ··· 1722 1714 - FastxPipe # failure in job https://hydra.nixos.org/build/233232889 at 2023-09-02 1723 1715 - fathead-util # failure in job https://hydra.nixos.org/build/233255882 at 2023-09-02 1724 1716 - fay # failure in job https://hydra.nixos.org/build/233197122 at 2023-09-02 1725 - - fb # failure in job https://hydra.nixos.org/build/295093236 at 2025-04-22 1726 1717 - fb-persistent # failure in job https://hydra.nixos.org/build/233193999 at 2023-09-02 1727 1718 - fb-util # failure in job https://hydra.nixos.org/build/296519228 at 2025-05-14 1728 1719 - fbmessenger-api # failure in job https://hydra.nixos.org/build/233247641 at 2023-09-02 ··· 1881 1872 - franchise # failure in job https://hydra.nixos.org/build/233256790 at 2023-09-02 1882 1873 - franz # failure in job https://hydra.nixos.org/build/252725109 at 2024-03-16 1883 1874 - fraxl # failure in job https://hydra.nixos.org/build/233219345 at 2023-09-02 1884 - - freckle-env # failure in job https://hydra.nixos.org/build/295093368 at 2025-04-22 1885 - - freckle-kafka # failure in job https://hydra.nixos.org/build/269673466 at 2024-08-19 1886 1875 - freddy # failure in job https://hydra.nixos.org/build/233208999 at 2023-09-02 1887 1876 - free-alacarte # failure in job https://hydra.nixos.org/build/275141793 at 2024-10-21 1888 1877 - free-applicative-t # failure in job https://hydra.nixos.org/build/252715728 at 2024-03-16 ··· 1895 1884 - free-theorems-webui # failure in job https://hydra.nixos.org/build/233255034 at 2023-09-02 1896 1885 - free-v-bucks-generator-no-survey # failure in job https://hydra.nixos.org/build/233208419 at 2023-09-02 1897 1886 - free-v-bucks-generator-ps4-no-survey # failure in job https://hydra.nixos.org/build/233190747 at 2023-09-02 1887 + - free-vector-spaces # failure in job https://hydra.nixos.org/build/299137660 at 2025-06-23 1898 1888 - freenect # failure in job https://hydra.nixos.org/build/233196105 at 2023-09-02 1899 1889 - freer-effects # failure in job https://hydra.nixos.org/build/233214270 at 2023-09-02 1900 1890 - freer-simple-catching # failure in job https://hydra.nixos.org/build/295122831 at 2025-04-22 ··· 1915 1905 - frown # failure in job https://hydra.nixos.org/build/233208462 at 2023-09-02 1916 1906 - frp-arduino # failure in job https://hydra.nixos.org/build/233192216 at 2023-09-02 1917 1907 - frpnow # failure in job https://hydra.nixos.org/build/233236056 at 2023-09-02 1908 + - fs-api # failure in job https://hydra.nixos.org/build/299137683 at 2025-06-23 1918 1909 - fs-events # failure in job https://hydra.nixos.org/build/233218231 at 2023-09-02 1919 1910 - fsh-csv # failure in job https://hydra.nixos.org/build/233220196 at 2023-09-02 1920 1911 - FSM # failure in job https://hydra.nixos.org/build/233247343 at 2023-09-02 ··· 1979 1970 - gearhash # failure in job https://hydra.nixos.org/build/252728216 at 2024-03-16 1980 1971 - gelatin # failure in job https://hydra.nixos.org/build/233249394 at 2023-09-02 1981 1972 - gemcap # failure in job https://hydra.nixos.org/build/233202506 at 2023-09-02 1982 - - gemini-server # failure in job https://hydra.nixos.org/build/295093453 at 2025-04-22 1983 1973 - gemmula-altera # failure in job https://hydra.nixos.org/build/252721416 at 2024-03-16 1984 1974 - gemstone # failure in job https://hydra.nixos.org/build/233202246 at 2023-09-02 1985 1975 - gen-imports # failure in job https://hydra.nixos.org/build/233216588 at 2023-09-02 ··· 2020 2010 - gentlemark # failure in job https://hydra.nixos.org/build/233202158 at 2023-09-02 2021 2011 - genvalidity-appendful # failure in job https://hydra.nixos.org/build/295093519 at 2025-04-22 2022 2012 - genvalidity-mergeful # failure in job https://hydra.nixos.org/build/295093508 at 2025-04-22 2013 + - genvalidity-network-uri # failure in job https://hydra.nixos.org/build/299137822 at 2025-06-23 2023 2014 - geo-resolver # failure in job https://hydra.nixos.org/build/233206563 at 2023-09-02 2024 2015 - geo-uk # failure in job https://hydra.nixos.org/build/233221284 at 2023-09-02 2025 2016 - geocode-google # failure in job https://hydra.nixos.org/build/233191594 at 2023-09-02 ··· 2121 2112 - gitlab-api # failure in job https://hydra.nixos.org/build/233256639 at 2023-09-02 2122 2113 - gitlib-cmdline # failure in job https://hydra.nixos.org/build/233230857 at 2023-09-02 2123 2114 - gitlib-utils # failure in job https://hydra.nixos.org/build/233190826 at 2023-09-02 2115 + - gitrev-typed # failure in job https://hydra.nixos.org/build/299137966 at 2025-06-23 2124 2116 - gitter # failure in job https://hydra.nixos.org/build/233210040 at 2023-09-02 2125 2117 - glade # failure in job https://hydra.nixos.org/build/233229566 at 2023-09-02 2126 2118 - glambda # failure in job https://hydra.nixos.org/build/252728236 at 2024-03-16 ··· 2421 2413 - haskell-formatter # failure in job https://hydra.nixos.org/build/233237167 at 2023-09-02 2422 2414 - haskell-generate # failure in job https://hydra.nixos.org/build/233197927 at 2023-09-02 2423 2415 - haskell-go-checkers # failure in job https://hydra.nixos.org/build/234459896 at 2023-09-13 2416 + - haskell-halogen-core # failure in job https://hydra.nixos.org/build/299138362 at 2025-06-23 2424 2417 - haskell-holes-th # failure in job https://hydra.nixos.org/build/233238457 at 2023-09-02 2425 2418 - haskell-igraph # failure in job https://hydra.nixos.org/build/233201209 at 2023-09-02 2426 2419 - haskell-import-graph # failure in job https://hydra.nixos.org/build/233225328 at 2023-09-02 ··· 2476 2469 - haskhol-core # failure in job https://hydra.nixos.org/build/233232550 at 2023-09-02 2477 2470 - haskmon # failure in job https://hydra.nixos.org/build/233228390 at 2023-09-02 2478 2471 - haskoin # failure in job https://hydra.nixos.org/build/233201668 at 2023-09-02 2472 + - haskoin-store # failure in job https://hydra.nixos.org/build/299138382 at 2025-06-23 2479 2473 - haskoin-util # failure in job https://hydra.nixos.org/build/233222171 at 2023-09-02 2480 2474 - haskoin-wallet # failure in job https://hydra.nixos.org/build/233206922 at 2023-09-02 2481 - - haskore # failure in job https://hydra.nixos.org/build/233238668 at 2023-09-02 2475 + - haskore-realtime # failure in job https://hydra.nixos.org/build/301391170 at 2025-07-01 2482 2476 - haskore-vintage # failure in job https://hydra.nixos.org/build/233230742 at 2023-09-02 2483 2477 - HaskRel # failure in job https://hydra.nixos.org/build/295090970 at 2025-04-22 2484 2478 - hasktorch-codegen # failure in job https://hydra.nixos.org/build/233232876 at 2023-09-02 ··· 2613 2607 - hexpr # failure in job https://hydra.nixos.org/build/233198146 at 2023-09-02 2614 2608 - hexpress # failure in job https://hydra.nixos.org/build/233219047 at 2023-09-02 2615 2609 - hexquote # failure in job https://hydra.nixos.org/build/233230240 at 2023-09-02 2616 - - hexstring # failure in job https://hydra.nixos.org/build/233193009 at 2023-09-02 2617 2610 - hext # failure in job https://hydra.nixos.org/build/233221345 at 2023-09-02 2618 2611 - hextra # failure in job https://hydra.nixos.org/build/233238071 at 2023-09-02 2619 2612 - hextream # failure in job https://hydra.nixos.org/build/252712270 at 2024-03-16 ··· 3242 3235 - io-capture # failure in job https://hydra.nixos.org/build/233196311 at 2023-09-02 3243 3236 - io-choice # failure in job https://hydra.nixos.org/build/233218388 at 2023-09-02 3244 3237 - io-reactive # failure in job https://hydra.nixos.org/build/233205095 at 2023-09-02 3245 - - io-sim # failure in job https://hydra.nixos.org/build/295094727 at 2025-04-22 3246 3238 - ioctl # failure in job https://hydra.nixos.org/build/233191634 at 2023-09-02 3247 3239 - IOR # failure in job https://hydra.nixos.org/build/233206346 at 2023-09-02 3248 3240 - iostring # failure in job https://hydra.nixos.org/build/233195232 at 2023-09-02 ··· 3481 3473 - language-elm # failure in job https://hydra.nixos.org/build/233214012 at 2023-09-02 3482 3474 - language-fortran # failure in job https://hydra.nixos.org/build/233205480 at 2023-09-02 3483 3475 - language-gcl # failure in job https://hydra.nixos.org/build/233218957 at 2023-09-02 3484 - - language-gemini # failure in job https://hydra.nixos.org/build/295094938 at 2025-04-22 3485 3476 - language-go # failure in job https://hydra.nixos.org/build/233194866 at 2023-09-02 3486 3477 - language-guess # failure in job https://hydra.nixos.org/build/233257420 at 2023-09-02 3487 3478 - language-hcl # failure in job https://hydra.nixos.org/build/233212998 at 2023-09-02 ··· 3572 3563 - lhslatex # failure in job https://hydra.nixos.org/build/233246375 at 2023-09-02 3573 3564 - LibClang # failure in job https://hydra.nixos.org/build/233194732 at 2023-09-02 3574 3565 - libexpect # failure in job https://hydra.nixos.org/build/233226545 at 2023-09-02 3575 - - libfuse3 # failure in job https://hydra.nixos.org/build/295095036 at 2025-04-22 3576 3566 - libGenI # failure in job https://hydra.nixos.org/build/233240857 at 2023-09-02 3577 3567 - libgit # failure in job https://hydra.nixos.org/build/252729283 at 2024-03-16 3578 3568 - libhbb # failure in job https://hydra.nixos.org/build/233232186 at 2023-09-02 ··· 3663 3653 - LiterateMarkdown # failure in job https://hydra.nixos.org/build/233233229 at 2023-09-02 3664 3654 - little-earley # failure in job https://hydra.nixos.org/build/233197880 at 2023-09-02 3665 3655 - ll-picosat # failure in job https://hydra.nixos.org/build/233206257 at 2023-09-02 3656 + - llama-cpp-hs # failure in job https://hydra.nixos.org/build/299139409 at 2025-06-23 3666 3657 - llsd # failure in job https://hydra.nixos.org/build/233241590 at 2023-09-02 3667 3658 - llvm-base # failure in job https://hydra.nixos.org/build/233244366 at 2023-09-02 3668 3659 - llvm-codegen # failure in job https://hydra.nixos.org/build/295095119 at 2025-04-22 ··· 3888 3879 - midisurface # failure in job https://hydra.nixos.org/build/233224559 at 2023-09-02 3889 3880 - mig-swagger-ui # failure in job https://hydra.nixos.org/build/295095369 at 2025-04-22 3890 3881 - mighttpd2 # failure in job https://hydra.nixos.org/build/233213125 at 2023-09-02 3891 - - migrant-core # failure in job https://hydra.nixos.org/build/295095347 at 2025-04-22 3892 - - migrant-postgresql-simple # failure in job https://hydra.nixos.org/build/233191795 at 2023-09-02 3893 3882 - mikmod # failure in job https://hydra.nixos.org/build/233247364 at 2023-09-02 3894 3883 - mikrokosmos # failure in job https://hydra.nixos.org/build/233232143 at 2023-09-02 3895 3884 - miku # failure in job https://hydra.nixos.org/build/233212186 at 2023-09-02 ··· 4088 4077 - my-package-testing # failure in job https://hydra.nixos.org/build/233201843 at 2023-09-02 4089 4078 - my-test-docs # failure in job https://hydra.nixos.org/build/233191840 at 2023-09-02 4090 4079 - myanimelist-export # failure in job https://hydra.nixos.org/build/233255510 at 2023-09-02 4091 - - myers-diff # failure in job https://hydra.nixos.org/build/295095575 at 2025-04-22 4092 4080 - myo # failure in job https://hydra.nixos.org/build/233251998 at 2023-09-02 4093 4081 - MyPrimes # failure in job https://hydra.nixos.org/build/233247934 at 2023-09-02 4094 4082 - mysnapsession # failure in job https://hydra.nixos.org/build/252732102 at 2024-03-16 ··· 4598 4586 - phasechange # failure in job https://hydra.nixos.org/build/233254293 at 2023-09-02 4599 4587 - phaser # failure in job https://hydra.nixos.org/build/233250604 at 2023-09-02 4600 4588 - phash # We cannot build this package w/o the C library from <http://www.phash.org/>. 4589 + - phino # failure in job https://hydra.nixos.org/build/299140266 at 2025-06-23 4601 4590 - phladiprelio-general-datatype # failure in job https://hydra.nixos.org/build/275139962 at 2024-10-21 4602 4591 - phoityne # failure in job https://hydra.nixos.org/build/233195238 at 2023-09-02 4603 4592 - phoityne-vscode # failure in job https://hydra.nixos.org/build/233190938 at 2023-09-02 ··· 4745 4734 - pomohoro # failure in job https://hydra.nixos.org/build/233244601 at 2023-09-02 4746 4735 - ponder # failure in job https://hydra.nixos.org/build/233223646 at 2023-09-02 4747 4736 - pong-server # failure in job https://hydra.nixos.org/build/233194974 at 2023-09-02 4737 + - pontarius-xmpp-extras # failure in job https://hydra.nixos.org/build/301059892 at 2025-07-01 4748 4738 - pontarius-xpmn # failure in job https://hydra.nixos.org/build/233217546 at 2023-09-02 4749 4739 - pool # failure in job https://hydra.nixos.org/build/233205364 at 2023-09-02 4750 4740 - pool-conduit # failure in job https://hydra.nixos.org/build/233246643 at 2023-09-02 ··· 5042 5032 - rational-list # failure in job https://hydra.nixos.org/build/233197144 at 2023-09-02 5043 5033 - rattle # failure in job https://hydra.nixos.org/build/233234335 at 2023-09-02 5044 5034 - rattletrap # failure in job https://hydra.nixos.org/build/233206840 at 2023-09-02 5035 + - rawlock # failure in job https://hydra.nixos.org/build/299186718 at 2025-06-23 5045 5036 - rawr # fails to build after unbreaking ghc-datasize at 2025-01-19 5046 5037 - raylib-imgui # failure in job https://hydra.nixos.org/build/233222471 at 2023-09-02 5047 5038 - raz # failure in job https://hydra.nixos.org/build/233218482 at 2023-09-02 5048 5039 - rbst # failure in job https://hydra.nixos.org/build/233238184 at 2023-09-02 5049 5040 - rclient # failure in job https://hydra.nixos.org/build/233239290 at 2023-09-02 5041 + - rds-data # failure in job https://hydra.nixos.org/build/299186719 at 2025-06-23 5050 5042 - rds-data-codecs # failure in job https://hydra.nixos.org/build/253696582 at 2024-03-31 5051 5043 - react # failure in job https://hydra.nixos.org/build/257372364 at 2024-04-27 5052 5044 - react-flux # failure in job https://hydra.nixos.org/build/233246819 at 2023-09-02 ··· 5188 5180 - resource-effectful # failure in job https://hydra.nixos.org/build/252712267 at 2024-03-16 5189 5181 - resource-embed # failure in job https://hydra.nixos.org/build/233209109 at 2023-09-02 5190 5182 - resource-pool-monad # failure in job https://hydra.nixos.org/build/233204199 at 2023-09-02 5183 + - resource-registry # failure in job https://hydra.nixos.org/build/299350536 at 2025-06-23 5191 5184 - resourcet-pool # failure in job https://hydra.nixos.org/build/233213894 at 2023-09-02 5192 5185 - resp # failure in job https://hydra.nixos.org/build/295096632 at 2025-04-22 5193 5186 - respond # failure in job https://hydra.nixos.org/build/295096626 at 2025-04-22 ··· 5373 5366 - SecureHash-SHA3 # failure in job https://hydra.nixos.org/build/233216866 at 2023-09-02 5374 5367 - secureUDP # failure in job https://hydra.nixos.org/build/233215410 at 2023-09-02 5375 5368 - SegmentTree # failure in job https://hydra.nixos.org/build/233216161 at 2023-09-02 5376 - - sel # failure in job https://hydra.nixos.org/build/255671988 at 2024-04-16 5377 5369 - selda-postgresql # failure in job https://hydra.nixos.org/build/245539286 at 2024-01-02 5378 5370 - selectors # failure in job https://hydra.nixos.org/build/233227433 at 2023-09-02 5379 5371 - selenium # failure in job https://hydra.nixos.org/build/233214276 at 2023-09-02 ··· 5530 5522 - signable # failure in job https://hydra.nixos.org/build/259979871 at 2024-05-19 5531 5523 - signable-haskell-protoc # failure in job https://hydra.nixos.org/build/252734188 at 2024-03-16 5532 5524 - signal-messaging-dbus # failure in job https://hydra.nixos.org/build/252723131 at 2024-03-16 5525 + - signature # failure in job https://hydra.nixos.org/build/301391178 at 2025-07-01 5533 5526 - significant-figures # failure in job https://hydra.nixos.org/build/295097004 at 2025-04-22 5534 5527 - silero-vad # failure in job https://hydra.nixos.org/build/295096978 at 2025-04-22 5535 5528 - simd # failure in job https://hydra.nixos.org/build/233206642 at 2023-09-02 ··· 5933 5926 - supply-chain-core # failure in job https://hydra.nixos.org/build/252715612 at 2024-03-16 5934 5927 - surjective # failure in job https://hydra.nixos.org/build/233242908 at 2023-09-02 5935 5928 - sv-core # failure in job https://hydra.nixos.org/build/233217245 at 2023-09-02 5936 - - sv2v # failure in job https://hydra.nixos.org/build/295097359 at 2025-04-22 5937 5929 - SVD2HS # failure in job https://hydra.nixos.org/build/233248575 at 2023-09-02 5938 5930 - svfactor # failure in job https://hydra.nixos.org/build/233256743 at 2023-09-02 5939 5931 - svg-builder-fork # failure in job https://hydra.nixos.org/build/233224461 at 2023-09-02 ··· 5967 5959 - symantic-xml # failure in job https://hydra.nixos.org/build/233230860 at 2023-09-02 5968 5960 - symbolic-link # failure in job https://hydra.nixos.org/build/233255331 at 2023-09-02 5969 5961 - symengine # failure in job https://hydra.nixos.org/build/233203977 at 2023-09-02 5970 - - symtegration # failure in job https://hydra.nixos.org/build/296523016 at 2025-05-14 5971 5962 - sync # failure in job https://hydra.nixos.org/build/233254114 at 2023-09-02 5972 5963 - sync-mht # failure in job https://hydra.nixos.org/build/233236022 at 2023-09-02 5973 5964 - syntactic # failure in job https://hydra.nixos.org/build/233210123 at 2023-09-02 ··· 6115 6106 - text-all # failure in job https://hydra.nixos.org/build/233229321 at 2023-09-02 6116 6107 - text-and-plots # failure in job https://hydra.nixos.org/build/233205250 at 2023-09-02 6117 6108 - text-ascii # failure in job https://hydra.nixos.org/build/233247653 at 2023-09-02 6109 + - text-builder-lawful-conversions # failure in job https://hydra.nixos.org/build/299141710 at 2025-06-23 6118 6110 - text-builder-time # failure in job https://hydra.nixos.org/build/295458315 at 2025-05-02 6119 6111 - text-compression # failure in job https://hydra.nixos.org/build/233202733 at 2023-09-02 6120 6112 - text-containers # failure in job https://hydra.nixos.org/build/233253948 at 2023-09-02 ··· 6432 6424 - unicode-prelude # failure in job https://hydra.nixos.org/build/233241723 at 2023-09-02 6433 6425 - unicode-symbols # failure in job https://hydra.nixos.org/build/233241639 at 2023-09-02 6434 6426 - unicode-tricks # failure in job https://hydra.nixos.org/build/233258238 at 2023-09-02 6427 + - unimap # failure in job https://hydra.nixos.org/build/299141969 at 2025-06-23 6435 6428 - union-find # failure in job https://hydra.nixos.org/build/233245476 at 2023-09-02 6436 6429 - union-map # failure in job https://hydra.nixos.org/build/233222765 at 2023-09-02 6437 6430 - uniprot-kb # failure in job https://hydra.nixos.org/build/233209692 at 2023-09-02 ··· 6560 6553 - verdict # failure in job https://hydra.nixos.org/build/233238835 at 2023-09-02 6561 6554 - verify # failure in job https://hydra.nixos.org/build/233239874 at 2023-09-02 6562 6555 - verilog # failure in job https://hydra.nixos.org/build/233211999 at 2023-09-02 6556 + - verismith # failure in job https://hydra.nixos.org/build/299186734 at 2025-06-23 6563 6557 - versioning # failure in job https://hydra.nixos.org/build/233205892 at 2023-09-02 6564 6558 - vformat # failure in job https://hydra.nixos.org/build/233222840 at 2023-09-02 6565 6559 - vgrep # failure in job https://hydra.nixos.org/build/233210982 at 2023-09-02 ··· 6705 6699 - willow # failure in job https://hydra.nixos.org/build/233215807 at 2023-09-02 6706 6700 - windns # failure in job https://hydra.nixos.org/build/233242724 at 2023-09-02 6707 6701 - winerror # failure in job https://hydra.nixos.org/build/233196100 at 2023-09-02 6702 + - wire-streams # failure in job https://hydra.nixos.org/build/299186735 at 2025-06-23 6708 6703 - wireguard-hs # failure in job https://hydra.nixos.org/build/233218722 at 2023-09-02 6709 6704 - wires # failure in job https://hydra.nixos.org/build/233192321 at 2023-09-02 6710 6705 - wiring # failure in job https://hydra.nixos.org/build/233191683 at 2023-09-02 ··· 6754 6749 - writer-cps-mtl # failure in job https://hydra.nixos.org/build/252713593 at 2024-03-16 6755 6750 - wsdl # failure in job https://hydra.nixos.org/build/233208187 at 2023-09-02 6756 6751 - wsedit # failure in job https://hydra.nixos.org/build/233232333 at 2023-09-02 6752 + - wsjtx-udp # failure in job https://hydra.nixos.org/build/299186736 at 2025-06-23 6757 6753 - wss-client # timeout 6758 6754 - wtk # failure in job https://hydra.nixos.org/build/233220668 at 2023-09-02 6759 6755 - wumpus-core # failure in job https://hydra.nixos.org/build/233244405 at 2023-09-02 ··· 6799 6795 - xml-prettify # failure in job https://hydra.nixos.org/build/233225974 at 2023-09-02 6800 6796 - xml-prettify-text # failure in job https://hydra.nixos.org/build/233202586 at 2023-09-02 6801 6797 - xml-query # failure in job https://hydra.nixos.org/build/233194795 at 2023-09-02 6802 - - xml-syntax # failure in job https://hydra.nixos.org/build/233245678 at 2023-09-02 6803 6798 - xml-to-json # failure in job https://hydra.nixos.org/build/233197489 at 2023-09-02 6804 6799 - xml-tydom-core # failure in job https://hydra.nixos.org/build/233206253 at 2023-09-02 6805 6800 - xml-verify # failure in job https://hydra.nixos.org/build/233237302 at 2023-09-02
+4 -1
pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
··· 37 37 - hsc3 < 0.21 38 38 # 2024-12-31: last version that's compatible with GHC < 9.9 39 39 - htree < 0.2.0.0 40 + # 2025-06-11: last version that supports pandoc == 3.6.* which is prescribed by LTS 23 41 + - pandoc-crossref < 0.3.20 40 42 # keep-sorted end 41 43 42 44 # keep-sorted start skip_lines=1 case=no numeric=yes ··· 107 109 - ormolu == 0.5.2.0 # 2023-08-08: preserve for ghc 9.0 108 110 - ormolu == 0.7.2.0 # 2023-11-13: for ghc-lib-parser 9.6 compat 109 111 - ormolu == 0.7.7.0 # 2025-01-27: for ghc 9.10 compat 112 + - persistent-test < 2.13.1.4 # 2025-06-04: incompatible with persistent < 2.16, see conf*-common.nix 110 113 - postgresql-binary < 0.14 # 2025-01-19: Needed for building postgrest 111 114 - primitive-unlifted == 0.1.3.1 # 2024-03-16: preserve for ghc 9.2 112 115 - retrie < 1.2.0.0 # 2022-12-30: preserve for ghc < 9.2 ··· 115 118 - simple-get-opt < 0.5 # 2025-05-01: for crux-0.7.2 116 119 - stylish-haskell == 0.14.4.0 # 2022-09-19: preserve for ghc 9.0 117 120 - stylish-haskell == 0.14.5.0 # 2025-04-14: needed for hls with ghc-lib 9.6 121 + - stylish-haskell == 0.15.0.1 # 2025-04-14: needed for hls with ghc-lib 9.10 118 122 - tar == 0.6.0.0 # 2025-02-08: last version to not require os-string (which can't be built with GHC < 9.2) 119 123 - text == 2.0.2 # 2023-09-14: Needed for elm (which is currently on ghc-8.10) 120 124 - text-metrics < 0.3.3 # 2025-02-08: >= 0.3.3 uses GHC2021 ··· 332 336 - optics 333 337 - pandoc 334 338 - pandoc-cli 335 - - pandoc-crossref 336 339 - postgresql-simple 337 340 - purebred-email 338 341 - reflex-dom
+67 -66
pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml
··· 1 - # Stackage LTS 23.21 1 + # Stackage LTS 23.24 2 2 # This file is auto-generated by 3 3 # maintainers/scripts/haskell/update-stackage.sh 4 4 default-package-overrides: ··· 123 123 - autodocodec-servant-multipart ==0.0.0.1 124 124 - autodocodec-swagger2 ==0.1.0.0 125 125 - autodocodec-yaml ==0.4.0.1 126 - - autoexporter ==2.0.0.13 126 + - autoexporter ==2.0.0.15 127 127 - automaton ==1.5 128 128 - avro ==0.6.2.1 129 129 - aws ==0.24.4 ··· 211 211 - blas-ffi ==0.1 212 212 - blas-hs ==0.1.1.0 213 213 - blaze-bootstrap ==0.1.0.1 214 - - blaze-builder ==0.4.2.3 214 + - blaze-builder ==0.4.3 215 215 - blaze-colonnade ==1.2.3.0 216 216 - blaze-html ==0.9.2.0 217 217 - blaze-markup ==0.8.3.0 ··· 219 219 - blaze-textual ==0.2.3.1 220 220 - bloodhound ==0.23.0.1 221 221 - bloomfilter ==2.0.1.2 222 - - bluefin ==0.0.15.0 222 + - bluefin ==0.0.16.0 223 223 - bluefin-internal ==0.0.15.0 224 224 - bm ==0.2.0.0 225 225 - bmp ==1.2.6.4 ··· 257 257 - bugsnag-wai ==1.0.0.1 258 258 - bugsnag-yesod ==1.0.1.0 259 259 - bugzilla-redhat ==1.0.1.1 260 - - burrito ==2.0.1.11 260 + - burrito ==2.0.1.13 261 261 - bv ==0.5 262 262 - bv-little ==1.3.2 263 263 - bv-sized ==1.0.6 ··· 436 436 - conduit-aeson ==0.1.1.0 437 437 - conduit-algorithms ==0.0.14.0 438 438 - conduit-combinators ==1.3.0 439 - - conduit-concurrent-map ==0.1.3 439 + - conduit-concurrent-map ==0.1.4 440 440 - conduit-extra ==1.3.7 441 441 - conduit-parse ==0.2.1.1 442 442 - conduit-zstd ==0.0.2.0 ··· 519 519 - csp ==1.4.0 520 520 - css-text ==0.1.3.0 521 521 - csv ==0.1.2 522 - - csv-conduit ==1.0.1.0 522 + - csv-conduit ==1.0.1.1 523 523 - ctrie ==0.2 524 524 - cubicbezier ==0.6.0.7 525 525 - cubicspline ==0.1.2 ··· 817 817 - feature-flags ==0.1.0.1 818 818 - fedora-krb ==0.1.0 819 819 - fedora-releases ==0.2.1 820 - - fedora-repoquery ==0.7.1 820 + - fedora-repoquery ==0.7.2 821 821 - feed ==1.3.2.1 822 822 - FenwickTree ==0.1.2.1 823 823 - fft ==0.1.8.7 ··· 840 840 - filtrable ==0.1.6.0 841 841 - fin ==0.3.2 842 842 - FindBin ==0.0.5 843 - - fingertree ==0.1.5.0 843 + - fingertree ==0.1.6.1 844 844 - finite-typelits ==0.2.1.0 845 845 - first-class-families ==0.8.1.0 846 846 - fits-parse ==0.4.2 ··· 859 859 - flexible-defaults ==0.0.3 860 860 - FloatingHex ==0.5 861 861 - floatshow ==0.2.4 862 - - flow ==2.0.0.7 862 + - flow ==2.0.0.9 863 863 - flush-queue ==1.0.0 864 864 - fmlist ==0.9.4 865 865 - fmt ==0.6.3.0 ··· 896 896 - frisby ==0.2.5 897 897 - from-sum ==0.2.3.0 898 898 - frontmatter ==0.1.0.2 899 - - fsnotify ==0.4.2.0 899 + - fsnotify ==0.4.3.0 900 900 - ftp-client ==0.5.1.6 901 901 - funcmp ==1.9 902 902 - function-builder ==0.3.0.1 ··· 943 943 - genvalidity-case-insensitive ==0.0.0.1 944 944 - genvalidity-containers ==1.0.0.2 945 945 - genvalidity-criterion ==1.1.0.0 946 - - genvalidity-hspec ==1.0.0.3 946 + - genvalidity-hspec ==1.0.0.4 947 947 - genvalidity-hspec-aeson ==1.0.0.0 948 948 - genvalidity-hspec-binary ==1.0.0.0 949 949 - genvalidity-hspec-cereal ==1.0.0.0 ··· 1035 1035 - git-mediate ==1.1.0 1036 1036 - githash ==0.1.7.0 1037 1037 - github ==0.29 1038 - - github-release ==2.0.0.12 1038 + - github-release ==2.0.0.14 1039 1039 - github-rest ==1.2.1 1040 1040 - github-types ==0.2.1 1041 1041 - github-webhooks ==0.17.0 ··· 1045 1045 - gitlib-test ==3.1.2 1046 1046 - gitrev ==1.3.1 1047 1047 - gl ==0.9.1 1048 - - glabrous ==2.0.6.3 1048 + - glabrous ==2.0.6.4 1049 1049 - glasso ==0.1.0 1050 1050 - GLFW-b ==3.3.9.1 1051 1051 - glib ==0.13.12.0 ··· 1088 1088 - gtk3 ==0.15.10 1089 1089 - guarded-allocation ==0.0.1 1090 1090 - hackage-cli ==0.1.0.2 1091 - - hackage-security ==0.6.2.6 1091 + - hackage-security ==0.6.3.0 1092 1092 - hackage-security-HTTP ==0.1.1.2 1093 1093 - haddock-library ==1.11.0 1094 1094 - haha ==0.3.1.1 ··· 1127 1127 - haskey-btree ==0.3.0.1 1128 1128 - haskintex ==0.8.0.3 1129 1129 - haskoin-core ==1.1.0 1130 - - haskoin-node ==1.1.3 1130 + - haskoin-node ==1.1.4 1131 1131 - haskoin-store-data ==1.4.0 1132 1132 - hasktags ==0.73.0 1133 1133 - hasql ==1.8.1.4 ··· 1188 1188 - histogram-fill ==0.9.1.0 1189 1189 - hjsmin ==0.2.1 1190 1190 - hkd-default ==1.1.0.0 1191 - - hkgr ==0.4.7 1191 + - hkgr ==0.4.8 1192 1192 - hledger ==1.40 1193 1193 - hledger-iadd ==1.3.21 1194 1194 - hledger-interest ==1.6.7 ··· 1258 1258 - hslua-marshalling ==2.3.1 1259 1259 - hslua-module-doclayout ==1.2.0 1260 1260 - hslua-module-path ==1.1.1 1261 - - hslua-module-system ==1.1.2 1261 + - hslua-module-system ==1.1.3 1262 1262 - hslua-module-text ==1.1.1 1263 1263 - hslua-module-version ==1.1.1 1264 1264 - hslua-module-zip ==1.1.3 ··· 1381 1381 - Imlib ==0.1.2 1382 1382 - immortal ==0.3 1383 1383 - immortal-queue ==0.1.0.1 1384 - - imp ==1.0.3.1 1384 + - imp ==1.0.3.3 1385 1385 - inbox ==0.2.0 1386 1386 - incipit-base ==0.6.1.1 1387 1387 - incipit-core ==0.6.1.1 ··· 1404 1404 - inline-c ==0.9.1.10 1405 1405 - inline-c-cpp ==0.5.0.2 1406 1406 - input-parsers ==0.3.0.2 1407 - - insert-ordered-containers ==0.2.6 1407 + - insert-ordered-containers ==0.2.7 1408 1408 - inspection-testing ==0.5.0.3 1409 1409 - int-cast ==0.2.0.0 1410 1410 - int-supply ==1.0.0 ··· 1464 1464 - jsaddle ==0.9.9.3 1465 1465 - jsaddle-dom ==0.9.9.2 1466 1466 - json ==0.11 1467 - - json-feed ==2.0.0.13 1468 - - json-rpc ==1.1.1 1467 + - json-feed ==2.0.0.15 1468 + - json-rpc ==1.1.2 1469 1469 - json-spec ==1.1.1.2 1470 1470 - json-spec-elm ==0.4.0.6 1471 1471 - json-spec-elm-servant ==0.4.3.0 ··· 1473 1473 - json-stream ==0.4.6.0 1474 1474 - jsonifier ==0.2.1.3 1475 1475 - jsonpath ==0.3.0.0 1476 - - JuicyCairo ==0.1.0.0 1476 + - JuicyCairo ==0.1.0.1 1477 1477 - JuicyPixels ==3.3.9 1478 1478 - JuicyPixels-extra ==0.6.0 1479 1479 - JuicyPixels-scale-dct ==0.1.2 ··· 1505 1505 - koji-tool ==1.2 1506 1506 - kvitable ==1.1.0.1 1507 1507 - labels ==0.3.3 1508 - - lackey ==2.0.0.9 1508 + - lackey ==2.0.0.11 1509 1509 - lame ==0.2.2 1510 1510 - language-avro ==0.1.4.0 1511 1511 - language-c ==0.10.0 ··· 1532 1532 - latex ==0.1.0.4 1533 1533 - lattices ==2.2.1 1534 1534 - lawful ==0.1.0.0 1535 - - lawful-conversions ==0.1.6.1 1535 + - lawful-conversions ==0.1.7 1536 1536 - lazy-csv ==0.5.1 1537 1537 - lazyio ==0.1.0.4 1538 1538 - lazyppl ==1.0 1539 1539 - lazysmallcheck ==0.6 1540 1540 - lca ==0.4 1541 1541 - leancheck ==1.0.2 1542 - - leancheck-instances ==0.0.5 1542 + - leancheck-instances ==0.0.8 1543 1543 - leapseconds-announced ==2017.1.0.1 1544 1544 - learn-physics ==0.6.7 1545 1545 - leb128-cereal ==1.2 ··· 1787 1787 - multiset ==0.3.4.3 1788 1788 - multistate ==0.8.0.4 1789 1789 - murmur-hash ==0.1.0.11 1790 - - murmur3 ==1.0.5 1790 + - murmur3 ==1.0.6 1791 1791 - MusicBrainz ==0.4.1 1792 - - mustache ==2.4.2 1792 + - mustache ==2.4.3.1 1793 1793 - mutable-containers ==0.3.4.1 1794 1794 - mwc-probability ==2.3.1 1795 1795 - mwc-random ==0.15.2.0 1796 1796 - mx-state-codes ==1.0.0.0 1797 - - myers-diff ==0.3.0.0 1797 + - myers-diff ==0.3.0.2 1798 1798 - mysql ==0.2.1 1799 1799 - mysql-haskell ==1.1.6 1800 1800 - mysql-haskell-nem ==0.1.0.0 ··· 1831 1831 - network-bsd ==2.8.1.0 1832 1832 - network-byte-order ==0.1.7 1833 1833 - network-conduit-tls ==1.4.0.1 1834 - - network-control ==0.1.6 1834 + - network-control ==0.1.7 1835 1835 - network-info ==0.2.1 1836 1836 - network-ip ==0.3.0.3 1837 1837 - network-messagepack-rpc ==0.1.2.0 ··· 1860 1860 - non-negative ==0.1.2 1861 1861 - nonce ==1.0.7 1862 1862 - nondeterminism ==1.5 1863 - - nonempty-containers ==0.3.4.5 1863 + - nonempty-containers ==0.3.5.0 1864 1864 - nonempty-vector ==0.2.4 1865 1865 - nonempty-zipper ==1.0.1.1 1866 1866 - normaldistribution ==1.1.0.3 1867 1867 - nothunks ==0.3.0.0 1868 1868 - nowdoc ==0.1.1.0 1869 - - nqe ==0.6.5 1869 + - nqe ==0.6.6 1870 1870 - nsis ==0.3.3 1871 1871 - numbers ==3000.2.0.2 1872 1872 - numeric-extras ==0.1 ··· 1893 1893 - old-locale ==1.0.0.7 1894 1894 - old-time ==1.1.0.4 1895 1895 - ollama-haskell ==0.1.3.0 1896 - - om-elm ==2.0.0.8 1896 + - om-elm ==2.0.1.0 1897 1897 - om-show ==0.1.2.11 1898 1898 - once ==0.4 1899 1899 - one-liner ==2.1 ··· 1950 1950 - pandoc-lua-engine ==0.4.1.1 1951 1951 - pandoc-lua-marshal ==0.3.0 1952 1952 - pandoc-plot ==1.9.1 1953 - - pandoc-server ==0.1.0.10 1953 + - pandoc-server ==0.1.0.11 1954 1954 - pandoc-throw ==0.1.0.0 1955 1955 - pandoc-types ==1.23.1 1956 1956 - pango ==0.13.12.0 ··· 1987 1987 - pathtype ==0.8.1.3 1988 1988 - pathwalk ==0.3.1.2 1989 1989 - patience ==0.3 1990 - - patrol ==1.0.0.9 1990 + - patrol ==1.0.0.11 1991 1991 - pava ==0.1.1.4 1992 1992 - pcg-random ==0.1.4.0 1993 - - pcre-heavy ==1.0.0.3 1993 + - pcre-heavy ==1.0.0.4 1994 1994 - pcre-light ==0.4.1.3 1995 1995 - pcre-utils ==0.1.9 1996 1996 - pcre2 ==2.2.2 ··· 2019 2019 - persistent-redis ==2.13.0.2 2020 2020 - persistent-sqlite ==2.13.3.0 2021 2021 - persistent-template ==2.12.0.0 2022 - - persistent-test ==2.13.1.3 2022 + - persistent-test ==2.13.1.4 2023 2023 - persistent-typed-db ==0.1.0.7 2024 2024 - pfile ==0.1.0.1 2025 2025 - pg-harness-client ==0.6.0 ··· 2129 2129 - prometheus-metrics-ghc ==1.0.1.2 2130 2130 - promises ==0.3 2131 2131 - prospect ==0.1.0.0 2132 - - proto-lens ==0.7.1.5 2132 + - proto-lens ==0.7.1.6 2133 2133 - proto-lens-arbitrary ==0.1.2.14 2134 2134 - proto-lens-optparse ==0.1.1.13 2135 2135 - proto-lens-protobuf-types ==0.7.2.1 ··· 2140 2140 - protobuf-simple ==0.1.1.1 2141 2141 - protocol-radius ==0.0.1.2 2142 2142 - protocol-radius-test ==0.1.0.1 2143 - - protolude ==0.3.4 2143 + - protolude ==0.3.5 2144 2144 - proxied ==0.3.2 2145 2145 - psql-helpers ==0.1.0.0 2146 2146 - PSQueue ==1.2.1 ··· 2185 2185 - rainbow ==0.34.2.2 2186 2186 - rainbox ==0.26.0.0 2187 2187 - ral ==0.2.2 2188 - - rampart ==2.0.0.9 2188 + - rampart ==2.0.0.11 2189 2189 - ramus ==0.1.2 2190 2190 - rando ==0.0.0.4 2191 2191 - random ==1.2.1.3 ··· 2203 2203 - Rasterific ==0.7.5.4 2204 2204 - rasterific-svg ==0.3.3.2 2205 2205 - rate-limit ==1.4.3 2206 - - ratel ==2.0.0.13 2207 - - ratel-wai ==2.0.0.8 2206 + - ratel ==2.0.0.15 2207 + - ratel-wai ==2.0.0.10 2208 2208 - ratio-int ==0.1.2 2209 2209 - rattle ==0.2 2210 - - rattletrap ==14.1.1 2210 + - rattletrap ==14.1.3 2211 2211 - Rattus ==0.5.1.1 2212 2212 - raw-strings-qq ==1.1 2213 2213 - rawfilepath ==1.1.1 2214 - - rawstring-qm ==0.2.3.0 2214 + - rawstring-qm ==0.2.3.1 2215 2215 - rcu ==0.2.7 2216 2216 - rdf ==0.1.0.8 2217 2217 - rdtsc ==1.3.0.1 ··· 2249 2249 - regex-pcre-builtin ==0.95.2.3.8.44 2250 2250 - regex-posix ==0.96.0.2 2251 2251 - regex-posix-clib ==2.7 2252 - - regex-tdfa ==1.3.2.3 2252 + - regex-tdfa ==1.3.2.4 2253 2253 - regex-with-pcre ==1.1.0.2 2254 - - registry ==0.6.3.1 2255 - - registry-aeson ==0.3.1.1 2256 - - registry-hedgehog ==0.8.2.1 2257 - - registry-hedgehog-aeson ==0.3.1.1 2254 + - registry ==0.6.3.2 2255 + - registry-aeson ==0.3.1.2 2256 + - registry-hedgehog ==0.8.2.2 2257 + - registry-hedgehog-aeson ==0.3.1.2 2258 2258 - regression-simple ==0.2.1 2259 2259 - reinterpret-cast ==0.1.0 2260 2260 - relapse ==1.0.0.1 ··· 2268 2268 - reorder-expression ==0.1.0.2 2269 2269 - replace-attoparsec ==1.5.0.0 2270 2270 - replace-megaparsec ==1.5.0.1 2271 - - repline ==0.4.2.0 2271 + - repline ==0.4.3.0 2272 2272 - req ==3.13.4 2273 2273 - req-conduit ==1.0.2 2274 2274 - rerebase ==1.21.2 ··· 2278 2278 - resolv ==0.2.0.2 2279 2279 - resource-pool ==0.4.0.0 2280 2280 - resourcet ==1.3.0 2281 - - rest-rewrite ==0.4.4 2281 + - rest-rewrite ==0.4.5 2282 2282 - result ==0.2.6.0 2283 2283 - retry ==0.9.3.1 2284 2284 - rev-state ==0.2.0.1 2285 2285 - rex ==0.6.2 2286 - - rfc1751 ==0.1.3 2286 + - rfc1751 ==0.1.4 2287 2287 - rfc5051 ==0.2 2288 2288 - rg ==1.4.0.0 2289 2289 - rhine ==1.5 ··· 2298 2298 - rng-utils ==0.3.1 2299 2299 - roc-id ==0.2.0.4 2300 2300 - rocksdb-haskell ==1.0.1 2301 - - rocksdb-haskell-jprupp ==2.1.6 2302 - - rocksdb-query ==0.4.2 2301 + - rocksdb-haskell-jprupp ==2.1.7 2302 + - rocksdb-query ==0.4.3 2303 2303 - roles ==0.2.1.0 2304 2304 - rollbar ==1.1.3 2305 2305 - rope-utf16-splay ==0.4.0.0 ··· 2336 2336 - safecopy ==0.10.4.2 2337 2337 - safeio ==0.0.6.0 2338 2338 - SafeSemaphore ==0.10.1 2339 - - salve ==2.0.0.6 2339 + - salve ==2.0.0.8 2340 2340 - sample-frame ==0.0.4 2341 2341 - sample-frame-np ==0.0.5 2342 2342 - sampling ==0.3.5 ··· 2348 2348 - sandwich-quickcheck ==0.1.0.7 2349 2349 - sandwich-slack ==0.1.2.0 2350 2350 - sandwich-webdriver ==0.3.0.0 2351 - - saturn ==1.0.0.6 2351 + - saturn ==1.0.0.8 2352 2352 - say ==0.1.0.1 2353 2353 - sayable ==1.2.5.0 2354 2354 - sbp ==6.2.1 ··· 2364 2364 - scotty ==0.22 2365 2365 - scrypt ==0.5.0 2366 2366 - search-algorithms ==0.3.3 2367 - - secp256k1-haskell ==1.4.2 2367 + - secp256k1-haskell ==1.4.6 2368 2368 - securemem ==0.1.10 2369 2369 - select-rpms ==0.2.0 2370 2370 - selections ==0.3.0.0 ··· 2510 2510 - sourcemap ==0.1.7 2511 2511 - sox ==0.2.3.2 2512 2512 - soxlib ==0.0.3.2 2513 + - special-values ==0.1.0.0 2513 2514 - speculate ==0.4.20 2514 2515 - specup ==0.2.0.5 2515 2516 - speedy-slice ==0.3.2 ··· 2549 2550 - stm-chans ==3.0.0.9 2550 2551 - stm-conduit ==4.0.1 2551 2552 - stm-containers ==1.2.1.1 2552 - - stm-delay ==0.1.1.1 2553 + - stm-delay ==0.1.1.2 2553 2554 - stm-extras ==0.1.0.3 2554 2555 - stm-hamt ==1.2.1.1 2555 2556 - stm-split ==0.0.2.1 ··· 2603 2604 - svg-builder ==0.1.1 2604 2605 - svg-tree ==0.6.2.4 2605 2606 - SVGFonts ==1.8.0.1 2606 - - swagger2 ==2.8.9 2607 + - swagger2 ==2.8.10 2607 2608 - swish ==0.10.10.0 2608 2609 - syb ==0.7.2.4 2609 2610 - sydtest ==0.19.0.0 ··· 2636 2637 - synthesizer-midi ==0.6.1.2 2637 2638 - sysinfo ==0.1.1 2638 2639 - system-argv0 ==0.1.1 2639 - - system-fileio ==0.3.16.6 2640 + - system-fileio ==0.3.16.7 2640 2641 - system-filepath ==0.4.14.1 2641 2642 - system-info ==0.5.2 2642 2643 - system-linux-proc ==0.1.1.1 ··· 2689 2690 - tce-conf ==1.3 2690 2691 - tdigest ==0.3.1 2691 2692 - teardown ==0.5.0.1 2692 - - telegram-bot-api ==7.4.4 2693 + - telegram-bot-api ==7.4.5 2693 2694 - telegram-bot-simple ==0.14.4 2694 2695 - tempgres-client ==1.0.0 2695 2696 - template ==0.2.0.10 ··· 2717 2718 - test-fun ==0.1.0.0 2718 2719 - testing-feat ==1.1.1.1 2719 2720 - testing-type-modifiers ==0.1.0.1 2720 - - texmath ==0.12.10 2721 + - texmath ==0.12.10.1 2721 2722 - text-ansi ==0.3.0.1 2722 2723 - text-binary ==0.2.1.1 2723 2724 - text-builder ==0.6.10 ··· 2781 2782 - time-lens ==0.4.0.2 2782 2783 - time-locale-compat ==0.1.1.5 2783 2784 - time-locale-vietnamese ==1.0.0.0 2784 - - time-manager ==0.2.2 2785 + - time-manager ==0.2.3 2785 2786 - time-units ==1.0.0 2786 2787 - time-units-types ==0.2.0.1 2787 2788 - timeit ==2.0 ··· 2809 2810 - toml-reader ==0.2.2.0 2810 2811 - toml-reader-parse ==0.1.1.1 2811 2812 - tomland ==1.3.3.3 2812 - - tools-yj ==0.1.0.23 2813 + - tools-yj ==0.1.0.27 2813 2814 - tophat ==1.0.8.0 2814 2815 - topograph ==1.0.1 2815 2816 - torrent ==10000.1.3 ··· 2860 2861 - typecheck-plugin-nat-simple ==0.1.0.9 2861 2862 - typed-process ==0.2.13.0 2862 2863 - typed-uuid ==0.2.0.0 2863 - - typelevel-tools-yj ==0.1.0.8 2864 + - typelevel-tools-yj ==0.1.0.9 2864 2865 - typelits-witnesses ==0.4.1.0 2865 2866 - typenums ==0.1.4 2866 2867 - typography-geometry ==1.0.1.0 ··· 2977 2978 - vector-split ==1.0.0.3 2978 2979 - vector-stream ==0.1.0.1 2979 2980 - vector-th-unbox ==0.2.2 2980 - - verset ==0.0.1.9 2981 + - verset ==0.0.1.11 2981 2982 - versions ==6.0.8 2982 2983 - vformat ==0.14.1.0 2983 2984 - vformat-time ==0.1.0.0
+10 -21
pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
··· 136 136 - atlassian-connect-core 137 137 - atmos-dimensional-tf 138 138 - atom-msp430 139 + - atomic-css 139 140 - atomic-primops-foreign 140 141 - atp 141 142 - attenuation-profunctors 142 143 - AttoJson 143 144 - attoparsec-enumerator 145 + - attoparsec-isotropic 144 146 - attoparsec-iteratee 145 147 - attoparsec-text-enumerator 146 148 - atuin ··· 267 269 - birch-beer 268 270 - bird 269 271 - BirdPP 270 - - bisc 271 272 - biscuit-servant 272 273 - bishbosh 273 274 - bit-array ··· 276 277 - bitcoin-api-extra 277 278 - bitcoin-block 278 279 - bitcoin-tx 279 - - bitcoin-types 280 280 - bitcoind-regtest 281 281 - Bitly 282 282 - bitly-cli ··· 339 339 - bytestring-read 340 340 - bytetrie 341 341 - ca 342 - - cabal-bounds 343 342 - cabal-cache 344 - - cabal-cargs 345 343 - cabal-query 346 344 - cabal-test 347 345 - cabal2arch ··· 470 468 - clod 471 469 - cloud-haskell 472 470 - cloud-seeder 471 + - cloudevents-haskell 473 472 - cloudyfs 474 473 - clr-bindings 475 474 - clr-inline ··· 682 681 - ddc-tools 683 682 - ddc-war 684 683 - ddci-core 684 + - dde 685 685 - debug 686 686 - decimal-arithmetic 687 687 - dedukti ··· 700 700 - delimiter-separated 701 701 - delta 702 702 - delta-h 703 - - delta-store 704 703 - dep-t-advice 705 704 - dep-t-dynamic 706 705 - dep-t-value ··· 1027 1026 - frpnow-gtk 1028 1027 - frpnow-gtk3 1029 1028 - frpnow-vty 1029 + - fs-sim 1030 1030 - ftdi 1031 1031 - ftp-client-conduit 1032 1032 - FTPLine ··· 1065 1065 - gelatin-gl 1066 1066 - gelatin-sdl2 1067 1067 - gelatin-shaders 1068 - - gemini-router 1069 - - gemini-textboard 1070 1068 - Genbank 1071 1069 - gencheck 1072 1070 - Gene-CluEDO ··· 1085 1083 - geodetic 1086 1084 - geolite-csv 1087 1085 - getemx 1086 + - ghc-debugger 1088 1087 - ghc-dump-util 1089 1088 - ghc-experimental 1090 1089 - ghc-imported-from ··· 1377 1376 - haskoon 1378 1377 - haskoon-httpspec 1379 1378 - haskoon-salvia 1380 - - haskore-realtime 1381 1379 - haskore-supercollider 1382 1380 - haskore-synthesizer 1383 1381 - hasktorch-ffi-thc ··· 1612 1610 - hs-functors 1613 1611 - hs-gen-iface 1614 1612 - hs-ix 1615 - - hs-pkpass 1616 1613 - hs-profunctors 1617 1614 - hs-sdl-term-emulator 1618 1615 - hs2ats ··· 1636 1633 - hsdev 1637 1634 - hsec-core 1638 1635 - Hsed 1636 + - hsendxmpp 1639 1637 - hsfacter 1640 1638 - HSGEP 1641 1639 - HSHHelpers ··· 1752 1750 - igrf 1753 1751 - ihaskell-inline-r 1754 1752 - ihaskell-rlangqq 1755 - - ihaskell-symtegration 1756 1753 - ihttp 1757 1754 - imap 1758 1755 - imbib ··· 2211 2208 - Michelangelo 2212 2209 - micro-gateway 2213 2210 - microformats2-types 2211 + - MicroHs 2214 2212 - MicrosoftTranslator 2215 2213 - midimory 2216 2214 - mig-server 2217 2215 - mighttpd 2218 - - migrant-hdbc 2219 - - migrant-sqlite-simple 2220 2216 - minecraft-data 2221 2217 - minesweeper 2222 2218 - minilight ··· 2471 2467 - ollama-holes-plugin 2472 2468 - olwrapper 2473 2469 - om-kubernetes 2474 - - one-time-password 2475 2470 - online-csv 2476 2471 - OnRmt 2477 2472 - oops-examples ··· 2761 2756 - queryparser-presto 2762 2757 - queryparser-vertica 2763 2758 - queuelike 2759 + - quick-process 2764 2760 - quickcheck-poly 2765 2761 - quickcheck-regex 2766 2762 - quickcheck-relaxng ··· 2815 2811 - rasa-ext-vim 2816 2812 - rascal 2817 2813 - raw-feldspar 2818 - - rawlock 2819 2814 - razom-text-util 2820 2815 - rbr 2821 2816 - rc 2822 2817 - rdioh 2823 - - rds-data 2824 2818 - react-flux-servant 2825 2819 - reactive 2826 2820 - reactive-banana-sdl ··· 2890 2884 - reserve 2891 2885 - resin 2892 2886 - resource-pool-catchio 2893 - - resource-registry 2894 2887 - resource-simple 2895 2888 - rest-client 2896 2889 - rest-core ··· 3156 3149 - sibe 3157 3150 - sigma-ij 3158 3151 - signals 3159 - - signature 3160 3152 - signify-hs 3161 3153 - silvi 3162 3154 - simgi ··· 3550 3542 - TypeClass 3551 3543 - typed-encoding-encoding 3552 3544 - typed-gui 3545 + - typed-protocols-doc 3553 3546 - typed-streams 3554 3547 - typedflow 3555 3548 - TypeIlluminator ··· 3647 3640 - venzone 3648 3641 - verdict-json 3649 3642 - verifiable-expressions 3650 - - verismith 3651 3643 - versioning-servant 3652 3644 - vertexenum 3653 3645 - vflow-types ··· 3732 3724 - windowslive 3733 3725 - winery 3734 3726 - winio 3735 - - wire-streams 3736 3727 - Wired 3737 3728 - wl-pprint-ansiterm 3738 3729 - wl-pprint-terminfo ··· 3751 3742 - WringTwistree 3752 3743 - write-buffer-stm 3753 3744 - writer-cps-full 3754 - - wsjtx-udp 3755 3745 - wstunnel 3756 3746 - wtk-gtk 3757 3747 - wu-wei ··· 3829 3819 - yesod-continuations 3830 3820 - yesod-examples 3831 3821 - yesod-fay 3832 - - yesod-fb 3833 3822 - yesod-mangopay 3834 3823 - yesod-paypal-rest 3835 3824 - yesod-platform
+11
pkgs/development/haskell-modules/configuration-nix.nix
··· 158 158 159 159 threadscope = enableSeparateBinOutput super.threadscope; 160 160 161 + # Binary may be used separately for e.g. editor integrations 162 + cabal-cargs = enableSeparateBinOutput super.cabal-cargs; 163 + 161 164 # Use the default version of mysql to build this package (which is actually mariadb). 162 165 # test phase requires networking 163 166 mysql = dontCheck super.mysql; ··· 598 601 pkgs.libjpeg 599 602 ]; 600 603 }) super.fltkhs; 604 + 605 + # Select dependency discovery method and provide said dependency 606 + jpeg-turbo = enableCabalFlag "pkgconfig" ( 607 + addPkgconfigDepends [ pkgs.libjpeg_turbo ] super.jpeg-turbo 608 + ); 601 609 602 610 # https://github.com/skogsbaer/hscurses/pull/26 603 611 hscurses = addExtraLibrary pkgs.ncurses super.hscurses; ··· 1435 1443 fourmolu 1436 1444 fourmolu_0_14_0_0 1437 1445 fourmolu_0_16_0_0 1446 + fourmolu_0_18_0_0 1438 1447 ; 1439 1448 1440 1449 # Test suite needs to execute 'disco' binary ··· 1667 1676 (addBuildDepend pkgs.lerc) 1668 1677 (overrideCabal { __onlyPropagateKnownPkgConfigModules = true; }) 1669 1678 ]; 1679 + 1680 + jsaddle-warp = addTestToolDepends [ pkgs.nodejs ] super.jsaddle-warp; 1670 1681 1671 1682 # Makes the mpi-hs package respect the choice of mpi implementation in Nixpkgs. 1672 1683 # Also adds required test dependencies for checks to pass
+4 -1
pkgs/development/haskell-modules/generic-builder.nix
··· 82 82 profilingDetail ? "exported-functions", 83 83 # TODO enable shared libs for cross-compiling 84 84 enableSharedExecutables ? false, 85 - enableSharedLibraries ? !stdenv.hostPlatform.isStatic && (ghc.enableShared or false), 85 + enableSharedLibraries ? 86 + !stdenv.hostPlatform.isStatic 87 + && (ghc.enableShared or false) 88 + && !stdenv.hostPlatform.useAndroidPrebuilt, 86 89 enableDeadCodeElimination ? (!stdenv.hostPlatform.isDarwin), # TODO: use -dead_strip for darwin 87 90 # Disabling this for ghcjs prevents this crash: https://gitlab.haskell.org/ghc/ghc/-/issues/23235 88 91 enableStaticLibraries ?
+4987 -3049
pkgs/development/haskell-modules/hackage-packages.nix
··· 1533 1533 pname = "Agda"; 1534 1534 version = "2.7.0.1"; 1535 1535 sha256 = "13pn0mbxyfy04fcdl68l2m36b40hwk8iwpkqdfad3xsf9l5ddxil"; 1536 - revision = "2"; 1537 - editedCabalFile = "1v1nfzn3dxvdzrc7310jl29vf4yp40hhnkkbw6d9y8n14grn7lrp"; 1536 + revision = "3"; 1537 + editedCabalFile = "0vmsy5hjivysiqkzk65ca1y8ivbzly5z55zi12bgsmj7jqrd8vrf"; 1538 1538 isLibrary = true; 1539 1539 isExecutable = true; 1540 1540 enableSeparateDataOutput = true; ··· 20460 20460 pname = "HStringTemplate"; 20461 20461 version = "0.8.8"; 20462 20462 sha256 = "1n8ci0kzjcgnqh4dfpqwlh7mnlzyiqiqc6hc0zr65p0balbg8zbi"; 20463 - revision = "8"; 20464 - editedCabalFile = "12mlncv6xfn68m28m3jc8bq9yipc7y38rly49y9srl8ml6yi8a49"; 20463 + revision = "9"; 20464 + editedCabalFile = "1pfn0g6zchygdp3y2laj67ni81iyq57kwj7wpf5z4g0dfg286abp"; 20465 20465 libraryHaskellDepends = [ 20466 20466 array 20467 20467 base ··· 20676 20676 pname = "HTTP"; 20677 20677 version = "4000.4.1"; 20678 20678 sha256 = "0lyl5lpkk51xn3dfndh8ksgvwcdsviyigmsnp3d28lbpxkpxhcfz"; 20679 - revision = "5"; 20680 - editedCabalFile = "1jqdhmg4rlpvbx77v8108pdjkrcbpxapm1rqkqqlgdyjs8xs1bbm"; 20679 + revision = "6"; 20680 + editedCabalFile = "0piw36hhsjndc9rmcahscrawfk38iapgz2qwfl13n85wnfhwcdmd"; 20681 20681 libraryHaskellDepends = [ 20682 20682 array 20683 20683 base ··· 25753 25753 }: 25754 25754 mkDerivation { 25755 25755 pname = "JuicyCairo"; 25756 - version = "0.1.0.0"; 25757 - sha256 = "06vw57wf73cwrcg7ycbqhgiz7zpb58pvzvgr2widdv75d9iq4nkk"; 25756 + version = "0.1.0.1"; 25757 + sha256 = "1qfyj46vyb6knll8dclfbh6kvi68lmfpdvk0qgh5i28rl2qihwq8"; 25758 25758 libraryHaskellDepends = [ 25759 25759 base 25760 25760 cairo-image ··· 25977 25977 JuicyPixels 25978 25978 ]; 25979 25979 description = "Efficiently scale, crop, flip images with JuicyPixels"; 25980 + license = lib.licenses.bsd3; 25981 + } 25982 + ) { }; 25983 + 25984 + "JuicyPixels-jpeg-turbo" = callPackage ( 25985 + { 25986 + mkDerivation, 25987 + base, 25988 + bytestring, 25989 + jpeg-turbo, 25990 + JuicyPixels, 25991 + tasty, 25992 + tasty-discover, 25993 + tasty-hunit, 25994 + vector, 25995 + }: 25996 + mkDerivation { 25997 + pname = "JuicyPixels-jpeg-turbo"; 25998 + version = "0.1.0.0"; 25999 + sha256 = "0q0w1a8nigdhvqi7i9bkrllaivc24rsa639q03hmcrjkr8g112d0"; 26000 + libraryHaskellDepends = [ 26001 + base 26002 + bytestring 26003 + jpeg-turbo 26004 + JuicyPixels 26005 + vector 26006 + ]; 26007 + testHaskellDepends = [ 26008 + base 26009 + bytestring 26010 + jpeg-turbo 26011 + JuicyPixels 26012 + tasty 26013 + tasty-discover 26014 + tasty-hunit 26015 + ]; 26016 + testToolDepends = [ tasty-discover ]; 26017 + description = "JuicyPixels wrappers for libjpeg-turbo"; 25980 26018 license = lib.licenses.bsd3; 25981 26019 } 25982 26020 ) { }; ··· 29646 29684 "MicroHs" = callPackage ( 29647 29685 { 29648 29686 mkDerivation, 29687 + array, 29649 29688 base, 29689 + bytestring, 29650 29690 deepseq, 29651 29691 directory, 29652 29692 filepath, 29693 + ghc-internal, 29653 29694 ghc-prim, 29654 29695 haskeline, 29655 29696 process, ··· 29658 29699 }: 29659 29700 mkDerivation { 29660 29701 pname = "MicroHs"; 29661 - version = "0.11.4.0"; 29662 - sha256 = "1whrxvr1nzh5vl7k540gs9abqghh64kqlnfffw0cabl4hsnw4vw2"; 29702 + version = "0.12.6.1"; 29703 + sha256 = "145fk10clh4mmfd58212kr1b56fr4j19vrlrq6d4jdv4zrvk5iwl"; 29663 29704 isLibrary = false; 29664 29705 isExecutable = true; 29665 29706 enableSeparateDataOutput = true; 29666 29707 executableHaskellDepends = [ 29708 + array 29667 29709 base 29710 + bytestring 29668 29711 deepseq 29669 29712 directory 29670 29713 filepath 29714 + ghc-internal 29671 29715 ghc-prim 29672 29716 haskeline 29673 29717 process ··· 29676 29720 ]; 29677 29721 description = "A small compiler for Haskell"; 29678 29722 license = lib.licenses.asl20; 29723 + hydraPlatforms = lib.platforms.none; 29679 29724 mainProgram = "mhs"; 29680 29725 } 29681 29726 ) { }; ··· 31676 31721 } 31677 31722 ) { }; 31678 31723 31724 + "NanoID_3_4_1" = callPackage ( 31725 + { 31726 + mkDerivation, 31727 + aeson, 31728 + base, 31729 + bytestring, 31730 + bytestring-encodings, 31731 + cereal, 31732 + extra, 31733 + mwc-random, 31734 + optparse-applicative, 31735 + text, 31736 + }: 31737 + mkDerivation { 31738 + pname = "NanoID"; 31739 + version = "3.4.1"; 31740 + sha256 = "1rrz4wmhba372fg9w8rg6fgynwqmy5dhyz5i74xab5mbjgv169rs"; 31741 + isLibrary = true; 31742 + isExecutable = true; 31743 + libraryHaskellDepends = [ 31744 + aeson 31745 + base 31746 + bytestring 31747 + cereal 31748 + extra 31749 + mwc-random 31750 + text 31751 + ]; 31752 + executableHaskellDepends = [ 31753 + base 31754 + bytestring 31755 + bytestring-encodings 31756 + mwc-random 31757 + optparse-applicative 31758 + ]; 31759 + description = "NanoID generator"; 31760 + license = lib.licenses.bsd3; 31761 + hydraPlatforms = lib.platforms.none; 31762 + mainProgram = "nanoid"; 31763 + } 31764 + ) { }; 31765 + 31679 31766 "NanoProlog" = callPackage ( 31680 31767 { 31681 31768 mkDerivation, ··· 34884 34971 }: 34885 34972 mkDerivation { 34886 34973 pname = "PenroseKiteDart"; 34887 - version = "1.2.1"; 34888 - sha256 = "0dzp261z231j0vwl727qa8vgzbi8dgc9vr462wlwdpzs8a18jdxf"; 34974 + version = "1.3"; 34975 + sha256 = "0yjfc7zahrf4h02xhlbhzh0r8nzns5v1a2rp2sg3gi073v59gpps"; 34889 34976 libraryHaskellDepends = [ 34890 34977 base 34891 34978 containers ··· 46622 46709 { mkDerivation }: 46623 46710 mkDerivation { 46624 46711 pname = "Win32"; 46625 - version = "2.14.1.0"; 46626 - sha256 = "00sqx9vpkp56nblks3fq7v4bn6lig3cp4w504wjfz03dgwhh7xwy"; 46712 + version = "2.14.2.0"; 46713 + sha256 = "0qmm44py2r1z5mj12vr33s01kci5hmh479pr6v8ljqgm2imlfr4j"; 46627 46714 description = "A binding to Windows Win32 API"; 46628 46715 license = lib.licenses.bsd3; 46629 46716 platforms = lib.platforms.windows; ··· 47342 47429 pname = "X11"; 47343 47430 version = "1.10.3"; 47344 47431 sha256 = "0hnj2q310a6s0h479hq8jsmywymvxdjxg13zw46mmdndynwd2jnq"; 47432 + revision = "1"; 47433 + editedCabalFile = "005g8q56bxc2w0cf2xgydqfs1r07bf17syv5smffvfx36h8gw78d"; 47345 47434 libraryHaskellDepends = [ 47346 47435 base 47347 47436 data-default-class ··· 49274 49363 }: 49275 49364 mkDerivation { 49276 49365 pname = "ac-library-hs"; 49277 - version = "1.4.0.0"; 49278 - sha256 = "0ygk977hw4967ravh5wbsfdaasr9wdad7z3c4d0ahfi5p4pvpdyh"; 49366 + version = "1.5.0.0"; 49367 + sha256 = "15jvxwsx50qcv58wx4a2m4f1h5ic476cnb78n757shyfm0asn9ag"; 49279 49368 isLibrary = true; 49280 49369 isExecutable = true; 49281 49370 libraryHaskellDepends = [ ··· 52650 52739 ]; 52651 52740 description = "Convert adblock config files to privoxy format"; 52652 52741 license = lib.licenses.gpl3Only; 52653 - hydraPlatforms = lib.platforms.none; 52654 52742 mainProgram = "adblock2privoxy"; 52655 - broken = true; 52656 52743 } 52657 52744 ) { }; 52658 52745 ··· 56383 56470 }: 56384 56471 mkDerivation { 56385 56472 pname = "aftovolio"; 56386 - version = "0.7.1.0"; 56387 - sha256 = "1yzjgiw9g7rh480s47f8q2lfxhwh76f0nsm2ch15av9vnpp4yad6"; 56473 + version = "0.8.0.0"; 56474 + sha256 = "0zs12c4ajqjszmxawh4adn1wwad3ix5pwmfybmbs98xwjvmbw9ni"; 56388 56475 isLibrary = true; 56389 56476 isExecutable = true; 56390 56477 libraryHaskellDepends = [ ··· 59360 59447 pname = "align-audio"; 59361 59448 version = "0.0.0.1"; 59362 59449 sha256 = "1r1660igj6bmzhccw30vj0wsz7jjkd5k0vbr4nrcbpcwkxllshnb"; 59363 - revision = "1"; 59364 - editedCabalFile = "1cqxzanhz71lgivffxddq95ay0vaxfpjl3b0zpzbcw3filfkqihy"; 59450 + revision = "2"; 59451 + editedCabalFile = "15hqn6q6991qp60pvykw3ryrcyqz94vhwcj1y28sxdpn5ga8mrl9"; 59365 59452 isLibrary = false; 59366 59453 isExecutable = true; 59367 59454 executableHaskellDepends = [ ··· 60096 60183 pname = "alsa-pcm"; 60097 60184 version = "0.6.1.1"; 60098 60185 sha256 = "1mllr9nbm3qb837zgvd6mrpr6f8i272wflv0a45rrpsq50zgcj33"; 60099 - revision = "1"; 60100 - editedCabalFile = "1bq0rmawwn7xaqny6gvp0qh0pggqcxr9b64346fm4a8fsq71a6wi"; 60186 + revision = "2"; 60187 + editedCabalFile = "0mnzlggfhs8vlznbmcchp2qlzijh6vl0hrvl3919vzk1zqw75gzp"; 60101 60188 isLibrary = true; 60102 60189 isExecutable = true; 60103 60190 libraryHaskellDepends = [ ··· 72111 72198 ]; 72112 72199 description = "Provides conduits to upload data to S3 using the Multipart API"; 72113 72200 license = lib.licenses.bsd3; 72114 - hydraPlatforms = lib.platforms.none; 72115 - broken = true; 72116 72201 } 72117 72202 ) { }; 72118 72203 ··· 75173 75258 amqp, 75174 75259 base, 75175 75260 bytestring, 75261 + data-default, 75176 75262 exceptions, 75177 75263 monad-loops, 75178 75264 mtl, ··· 75181 75267 }: 75182 75268 mkDerivation { 75183 75269 pname = "amqp-worker"; 75184 - version = "2.0.0"; 75185 - sha256 = "0jnyrd7xmk66qi5kkmjc8r57zck064yfkrmgddnw288qzcq5051d"; 75270 + version = "2.0.1"; 75271 + sha256 = "12pj1as0j0rm3ps0qqgp9zzrm2sdh17402yk2ig71d11ymk3gla7"; 75186 75272 isLibrary = true; 75187 75273 isExecutable = true; 75188 75274 libraryHaskellDepends = [ ··· 75190 75276 amqp 75191 75277 base 75192 75278 bytestring 75279 + data-default 75193 75280 exceptions 75194 75281 monad-loops 75195 75282 mtl ··· 75201 75288 amqp 75202 75289 base 75203 75290 bytestring 75291 + data-default 75204 75292 exceptions 75205 75293 monad-loops 75206 75294 mtl ··· 75212 75300 amqp 75213 75301 base 75214 75302 bytestring 75303 + data-default 75215 75304 exceptions 75216 75305 monad-loops 75217 75306 mtl ··· 75270 75359 }: 75271 75360 mkDerivation { 75272 75361 pname = "anagrep"; 75273 - version = "0.1.0.0"; 75274 - sha256 = "1pqp3q8pr2j0v1ra83glfbbclq6yd6vns0q9q8i9r4kd7lrd2vrm"; 75362 + version = "0.1.0.1"; 75363 + sha256 = "0dzwa681si9j1xq4rcwpsnzg10r76gll2lxl62ll5bsy8309ykgc"; 75275 75364 isLibrary = true; 75276 75365 isExecutable = true; 75277 75366 libraryHaskellDepends = [ ··· 75302 75391 ]; 75303 75392 description = "Find strings with permutations (anagrams) that match a regular expression"; 75304 75393 license = lib.licenses.bsd3; 75305 - hydraPlatforms = lib.platforms.none; 75306 75394 mainProgram = "anagrep"; 75307 - broken = true; 75308 75395 } 75309 75396 ) { }; 75310 75397 ··· 78044 78131 }: 78045 78132 mkDerivation { 78046 78133 pname = "aoc"; 78047 - version = "0.1.0.1"; 78048 - sha256 = "1rw92ndc2mqlxg9jdpf9k62mmcgq383zx5y34x9qhgddnqav1wwq"; 78134 + version = "0.1.0.2"; 78135 + sha256 = "0x5lpirk74zf4283gpvmw71dv8mgil80l1awv42f8sfxg5nx805g"; 78049 78136 libraryHaskellDepends = [ 78050 78137 base 78051 78138 containers ··· 78055 78142 ]; 78056 78143 description = "Utility functions commonly used while solving Advent of Code puzzles"; 78057 78144 license = lib.licenses.bsd3; 78058 - hydraPlatforms = lib.platforms.none; 78059 - broken = true; 78060 78145 } 78061 78146 ) { }; 78062 78147 ··· 78481 78566 }: 78482 78567 mkDerivation { 78483 78568 pname = "apecs-stm"; 78484 - version = "0.2"; 78485 - sha256 = "03r20w5q6c8z4cv8z60v66hd9w831g3qsa6n5m96mdwi6vjxh1nl"; 78569 + version = "0.1.5"; 78570 + sha256 = "10zfmc1zgmw5fkrrcs0mnsb2h44b0zfn2y7w1ld47skvmz580dxp"; 78571 + revision = "1"; 78572 + editedCabalFile = "01rhwqs69bx09p2nqp9c01jhcqnfdfiisw6kck9gjq0h68j2rdib"; 78486 78573 libraryHaskellDepends = [ 78487 78574 apecs 78488 78575 base ··· 81045 81132 pname = "apportionment"; 81046 81133 version = "0.0.0.4"; 81047 81134 sha256 = "12b4jlh3k3da1w5lw8z83qgvn0ys85xwvdqylm5kwfi2i1i72256"; 81048 - revision = "1"; 81049 - editedCabalFile = "051cznvkni4gl0715q9mxi07p39xq3vzlnzmaazrxvh74nnzlcqf"; 81135 + revision = "2"; 81136 + editedCabalFile = "1gzq435d00362qfywy8x2lf52rizwgz2ka2nw3kij3mr47v9na7a"; 81050 81137 libraryHaskellDepends = [ 81051 81138 base 81052 81139 containers ··· 84540 84627 pname = "ascii-char"; 84541 84628 version = "1.0.1.0"; 84542 84629 sha256 = "1fls3yw3gs36hwqp32pn7mfibkspx5a80k32wybzc3hfp4qyymlv"; 84543 - revision = "2"; 84544 - editedCabalFile = "1x0ci7j3bdlrrza78n53xw4y1dl4py3gqrym0lb6l9w5n7l138gs"; 84630 + revision = "3"; 84631 + editedCabalFile = "1csxiyqipf38pkcnbr63yv2zm8399mvdmj4qkvh2s3b465nrd7wh"; 84545 84632 libraryHaskellDepends = [ 84546 84633 base 84547 84634 hashable ··· 87476 87563 } 87477 87564 ) { }; 87478 87565 87566 + "atomic-css" = callPackage ( 87567 + { 87568 + mkDerivation, 87569 + base, 87570 + bytestring, 87571 + casing, 87572 + containers, 87573 + effectful-core, 87574 + file-embed, 87575 + html-entities, 87576 + http-types, 87577 + skeletest, 87578 + text, 87579 + }: 87580 + mkDerivation { 87581 + pname = "atomic-css"; 87582 + version = "0.1.0"; 87583 + sha256 = "088j3fmzvwrwrc4fk851788fw696aw972bi73p7jqrpj3idvh9lf"; 87584 + libraryHaskellDepends = [ 87585 + base 87586 + bytestring 87587 + casing 87588 + containers 87589 + effectful-core 87590 + file-embed 87591 + html-entities 87592 + http-types 87593 + text 87594 + ]; 87595 + testHaskellDepends = [ 87596 + base 87597 + bytestring 87598 + casing 87599 + containers 87600 + effectful-core 87601 + file-embed 87602 + html-entities 87603 + http-types 87604 + skeletest 87605 + text 87606 + ]; 87607 + description = "Type-safe, composable CSS utility functions. Inspired by Tailwindcss and Elm-UI"; 87608 + license = lib.licenses.bsd3; 87609 + hydraPlatforms = lib.platforms.none; 87610 + } 87611 + ) { }; 87612 + 87479 87613 "atomic-file-ops" = callPackage ( 87480 87614 { 87481 87615 mkDerivation, ··· 88843 88977 } 88844 88978 ) { }; 88845 88979 88980 + "attoparsec-isotropic" = callPackage ( 88981 + { 88982 + mkDerivation, 88983 + array, 88984 + base, 88985 + bytestring, 88986 + case-insensitive, 88987 + containers, 88988 + deepseq, 88989 + directory, 88990 + filepath, 88991 + ghc-prim, 88992 + haddock-use-refs, 88993 + http-types, 88994 + parsec, 88995 + QuickCheck, 88996 + quickcheck-unicode, 88997 + scientific, 88998 + tagged, 88999 + tasty, 89000 + tasty-bench, 89001 + tasty-quickcheck, 89002 + text, 89003 + trace-embrace, 89004 + transformers, 89005 + unordered-containers, 89006 + vector, 89007 + }: 89008 + mkDerivation { 89009 + pname = "attoparsec-isotropic"; 89010 + version = "0.14.4"; 89011 + sha256 = "17rgqqkshn7pdyk54ac4vc3xs4p2kqh3mbd0ppsy7shyry7c1ahs"; 89012 + libraryHaskellDepends = [ 89013 + array 89014 + base 89015 + bytestring 89016 + containers 89017 + deepseq 89018 + ghc-prim 89019 + haddock-use-refs 89020 + scientific 89021 + tagged 89022 + text 89023 + trace-embrace 89024 + transformers 89025 + ]; 89026 + testHaskellDepends = [ 89027 + array 89028 + base 89029 + bytestring 89030 + deepseq 89031 + http-types 89032 + QuickCheck 89033 + quickcheck-unicode 89034 + scientific 89035 + tasty 89036 + tasty-bench 89037 + tasty-quickcheck 89038 + text 89039 + trace-embrace 89040 + transformers 89041 + vector 89042 + ]; 89043 + benchmarkHaskellDepends = [ 89044 + array 89045 + base 89046 + bytestring 89047 + case-insensitive 89048 + containers 89049 + deepseq 89050 + directory 89051 + filepath 89052 + ghc-prim 89053 + http-types 89054 + parsec 89055 + scientific 89056 + tasty-bench 89057 + text 89058 + transformers 89059 + unordered-containers 89060 + vector 89061 + ]; 89062 + doHaddock = false; 89063 + description = "right-to-left parser backward compatible with attoparsec"; 89064 + license = lib.licenses.bsd3; 89065 + hydraPlatforms = lib.platforms.none; 89066 + } 89067 + ) { }; 89068 + 88846 89069 "attoparsec-iteratee" = callPackage ( 88847 89070 { 88848 89071 mkDerivation, ··· 90250 90473 }: 90251 90474 mkDerivation { 90252 90475 pname = "autoexporter"; 90253 - version = "2.0.0.13"; 90254 - sha256 = "1ws7jp78h3w135w09zx9pmd23kbhfqb2k4mrhpwj661d55ppzsph"; 90476 + version = "2.0.0.15"; 90477 + sha256 = "0jx5vih8fjfy4xamiw38z9ycq27fmqdx0yjidbqgfc3js5rhhcki"; 90255 90478 isLibrary = true; 90256 90479 isExecutable = true; 90257 90480 libraryHaskellDepends = [ ··· 96915 97138 pname = "base16"; 96916 97139 version = "1.0"; 96917 97140 sha256 = "1plwc4yrkvd5j6y09fjvyzhr05mzhzwz6z41fyb60y0bj5j66dl6"; 96918 - revision = "2"; 96919 - editedCabalFile = "1dcb8m73xj2dfb8xbz731l91nm2jz532v971rsfm0kkid5ap9bvl"; 97141 + revision = "3"; 97142 + editedCabalFile = "16c3jahmfzbb7i8grimxkb38ygga27vaz3zvc6jmc63sg514p1ln"; 96920 97143 libraryHaskellDepends = [ 96921 97144 base 96922 97145 bytestring ··· 97043 97266 pname = "base32"; 97044 97267 version = "0.4"; 97045 97268 sha256 = "1m08m51d49lfs5rfc5kjj0g19xq53c2ldngcykld6a4ma0fqdrws"; 97046 - revision = "1"; 97047 - editedCabalFile = "080i61y2mzahrkvj27llybgc4g0kwf53j552y8g5pcpl45dshgvh"; 97269 + revision = "2"; 97270 + editedCabalFile = "0a12j7rgk8niaqn7s40rlxl5ipsp1cpqpq4nkgraws7wdm77pfyd"; 97048 97271 libraryHaskellDepends = [ 97049 97272 base 97050 97273 bytestring ··· 98672 98895 pname = "battleship-combinatorics"; 98673 98896 version = "0.0.1"; 98674 98897 sha256 = "0pr1vcq69ndkln5jd6kxd0gn8jvc8n7aiqanxsrqnjpx4kkixph4"; 98675 - revision = "2"; 98676 - editedCabalFile = "0z2zqmdv5icamkfhpjnjnf88r21151k3pcqij6x0885m8s1y840p"; 98898 + revision = "3"; 98899 + editedCabalFile = "1q84kx54d3qq00fckwypzqdxgqi0am4kh88qh21pb4kh4hbalxmz"; 98677 98900 isLibrary = true; 98678 98901 isExecutable = true; 98679 98902 libraryHaskellDepends = [ ··· 99901 100124 } 99902 100125 ) { }; 99903 100126 100127 + "beam-migrate_0_5_3_2" = callPackage ( 100128 + { 100129 + mkDerivation, 100130 + aeson, 100131 + base, 100132 + beam-core, 100133 + bytestring, 100134 + containers, 100135 + deepseq, 100136 + dependent-map, 100137 + dependent-sum, 100138 + free, 100139 + hashable, 100140 + haskell-src-exts, 100141 + microlens, 100142 + mtl, 100143 + parallel, 100144 + pqueue, 100145 + pretty, 100146 + scientific, 100147 + text, 100148 + time, 100149 + unordered-containers, 100150 + uuid-types, 100151 + vector, 100152 + }: 100153 + mkDerivation { 100154 + pname = "beam-migrate"; 100155 + version = "0.5.3.2"; 100156 + sha256 = "05cz2gh9r00dr6knigq9v7zcdmpk2b19z0pg79wimkcxa2fblb5z"; 100157 + libraryHaskellDepends = [ 100158 + aeson 100159 + base 100160 + beam-core 100161 + bytestring 100162 + containers 100163 + deepseq 100164 + dependent-map 100165 + dependent-sum 100166 + free 100167 + hashable 100168 + haskell-src-exts 100169 + microlens 100170 + mtl 100171 + parallel 100172 + pqueue 100173 + pretty 100174 + scientific 100175 + text 100176 + time 100177 + unordered-containers 100178 + uuid-types 100179 + vector 100180 + ]; 100181 + description = "SQL DDL support and migrations support library for Beam"; 100182 + license = lib.licenses.mit; 100183 + hydraPlatforms = lib.platforms.none; 100184 + } 100185 + ) { }; 100186 + 99904 100187 "beam-mysql" = callPackage ( 99905 100188 { 99906 100189 mkDerivation, ··· 100058 100341 } 100059 100342 ) { }; 100060 100343 100344 + "beam-postgres_0_5_4_3" = callPackage ( 100345 + { 100346 + mkDerivation, 100347 + aeson, 100348 + attoparsec, 100349 + base, 100350 + beam-core, 100351 + beam-migrate, 100352 + bytestring, 100353 + case-insensitive, 100354 + conduit, 100355 + free, 100356 + hashable, 100357 + hedgehog, 100358 + lifted-base, 100359 + monad-control, 100360 + mtl, 100361 + network-uri, 100362 + postgresql-libpq, 100363 + postgresql-simple, 100364 + scientific, 100365 + tagged, 100366 + tasty, 100367 + tasty-hunit, 100368 + testcontainers, 100369 + text, 100370 + time, 100371 + transformers-base, 100372 + unordered-containers, 100373 + uuid, 100374 + uuid-types, 100375 + vector, 100376 + }: 100377 + mkDerivation { 100378 + pname = "beam-postgres"; 100379 + version = "0.5.4.3"; 100380 + sha256 = "0v2m4cyq5cnxzwrr93m2v04zkh7fwvy1nwg7dajnpqc09kp70yzr"; 100381 + libraryHaskellDepends = [ 100382 + aeson 100383 + attoparsec 100384 + base 100385 + beam-core 100386 + beam-migrate 100387 + bytestring 100388 + case-insensitive 100389 + conduit 100390 + free 100391 + hashable 100392 + lifted-base 100393 + monad-control 100394 + mtl 100395 + network-uri 100396 + postgresql-libpq 100397 + postgresql-simple 100398 + scientific 100399 + tagged 100400 + text 100401 + time 100402 + transformers-base 100403 + unordered-containers 100404 + uuid-types 100405 + vector 100406 + ]; 100407 + testHaskellDepends = [ 100408 + aeson 100409 + base 100410 + beam-core 100411 + beam-migrate 100412 + bytestring 100413 + hedgehog 100414 + postgresql-simple 100415 + tasty 100416 + tasty-hunit 100417 + testcontainers 100418 + text 100419 + uuid 100420 + vector 100421 + ]; 100422 + description = "Connection layer between beam and postgres"; 100423 + license = lib.licenses.mit; 100424 + hydraPlatforms = lib.platforms.none; 100425 + } 100426 + ) { }; 100427 + 100061 100428 "beam-sqlite" = callPackage ( 100062 100429 { 100063 100430 mkDerivation, ··· 101143 101510 } 101144 101511 ) { }; 101145 101512 101513 + "benign" = callPackage ( 101514 + { 101515 + mkDerivation, 101516 + async, 101517 + base, 101518 + containers, 101519 + deepseq, 101520 + stm, 101521 + transformers, 101522 + }: 101523 + mkDerivation { 101524 + pname = "benign"; 101525 + version = "0.1.0"; 101526 + sha256 = "0fxi5dhjmwj4sswsnps0v51s59cd4pmh7znd56014lwj3fjq0qwd"; 101527 + isLibrary = true; 101528 + isExecutable = true; 101529 + libraryHaskellDepends = [ 101530 + async 101531 + base 101532 + containers 101533 + deepseq 101534 + stm 101535 + transformers 101536 + ]; 101537 + executableHaskellDepends = [ 101538 + async 101539 + base 101540 + containers 101541 + deepseq 101542 + stm 101543 + transformers 101544 + ]; 101545 + description = "A library for benign effects"; 101546 + license = lib.licenses.mit; 101547 + mainProgram = "simple-print"; 101548 + } 101549 + ) { }; 101550 + 101551 + "benign-katip" = callPackage ( 101552 + { 101553 + mkDerivation, 101554 + base, 101555 + benign, 101556 + katip, 101557 + }: 101558 + mkDerivation { 101559 + pname = "benign-katip"; 101560 + version = "0.1.0"; 101561 + sha256 = "1k1mi1kmj1frc10i90sxy1i3y46d76cn6868k37dv6h6m0arj3jk"; 101562 + libraryHaskellDepends = [ 101563 + base 101564 + benign 101565 + katip 101566 + ]; 101567 + description = "A Benign backend for the Katip library"; 101568 + license = lib.licenses.mit; 101569 + } 101570 + ) { }; 101571 + 101572 + "benign-timestats" = callPackage ( 101573 + { 101574 + mkDerivation, 101575 + base, 101576 + benign, 101577 + timestats, 101578 + }: 101579 + mkDerivation { 101580 + pname = "benign-timestats"; 101581 + version = "0.1.0"; 101582 + sha256 = "11yc5p3crb79jinhs0i01q5y5bjjmc7yli0c6ywmjdm1ix2i6fi7"; 101583 + libraryHaskellDepends = [ 101584 + base 101585 + benign 101586 + timestats 101587 + ]; 101588 + description = "A Benign backend for the Timestats library"; 101589 + license = lib.licenses.mit; 101590 + } 101591 + ) { }; 101592 + 101146 101593 "benri-hspec" = callPackage ( 101147 101594 { 101148 101595 mkDerivation, ··· 101418 101865 }: 101419 101866 mkDerivation { 101420 101867 pname = "betacode"; 101421 - version = "0.1.0.1"; 101422 - sha256 = "1l1yg2h7s1sr7cvw7zdl5w0m17sfsd1a7q3lv58ill4q95mhc5ja"; 101868 + version = "0.1.0.3"; 101869 + sha256 = "1fmabhsnly0zmaqx519hfhyr02s31b27lwjn1m5wkpy9jcqgqj6w"; 101423 101870 libraryHaskellDepends = [ 101424 101871 attoparsec 101425 101872 base ··· 103306 103753 pname = "binary-parsers"; 103307 103754 version = "0.2.4.0"; 103308 103755 sha256 = "1jmr9djkp9ndysly8g1najzy38xhjpflri5jkwlyfnd2vk9x74yi"; 103756 + revision = "1"; 103757 + editedCabalFile = "02qc6vlm50l3k5zpz0893kwywr36n3vnjrabgica1iwqrqdvya1x"; 103309 103758 libraryHaskellDepends = [ 103310 103759 base 103311 103760 binary ··· 103352 103801 ]; 103353 103802 description = "Extends binary with parsec/attoparsec style parsing combinators"; 103354 103803 license = lib.licenses.bsd3; 103355 - hydraPlatforms = lib.platforms.none; 103356 - broken = true; 103357 103804 } 103358 103805 ) { }; 103359 103806 ··· 106475 106922 ]; 106476 106923 description = "A small tool that clears cookies (and more)"; 106477 106924 license = lib.licenses.gpl3Only; 106478 - hydraPlatforms = lib.platforms.none; 106479 106925 mainProgram = "bisc"; 106480 106926 } 106481 106927 ) { }; ··· 107693 108139 ]; 107694 108140 description = "Provides consistent low-level types used commonly among Bitcoin implementations"; 107695 108141 license = lib.licenses.mit; 107696 - hydraPlatforms = lib.platforms.none; 107697 108142 } 107698 108143 ) { }; 107699 108144 ··· 109645 110090 }: 109646 110091 mkDerivation { 109647 110092 pname = "blaze-builder"; 109648 - version = "0.4.2.3"; 109649 - sha256 = "0fvh8sfhnkpwbl4l9ysxhsi26jj1mvfkqgh3mfnl4wvb4ds1hab6"; 110093 + version = "0.4.3"; 110094 + sha256 = "1vkzpi48dycxvwxv0rcpzcgn12dqlngmivsszxrmlfixdyznlr02"; 109650 110095 libraryHaskellDepends = [ 109651 110096 base 109652 110097 bytestring ··· 111453 111898 { mkDerivation, bluefin-internal }: 111454 111899 mkDerivation { 111455 111900 pname = "bluefin"; 111456 - version = "0.0.15.0"; 111457 - sha256 = "0spy2zmq1gdw49iqnvn2xqg2ka5vz46afgdbr34wwrwxmj66q4r9"; 111901 + version = "0.0.16.0"; 111902 + sha256 = "12mvcawmm1b2n429lml86jqmnsha74nd6v45gd8sk288h9p4g3ks"; 111458 111903 libraryHaskellDepends = [ bluefin-internal ]; 111459 111904 description = "The Bluefin effect system"; 111460 111905 license = lib.licenses.mit; ··· 111521 111966 } 111522 111967 ) { }; 111523 111968 111969 + "bluefin-internal_0_1_0_0" = callPackage ( 111970 + { 111971 + mkDerivation, 111972 + async, 111973 + base, 111974 + monad-control, 111975 + transformers, 111976 + transformers-base, 111977 + unliftio-core, 111978 + }: 111979 + mkDerivation { 111980 + pname = "bluefin-internal"; 111981 + version = "0.1.0.0"; 111982 + sha256 = "1106fij37sq7xnmb1zrvls94frqs9ard2nggiphmc2lpkcg71whz"; 111983 + libraryHaskellDepends = [ 111984 + async 111985 + base 111986 + monad-control 111987 + transformers 111988 + transformers-base 111989 + unliftio-core 111990 + ]; 111991 + testHaskellDepends = [ base ]; 111992 + description = "The Bluefin effect system, internals"; 111993 + license = lib.licenses.mit; 111994 + hydraPlatforms = lib.platforms.none; 111995 + } 111996 + ) { }; 111997 + 111524 111998 "bluemix-sdk" = callPackage ( 111525 111999 { 111526 112000 mkDerivation, ··· 111567 112041 }: 111568 112042 mkDerivation { 111569 112043 pname = "bluesky-tools"; 111570 - version = "0.6.0.0"; 111571 - sha256 = "10si4bvrzn7jbcxmyrsf2qbnnhha3jpcvin1rx3cxkl77sc9igac"; 112044 + version = "0.6.0.2"; 112045 + sha256 = "0qshnig4f791swn2rf1ssgxi9l04fvf8s0jadbn95nqzxqyyyjv2"; 111572 112046 libraryHaskellDepends = [ 111573 112047 aeson 111574 112048 async ··· 111588 112062 ]; 111589 112063 description = "Tools for interacting with Bluesky / AT Protocol"; 111590 112064 license = lib.licenses.bsd3; 111591 - hydraPlatforms = lib.platforms.none; 111592 - broken = true; 111593 112065 } 111594 112066 ) { }; 111595 112067 ··· 111936 112408 pname = "board-games"; 111937 112409 version = "0.4"; 111938 112410 sha256 = "05lrjgxdg836ik7ry5h9m9diirfc55086winssr9y0g6vbgbifpc"; 111939 - revision = "2"; 111940 - editedCabalFile = "1dqrlqkl3zzccbq62i35acqbrgw9572il35cz3vyipjc98fqhq8c"; 112411 + revision = "3"; 112412 + editedCabalFile = "1wawaq86bfn45hnfb6qv3ng4i8vvps914qhvbgmmx2p5lwmml21g"; 111941 112413 isLibrary = true; 111942 112414 isExecutable = true; 111943 112415 libraryHaskellDepends = [ ··· 115050 115522 } 115051 115523 ) { }; 115052 115524 115053 - "brick_2_8_3" = callPackage ( 115525 + "brick_2_9" = callPackage ( 115054 115526 { 115055 115527 mkDerivation, 115056 115528 base, ··· 115083 115555 }: 115084 115556 mkDerivation { 115085 115557 pname = "brick"; 115086 - version = "2.8.3"; 115087 - sha256 = "0nd62a95dj9lhsyda8lf3wafp21q9v3f43bv3qdfayg159qgq5jl"; 115558 + version = "2.9"; 115559 + sha256 = "1jdhagw5ihp9g5pinmbb1mf3fjcbh4aim9qg9i4b1na9zn07s0f1"; 115088 115560 isLibrary = true; 115089 115561 isExecutable = true; 115090 115562 libraryHaskellDepends = [ ··· 118724 119196 }: 118725 119197 mkDerivation { 118726 119198 pname = "burrito"; 118727 - version = "2.0.1.11"; 118728 - sha256 = "082h0kchglzkqsv32hpzd195vxd24rhlv5s4myb4nndncrzks1yc"; 119199 + version = "2.0.1.13"; 119200 + sha256 = "1bg3nd994xrwpirqn2hsbk831fralal946sac3ljslxjlvxar8v6"; 118729 119201 libraryHaskellDepends = [ 118730 119202 base 118731 119203 bytestring ··· 119042 119514 pname = "butcher"; 119043 119515 version = "1.3.3.2"; 119044 119516 sha256 = "06qgqjc8h7dd786wkcwrxpl6bsd66jzywwcnhm52q0cb9678w3qx"; 119045 - revision = "1"; 119046 - editedCabalFile = "1c9rhsnzdpnxhs3l7yq6fh8p9lq177fmdn23khcl72n5m6xx64wm"; 119517 + revision = "2"; 119518 + editedCabalFile = "12gh1a4d5f4bcd5vg9a24ms0dwa3x9zln0rjh84l8cdim24r012l"; 119047 119519 libraryHaskellDepends = [ 119048 119520 base 119049 119521 bifunctors ··· 119719 120191 pname = "bytebuild"; 119720 120192 version = "0.3.16.3"; 119721 120193 sha256 = "0l88c5c1i704g87zvnpazfmcppg90b5q5cd6q5k75yx4x9vdcc88"; 120194 + revision = "1"; 120195 + editedCabalFile = "0jcqp55d8a2fpimc937a1phd6s20ypk12r2ybm3c0d3120sr9bnd"; 119722 120196 libraryHaskellDepends = [ 119723 120197 base 119724 120198 byteslice ··· 122426 122900 ]; 122427 122901 description = "A command line program for managing the dependency versions in a cabal file"; 122428 122902 license = lib.licenses.bsd3; 122429 - hydraPlatforms = lib.platforms.none; 122430 122903 mainProgram = "cabal-bounds"; 122431 122904 } 122432 122905 ) { }; ··· 122686 123159 ]; 122687 123160 description = "A command line program for extracting compiler arguments from a cabal file"; 122688 123161 license = lib.licenses.bsd3; 122689 - hydraPlatforms = lib.platforms.none; 122690 123162 mainProgram = "cabal-cargs"; 122691 123163 } 122692 123164 ) { }; ··· 123289 123761 pname = "cabal-flatpak"; 123290 123762 version = "0.1.2"; 123291 123763 sha256 = "05ig175b2glxppn5wr05pnncqkp8yhhy1m7ymmc1jk5pmiy3zvzi"; 123764 + revision = "1"; 123765 + editedCabalFile = "0fhwfjrq20zqh64cb0iv2civljacllgy3zqsyjlydmphs95v5hhv"; 123292 123766 isLibrary = false; 123293 123767 isExecutable = true; 123294 123768 executableHaskellDepends = [ ··· 123506 123980 } 123507 123981 ) { }; 123508 123982 123509 - "cabal-gild_1_6_0_0" = callPackage ( 123983 + "cabal-gild_1_6_0_2" = callPackage ( 123510 123984 { 123511 123985 mkDerivation, 123512 123986 base, ··· 123526 124000 }: 123527 124001 mkDerivation { 123528 124002 pname = "cabal-gild"; 123529 - version = "1.6.0.0"; 123530 - sha256 = "09i4s1r5362w4q2ad2scw0d2p2p7l52b7nycxvrc71sb5a1x6zlw"; 124003 + version = "1.6.0.2"; 124004 + sha256 = "166ijl0lixglqpmif2934frdcxz8x6xp1ihfbi1j338mw6l212q2"; 123531 124005 isLibrary = true; 123532 124006 isExecutable = true; 123533 124007 libraryHaskellDepends = [ ··· 124354 124828 ]; 124355 124829 description = "Lenses and traversals for the Cabal library"; 124356 124830 license = lib.licenses.bsd3; 124357 - hydraPlatforms = lib.platforms.none; 124358 - broken = true; 124359 124831 } 124360 124832 ) { }; 124361 124833 ··· 125033 125505 pname = "cabal-sort"; 125034 125506 version = "0.1.2.1"; 125035 125507 sha256 = "0xj55y2cx5h3mmxk4sjjxlvqfzkv2jzhicdjvl3i85y7h28iqf35"; 125508 + revision = "1"; 125509 + editedCabalFile = "17l8rwaxrk3dqcpdw1wmrs5fvic7q72hxdsbq909z0ihk1ba9ws3"; 125036 125510 isLibrary = false; 125037 125511 isExecutable = true; 125038 125512 executableHaskellDepends = [ ··· 125602 126076 }: 125603 126077 mkDerivation { 125604 126078 pname = "cabal2nix"; 125605 - version = "2.20.0"; 125606 - sha256 = "1mf9af4x1jndjlxis05r32fg03naaljc3zvha69n69r9m79vpd9i"; 126079 + version = "2.20.1"; 126080 + sha256 = "0yiqhrmfypf817mgabj1h5hx7nwix2fn46gmvailnry4s6gdwcbj"; 125607 126081 isLibrary = true; 125608 126082 isExecutable = true; 125609 126083 libraryHaskellDepends = [ ··· 126919 127393 }: 126920 127394 mkDerivation { 126921 127395 pname = "cairo-canvas"; 126922 - version = "0.1.0.0"; 126923 - sha256 = "11qi0lnd8wlv2zz44lvd6336a6iz634n2rfk69qsh72vxrb3hd99"; 127396 + version = "0.1.0.1"; 127397 + sha256 = "1cpb6vsgq44k53i3a2a9369x90ii8k9321y9a8bh0cp09l00zlyp"; 126924 127398 isLibrary = true; 126925 127399 isExecutable = true; 126926 127400 libraryHaskellDepends = [ ··· 127587 128061 pname = "calendar-recycling"; 127588 128062 version = "0.0.0.1"; 127589 128063 sha256 = "0afmnii65axpqk3x50wj1d17942m1kyhwka3bn78ylxy9z7rrlwc"; 127590 - revision = "1"; 127591 - editedCabalFile = "0dp0gylbwsrrszg5nw7x38xhilmn0vgn79zl9bam024nb528x7m1"; 128064 + revision = "2"; 128065 + editedCabalFile = "0marcj19hh3fap328dmyqmhpcj3f9jx696whhrd4spqr17fpm57a"; 127592 128066 isLibrary = false; 127593 128067 isExecutable = true; 127594 128068 executableHaskellDepends = [ ··· 130929 131403 }: 130930 131404 mkDerivation { 130931 131405 pname = "casr-logbook"; 130932 - version = "0.7.0"; 130933 - sha256 = "1l887hfswdaydzqzz2jd9jgmzb8gqi11bwj1kmzlxfynznr6ckvl"; 131406 + version = "0.7.2"; 131407 + sha256 = "0b9b391xs10p4h54s47p9xzz544h2hk48pvg7z0rz7q0gicwnmmg"; 130934 131408 libraryHaskellDepends = [ 130935 131409 attoparsec 130936 131410 base ··· 134273 134747 }: 134274 134748 mkDerivation { 134275 134749 pname = "cfn-flip"; 134276 - version = "0.1.0.3"; 134277 - sha256 = "18nfqbc0iw5zvg9krrm8wyi6x34qxf7arp4jzf1l8qabds5s5371"; 134278 - revision = "1"; 134279 - editedCabalFile = "0816bw34b174wpxjw99lz8z8qi2l5w00dppb7kysjdbwh8a3gws0"; 134750 + version = "0.1.0.6"; 134751 + sha256 = "0g5cprps42wj9755fr0g98w8m6cv45css541bxjlb2h0lc0davnw"; 134280 134752 libraryHaskellDepends = [ 134281 134753 aeson 134282 134754 base ··· 138241 138713 pname = "chronos"; 138242 138714 version = "1.1.6.2"; 138243 138715 sha256 = "08y8s9mwb69kisi0yhng6plvasy6jnj25i4ar8k2cq3vsf6bgx73"; 138716 + revision = "1"; 138717 + editedCabalFile = "04991mhi13b95iy665s59r4z9qsh68wykkgch5dqlnlm1dd6fzdw"; 138244 138718 libraryHaskellDepends = [ 138245 138719 aeson 138246 138720 attoparsec ··· 139909 140383 } 139910 140384 ) { }; 139911 140385 139912 - "citeproc_0_8_1_3" = callPackage ( 140386 + "citeproc_0_9_0_1" = callPackage ( 139913 140387 { 139914 140388 mkDerivation, 139915 140389 aeson, ··· 139938 140412 }: 139939 140413 mkDerivation { 139940 140414 pname = "citeproc"; 139941 - version = "0.8.1.3"; 139942 - sha256 = "0gn2q7vnz5rs993xqi1hm9lzqwfxg26y7qwqc2gzhiqdl94cfkbi"; 140415 + version = "0.9.0.1"; 140416 + sha256 = "1s1gdd7piwssp5b6bwbfyp9sfna052v3rayav7di44yapm5dazmr"; 139943 140417 isLibrary = true; 139944 140418 isExecutable = true; 139945 140419 libraryHaskellDepends = [ ··· 140009 140483 pname = "citeproc-hs"; 140010 140484 version = "0.3.10"; 140011 140485 sha256 = "1fb51v8hv8ik3a8grba2br6cfbj1b3y72lgjh4i75xh09i7xna0r"; 140486 + revision = "1"; 140487 + editedCabalFile = "0zxkvahdjgbhw7wcfm7cgkqm7fkcprng1m1mhqvfb9ljylxk9drw"; 140012 140488 enableSeparateDataOutput = true; 140013 140489 libraryHaskellDepends = [ 140014 140490 base ··· 140905 141381 pname = "clash-ghc"; 140906 141382 version = "1.8.2"; 140907 141383 sha256 = "1pwbpk0f502jx37raq4n64c39jgcrzbya7nzzi6mq7wjm1xmxnsw"; 140908 - revision = "1"; 140909 - editedCabalFile = "02arsg7mjlz8kjy04nsl4s91202ws40f1xccsm5kjs2zisgqcp15"; 141384 + revision = "2"; 141385 + editedCabalFile = "1fr27hfpj31yaqn46k3jzb3kfba182wnqx7b4y7mi7qbm4pqqyr8"; 140910 141386 isLibrary = true; 140911 141387 isExecutable = true; 140912 141388 libraryHaskellDepends = [ ··· 141022 141498 pname = "clash-lib"; 141023 141499 version = "1.8.2"; 141024 141500 sha256 = "02yzqkzaligkvd3830nsgnmnpswydf1a67hrhyhn6gg5crmb2jmg"; 141025 - revision = "1"; 141026 - editedCabalFile = "0ygb5h1y42q1l34zfb218h4vr3sv4bm5lshh04171a0v0ikjkxnx"; 141501 + revision = "2"; 141502 + editedCabalFile = "15h7vb7d0j9g9mnbgyn4sqdnffhvk7igchzyjpvan3h1p3r321wa"; 141027 141503 isLibrary = true; 141028 141504 isExecutable = true; 141029 141505 enableSeparateDataOutput = true; ··· 141256 141732 pname = "clash-prelude"; 141257 141733 version = "1.8.2"; 141258 141734 sha256 = "0pxzb0cj3wp2fjjj6wa2hnbqpvg7rrfza3fqr7m5c7l73yjmi2m3"; 141259 - revision = "2"; 141260 - editedCabalFile = "05xq9523nfip6qzjrjsyy1jj84s86zad3jml5vd720v8aplkjrmc"; 141735 + revision = "3"; 141736 + editedCabalFile = "0b9rd93y48avji9fw6xfxsi3392php6j5qpvmyxjv32m5ljhp83d"; 141261 141737 libraryHaskellDepends = [ 141262 141738 array 141263 141739 arrows ··· 142151 142627 } 142152 142628 ) { }; 142153 142629 142630 + "clay_0_16_0" = callPackage ( 142631 + { 142632 + mkDerivation, 142633 + base, 142634 + hspec, 142635 + hspec-discover, 142636 + mtl, 142637 + text, 142638 + }: 142639 + mkDerivation { 142640 + pname = "clay"; 142641 + version = "0.16.0"; 142642 + sha256 = "0746w54gcpck0sj493bh2wlfdgknxbpwgr7q3b6l9m8djs7j8q41"; 142643 + libraryHaskellDepends = [ 142644 + base 142645 + mtl 142646 + text 142647 + ]; 142648 + testHaskellDepends = [ 142649 + base 142650 + hspec 142651 + hspec-discover 142652 + mtl 142653 + text 142654 + ]; 142655 + testToolDepends = [ hspec-discover ]; 142656 + description = "CSS preprocessor as embedded Haskell"; 142657 + license = lib.licenses.bsd3; 142658 + hydraPlatforms = lib.platforms.none; 142659 + } 142660 + ) { }; 142661 + 142154 142662 "clckwrks" = callPackage ( 142155 142663 { 142156 142664 mkDerivation, ··· 144762 145270 } 144763 145271 ) { }; 144764 145272 145273 + "cloudevents-haskell" = callPackage ( 145274 + { 145275 + mkDerivation, 145276 + aeson, 145277 + autodocodec, 145278 + autodocodec-schema, 145279 + base, 145280 + binary, 145281 + binary-instances, 145282 + bytestring, 145283 + hw-kafka-client, 145284 + iri, 145285 + lens, 145286 + text, 145287 + time, 145288 + }: 145289 + mkDerivation { 145290 + pname = "cloudevents-haskell"; 145291 + version = "0.1.0.0"; 145292 + sha256 = "0447kdavvd39zfz7p3gi232w45170gwkdki2hyvq8ah4ndi44hgn"; 145293 + libraryHaskellDepends = [ 145294 + aeson 145295 + autodocodec 145296 + autodocodec-schema 145297 + base 145298 + binary 145299 + binary-instances 145300 + bytestring 145301 + hw-kafka-client 145302 + iri 145303 + lens 145304 + text 145305 + time 145306 + ]; 145307 + description = "Unofficial Haskell SDK for the CloudEvents specification"; 145308 + license = lib.licenses.bsd3; 145309 + hydraPlatforms = lib.platforms.none; 145310 + } 145311 + ) { }; 145312 + 144765 145313 "cloudfront-signer" = callPackage ( 144766 145314 { 144767 145315 mkDerivation, ··· 147198 147746 } 147199 147747 ) { }; 147200 147748 147201 - "code-conjure_0_6_10" = callPackage ( 147749 + "code-conjure_0_7_4" = callPackage ( 147202 147750 { 147203 147751 mkDerivation, 147204 147752 base, ··· 147209 147757 }: 147210 147758 mkDerivation { 147211 147759 pname = "code-conjure"; 147212 - version = "0.6.10"; 147213 - sha256 = "195xik1h55bl5rjipl2g979jnwh99h223v23di82cwaafmv747bn"; 147760 + version = "0.7.4"; 147761 + sha256 = "19ynxnzwfyspr22dgnrs3h6zb7a64lig59xhfir4m055y1wp6qvx"; 147214 147762 libraryHaskellDepends = [ 147215 147763 base 147216 147764 express ··· 149341 149889 } 149342 149890 ) { }; 149343 149891 149892 + "colorhash" = callPackage ( 149893 + { 149894 + mkDerivation, 149895 + base, 149896 + colour, 149897 + hashable, 149898 + }: 149899 + mkDerivation { 149900 + pname = "colorhash"; 149901 + version = "0.2.0.0"; 149902 + sha256 = "0w0f8dr2lzbna2k26ar6zx9bxih6hm9rj60mbcizyv695vhrdvgn"; 149903 + libraryHaskellDepends = [ 149904 + base 149905 + colour 149906 + hashable 149907 + ]; 149908 + description = "Generate a color for a hashable object"; 149909 + license = lib.licenses.bsd3; 149910 + } 149911 + ) { }; 149912 + 149344 149913 "colorize-haskell" = callPackage ( 149345 149914 { 149346 149915 mkDerivation, ··· 150186 150755 pname = "combinatorial"; 150187 150756 version = "0.1.1"; 150188 150757 sha256 = "0sz5x3776fr736mwsn582ih1pflkirsk6bqygagsg8jq0nh83v5g"; 150189 - revision = "1"; 150190 - editedCabalFile = "1g68vf9yj87qbmbazlasq11wcb1dd9rx83p95f4lqaji1ipzvq1y"; 150758 + revision = "2"; 150759 + editedCabalFile = "0kkzsa6rf7g65zdyyqwfcdzx7sqjfp2rhjc4ck5cw2kyp9dkvcdy"; 150191 150760 libraryHaskellDepends = [ 150192 150761 array 150193 150762 base ··· 150327 150896 pname = "comfort-array"; 150328 150897 version = "0.5.5"; 150329 150898 sha256 = "0jyhlxm64di682i2hwf1f1mw6f7xjwhb1ihnp8dh9vsg93hwik5i"; 150899 + revision = "1"; 150900 + editedCabalFile = "123q7i0zv3cl2218dkb9xcccf7j5kpw0awhgrj05gjhancfcdzcr"; 150330 150901 libraryHaskellDepends = [ 150331 150902 base 150332 150903 bifunctors ··· 150434 151005 pname = "comfort-blas"; 150435 151006 version = "0.0.3.1"; 150436 151007 sha256 = "1l18qx5nh72z4vgdb4zn2xmdzyc6j00c0py0kwh9nncik8cg5j1n"; 151008 + revision = "1"; 151009 + editedCabalFile = "0hyxjj53111dxkpbxh6p3qfjpr01bvi7q1q3fmvamy4w6d3czgw2"; 150437 151010 libraryHaskellDepends = [ 150438 151011 base 150439 151012 blas-ffi ··· 155109 155682 pname = "concurrent-supply"; 155110 155683 version = "0.1.8"; 155111 155684 sha256 = "07zjczcgxwpi8imp0w86vrb78w067b322q5d7zlqla91sbf2gy6c"; 155112 - revision = "2"; 155113 - editedCabalFile = "0ij8vz3vz2675mwapyzwhywnkkx8p67qq6vqs0c0hrj1659midl0"; 155685 + revision = "3"; 155686 + editedCabalFile = "1ybkwijyqp3v7i1idgbwa1mzkq5p75ccm15hfigh2clzvri1z4kg"; 155114 155687 libraryHaskellDepends = [ 155115 155688 base 155116 155689 ghc-prim ··· 155819 156392 }: 155820 156393 mkDerivation { 155821 156394 pname = "conduit-concurrent-map"; 155822 - version = "0.1.3"; 155823 - sha256 = "0mpbklyfqdc1wzx5z4dy2x2y5zi8bb7p83q04csybj5c5f4136yq"; 155824 - libraryHaskellDepends = [ 155825 - base 155826 - conduit 155827 - containers 155828 - mtl 155829 - resourcet 155830 - unliftio 155831 - unliftio-core 155832 - vector 155833 - ]; 155834 - testHaskellDepends = [ 155835 - base 155836 - conduit 155837 - hspec 155838 - HUnit 155839 - QuickCheck 155840 - say 155841 - ]; 155842 - description = "Concurrent, order-preserving mapping Conduit"; 155843 - license = lib.licenses.mit; 155844 - } 155845 - ) { }; 155846 - 155847 - "conduit-concurrent-map_0_1_4" = callPackage ( 155848 - { 155849 - mkDerivation, 155850 - base, 155851 - conduit, 155852 - containers, 155853 - hspec, 155854 - HUnit, 155855 - mtl, 155856 - QuickCheck, 155857 - resourcet, 155858 - say, 155859 - unliftio, 155860 - unliftio-core, 155861 - vector, 155862 - }: 155863 - mkDerivation { 155864 - pname = "conduit-concurrent-map"; 155865 156395 version = "0.1.4"; 155866 156396 sha256 = "1x8iydyjwa1lm3lmv2fc95ny3xdxzqdqk1cckyf6v7ny6lgv7smi"; 155867 156397 libraryHaskellDepends = [ ··· 155884 156414 ]; 155885 156415 description = "Concurrent, order-preserving mapping Conduit"; 155886 156416 license = lib.licenses.mit; 155887 - hydraPlatforms = lib.platforms.none; 155888 156417 } 155889 156418 ) { }; 155890 156419 ··· 161638 162167 } 161639 162168 ) { }; 161640 162169 161641 - "copilot_4_3" = callPackage ( 162170 + "copilot_4_4" = callPackage ( 161642 162171 { 161643 162172 mkDerivation, 161644 162173 base, ··· 161654 162183 }: 161655 162184 mkDerivation { 161656 162185 pname = "copilot"; 161657 - version = "4.3"; 161658 - sha256 = "09015r4fryyc60dzk5pvjpl8vjp9sm6bmykgixshkfrd6788xlad"; 162186 + version = "4.4"; 162187 + sha256 = "1fazwy4wnbf7jvs793kwhpc6hjnxf0ak9fhpnlvmdcwryz35nfbw"; 161659 162188 isLibrary = true; 161660 162189 isExecutable = true; 161661 162190 libraryHaskellDepends = [ ··· 161698 162227 }: 161699 162228 mkDerivation { 161700 162229 pname = "copilot-bluespec"; 161701 - version = "4.3"; 161702 - sha256 = "1ybs2r8jllnb873l9aq2bq79y1spf2lj73i2ckkbiynqj33fzmih"; 162230 + version = "4.4"; 162231 + sha256 = "1iw53mmq7hn8a1zy1i8zhjapfdaccvg1l0xwgpkr53b761srbpni"; 161703 162232 libraryHaskellDepends = [ 161704 162233 base 161705 162234 copilot-core ··· 161784 162313 } 161785 162314 ) { }; 161786 162315 161787 - "copilot-c99_4_3" = callPackage ( 162316 + "copilot-c99_4_4" = callPackage ( 161788 162317 { 161789 162318 mkDerivation, 161790 162319 base, ··· 161806 162335 }: 161807 162336 mkDerivation { 161808 162337 pname = "copilot-c99"; 161809 - version = "4.3"; 161810 - sha256 = "1g7lnspbb0fkd6yhbv69an3q31ibr3a3pgvnsncsdasfbvz06hiy"; 162338 + version = "4.4"; 162339 + sha256 = "0wk3b1m9har25iwd0fg9pzcffk23gz0bf7xmfljr4fxlf16gqz0s"; 161811 162340 libraryHaskellDepends = [ 161812 162341 base 161813 162342 copilot-core ··· 161898 162427 } 161899 162428 ) { }; 161900 162429 161901 - "copilot-core_4_3" = callPackage ( 162430 + "copilot-core_4_4" = callPackage ( 161902 162431 { 161903 162432 mkDerivation, 161904 162433 base, ··· 161910 162439 }: 161911 162440 mkDerivation { 161912 162441 pname = "copilot-core"; 161913 - version = "4.3"; 161914 - sha256 = "0m8ynx430wkh7vgpag6c2ayzcll73zmhj7r9gdss0vgr7w73wki3"; 162442 + version = "4.4"; 162443 + sha256 = "0rdfz1q1g91jxack93lcl2bj1az53m1k8fs25xi6bqbrbb3w77f0"; 161915 162444 libraryHaskellDepends = [ base ]; 161916 162445 testHaskellDepends = [ 161917 162446 base ··· 161998 162527 } 161999 162528 ) { }; 162000 162529 162001 - "copilot-interpreter_4_3" = callPackage ( 162530 + "copilot-interpreter_4_4" = callPackage ( 162002 162531 { 162003 162532 mkDerivation, 162004 162533 base, ··· 162011 162540 }: 162012 162541 mkDerivation { 162013 162542 pname = "copilot-interpreter"; 162014 - version = "4.3"; 162015 - sha256 = "15x06k5l06yfc173934nw5hqs0zhypr805kbkf9i1rvrzwz233k7"; 162543 + version = "4.4"; 162544 + sha256 = "02l48zpj8c51h3hs50j1q1fwglgsn8xdipdz5gha9kghvrkbl7p5"; 162016 162545 libraryHaskellDepends = [ 162017 162546 base 162018 162547 copilot-core ··· 162081 162610 } 162082 162611 ) { }; 162083 162612 162084 - "copilot-language_4_3" = callPackage ( 162613 + "copilot-language_4_4" = callPackage ( 162085 162614 { 162086 162615 mkDerivation, 162087 162616 array, ··· 162101 162630 }: 162102 162631 mkDerivation { 162103 162632 pname = "copilot-language"; 162104 - version = "4.3"; 162105 - sha256 = "1yzqm5kcy8by1smhaac3qw6y5kkbdkiimh41jj0q49n0k64hgs9y"; 162633 + version = "4.4"; 162634 + sha256 = "12jzx9sfzpvrbahha3mydpa5bzg2d5biar4cnn9rwxpw4i7vpnzy"; 162106 162635 libraryHaskellDepends = [ 162107 162636 array 162108 162637 base ··· 162169 162698 } 162170 162699 ) { }; 162171 162700 162172 - "copilot-libraries_4_3" = callPackage ( 162701 + "copilot-libraries_4_4" = callPackage ( 162173 162702 { 162174 162703 mkDerivation, 162175 162704 base, ··· 162185 162714 }: 162186 162715 mkDerivation { 162187 162716 pname = "copilot-libraries"; 162188 - version = "4.3"; 162189 - sha256 = "1yka76zqrxzbdv6ks35n0lhwi4ahcx7wj51cx0cwy9gar4608plm"; 162717 + version = "4.4"; 162718 + sha256 = "0q1znmgjk4hbd6z25avw23la6ckn7117vv9q4kkn4gyjy7q2kpjc"; 162190 162719 libraryHaskellDepends = [ 162191 162720 base 162192 162721 containers ··· 162230 162759 } 162231 162760 ) { }; 162232 162761 162233 - "copilot-prettyprinter_4_3" = callPackage ( 162762 + "copilot-prettyprinter_4_4" = callPackage ( 162234 162763 { 162235 162764 mkDerivation, 162236 162765 base, ··· 162239 162768 }: 162240 162769 mkDerivation { 162241 162770 pname = "copilot-prettyprinter"; 162242 - version = "4.3"; 162243 - sha256 = "0iynrm13cylmlmpzg9bdpx4nhsgl5ckz4ngzila9agfiijzs74f7"; 162771 + version = "4.4"; 162772 + sha256 = "06134bgb2386mfcgqyka2ldwiwxskv6d2lmqqyvdwg21108kn59f"; 162244 162773 libraryHaskellDepends = [ 162245 162774 base 162246 162775 copilot-core ··· 162345 162874 } 162346 162875 ) { }; 162347 162876 162348 - "copilot-theorem_4_3" = callPackage ( 162877 + "copilot-theorem_4_4" = callPackage ( 162349 162878 { 162350 162879 mkDerivation, 162351 162880 base, ··· 162374 162903 }: 162375 162904 mkDerivation { 162376 162905 pname = "copilot-theorem"; 162377 - version = "4.3"; 162378 - sha256 = "19kz53v5kj7z6jy8hxnm8mdy4xybimfrfq3xdbq0ynk8p47v18ry"; 162906 + version = "4.4"; 162907 + sha256 = "0v1b9nn783w9xc4mqq7ns0wn09rkfzl5vhy6x0icsidyp1h9kcdh"; 162379 162908 libraryHaskellDepends = [ 162380 162909 base 162381 162910 bimap ··· 162450 162979 }: 162451 162980 mkDerivation { 162452 162981 pname = "copilot-verifier"; 162453 - version = "4.3"; 162454 - sha256 = "0wxycssvs4qnih1jblypmk8hn1yj9pkhi4l2lamyda70sm7dv624"; 162982 + version = "4.4"; 162983 + sha256 = "02kwvq3h04xq988zgvkhghfz4g00fj3s3bjfsp9962mw4dir3mbf"; 162455 162984 isLibrary = true; 162456 162985 isExecutable = true; 162457 162986 libraryHaskellDepends = [ ··· 164591 165120 pname = "cpphs"; 164592 165121 version = "1.20.9.1"; 164593 165122 sha256 = "17wi7fma2qaqdm1hwgaam3fd140v9bpa8ky0wg708h1pqc5v2nbz"; 164594 - revision = "1"; 164595 - editedCabalFile = "1f8jzs8zdh4wwbcq8fy6qqxkv75ypnvsm4yzw49wpr3b9vpnzlha"; 165123 + revision = "2"; 165124 + editedCabalFile = "0vxav36p0kplp4dpd17i4cfzrsl3r437d840xwv83lf1bqp7mrxc"; 164596 165125 isLibrary = true; 164597 165126 isExecutable = true; 164598 165127 libraryHaskellDepends = [ ··· 164712 165241 }: 164713 165242 mkDerivation { 164714 165243 pname = "cpsa"; 164715 - version = "4.4.5"; 164716 - sha256 = "0ysr77z15ml5r2gb6gxgjbbzgf7y82khwgxd1kpkbxr0gsj3yxn2"; 165244 + version = "4.4.6"; 165245 + sha256 = "02x57fxwxcs16kn8dgr4pxjx0nrvvlwg3sm05hlipbycyaqwncmf"; 164717 165246 isLibrary = false; 164718 165247 isExecutable = true; 164719 165248 enableSeparateDataOutput = true; ··· 170940 171469 }: 170941 171470 mkDerivation { 170942 171471 pname = "csv-conduit"; 170943 - version = "1.0.1.0"; 170944 - sha256 = "0qlw5hhsrfpw972ryp3mr895q77d6p1g2q1z7jl7hf1xz7ba0c1r"; 171472 + version = "1.0.1.1"; 171473 + sha256 = "1jxd6sdqpmkapb1xllqwnw55b70ks4n3ii624a3rr8x25r2bvkjr"; 170945 171474 libraryHaskellDepends = [ 170946 171475 array 170947 171476 attoparsec ··· 173376 173905 pname = "czipwith"; 173377 173906 version = "1.0.1.4"; 173378 173907 sha256 = "0zvi7wmbh09ngbyvavvhn6s3vz1pnps59fl1sq3vih6s03s0zmai"; 173379 - revision = "1"; 173380 - editedCabalFile = "1lijciq9ly8cmv7kjkazi8rz8zhh205f64iv3fsjj4spy2lpkyhx"; 173908 + revision = "2"; 173909 + editedCabalFile = "0s414j814l4v384hgii5zi33s2swn2kqz9761d6vcps6shcc2z3v"; 173381 173910 libraryHaskellDepends = [ 173382 173911 base 173383 173912 template-haskell ··· 174335 174864 async, 174336 174865 base, 174337 174866 bytestring, 174867 + co-log-core, 174338 174868 containers, 174339 174869 hspec, 174340 174870 lifted-base, ··· 174351 174881 }: 174352 174882 mkDerivation { 174353 174883 pname = "dap"; 174354 - version = "0.1.0.0"; 174355 - sha256 = "1iq6vd2s6qz5mmcqfg8a9a4y9i9k4v6ak4n3jl5n5mdqbrli7ipz"; 174356 - revision = "1"; 174357 - editedCabalFile = "1aapq2sv4f5lnzblplfrgxwi6x2hy0jz0h9dxi562lbxylmjvjaz"; 174884 + version = "0.2.0.0"; 174885 + sha256 = "04qv9k6ci2mgw5l39ac6c2kb9d0lby7774zwzr53iqv2xp44hp9l"; 174358 174886 libraryHaskellDepends = [ 174359 174887 aeson 174360 174888 aeson-pretty 174361 174889 base 174362 174890 bytestring 174891 + co-log-core 174363 174892 containers 174364 174893 lifted-base 174365 174894 monad-control ··· 174378 174907 async 174379 174908 base 174380 174909 bytestring 174910 + co-log-core 174381 174911 containers 174382 174912 hspec 174383 174913 lifted-base ··· 175493 176023 pname = "data-accessor"; 175494 176024 version = "0.2.3.1"; 175495 176025 sha256 = "14ap1lxizxkgphl4kg8lr3ny9lblx1k6hm8i9nm7l43yla8cg8q6"; 175496 - revision = "1"; 175497 - editedCabalFile = "1v16s3d1kwlx9vzf6agacr2rfamnhyl7fgd81arznka51v3my2fs"; 176026 + revision = "2"; 176027 + editedCabalFile = "0qzccxgxfiyas435z14k8mkxz10fpyj0vrl856hiw0inv228cn9z"; 175498 176028 libraryHaskellDepends = [ 175499 176029 array 175500 176030 base ··· 176850 177380 } 176851 177381 ) { }; 176852 177382 176853 - "data-effects-core_0_4_2_0" = callPackage ( 177383 + "data-effects-core_0_4_3_0" = callPackage ( 176854 177384 { 176855 177385 mkDerivation, 176856 177386 base, ··· 176866 177396 }: 176867 177397 mkDerivation { 176868 177398 pname = "data-effects-core"; 176869 - version = "0.4.2.0"; 176870 - sha256 = "0m45lvyy4rpl1n0dk7pbpw7hna2i4m5l5s4x8vgs2afp8wdc15ix"; 177399 + version = "0.4.3.0"; 177400 + sha256 = "019r4cf6bx1naqipkkxr5fd4mdq7ss0q8x71rqh9gn2gq6dpd7gl"; 176871 177401 libraryHaskellDepends = [ 176872 177402 base 176873 177403 free ··· 177310 177840 }: 177311 177841 mkDerivation { 177312 177842 pname = "data-findcycle"; 177313 - version = "0.1.1.0"; 177314 - sha256 = "06ix4v13gwxvbyaw89ka97zrbh5y2rmw12gl3lb41k823aaglgdj"; 177843 + version = "0.1.2.0"; 177844 + sha256 = "0j6xpphrghzp8sw8h9nnf9mbsdag421lbyyan86kb8dmr82hndjb"; 177315 177845 libraryHaskellDepends = [ 177316 177846 array 177317 177847 base ··· 177542 178072 pname = "data-functor-logistic"; 177543 178073 version = "0.0"; 177544 178074 sha256 = "0k2r4jpm7sa3hgd6i08sg9xbgjzkgzx44z5ai5zpw32b7pqr9xqm"; 177545 - revision = "2"; 177546 - editedCabalFile = "0477ky1j44cval3f9nnakz946haxs4477rzbl0i3asc4qwkpi2xl"; 178075 + revision = "3"; 178076 + editedCabalFile = "1m2xhx3b80imcrmnw5jvak7rz82g0pym5bjnli6l69mwjfkpfrkl"; 177547 178077 libraryHaskellDepends = [ 177548 178078 base 177549 178079 distributive ··· 182341 182871 ]; 182342 182872 description = "Delay differential equations"; 182343 182873 license = lib.licenses.bsd3; 182874 + hydraPlatforms = lib.platforms.none; 182344 182875 } 182345 182876 ) { }; 182346 182877 ··· 182679 183210 base, 182680 183211 deepseq, 182681 183212 fin, 183213 + QuickCheck, 182682 183214 skew-list, 182683 183215 some, 183216 + tasty, 183217 + tasty-quickcheck, 182684 183218 transformers, 182685 183219 }: 182686 183220 mkDerivation { 182687 183221 pname = "debruijn"; 182688 - version = "0.3"; 182689 - sha256 = "0yww60649wcaz7yjlhli5kijlcminf1h2n4f9za3ca85m20jzzy9"; 182690 - revision = "1"; 182691 - editedCabalFile = "11n3x3pviakx6q0cgnky0y3qgxjc89giq2jvk714b9vwb59rd0zj"; 183222 + version = "0.3.1"; 183223 + sha256 = "07hirkxdk28f6ri0dbyw34q2jqa9w7256yib8vjn24v644l9jsdg"; 182692 183224 libraryHaskellDepends = [ 182693 183225 base 182694 183226 deepseq ··· 182697 183229 some 182698 183230 transformers 182699 183231 ]; 183232 + testHaskellDepends = [ 183233 + base 183234 + QuickCheck 183235 + tasty 183236 + tasty-quickcheck 183237 + ]; 182700 183238 description = "de Bruijn indices and levels"; 182701 183239 license = lib.licenses.bsd3; 182702 183240 hydraPlatforms = lib.platforms.none; ··· 182714 183252 }: 182715 183253 mkDerivation { 182716 183254 pname = "debruijn-safe"; 182717 - version = "0.3"; 182718 - sha256 = "1x95kffjjki304bj37viz6rn74g51cm1ndikdc19zgkxxarraxxp"; 182719 - revision = "1"; 182720 - editedCabalFile = "0hlgml3nxhdc4d3arphhz51d85x6553cy5asjkabnqi8n0iffdpk"; 183255 + version = "0.3.1"; 183256 + sha256 = "1snk5dp4nh0gb98dask1d1nk8rckc8376n9kwi6rfgncya32qn6i"; 182721 183257 libraryHaskellDepends = [ 182722 183258 base 182723 183259 deepseq ··· 184740 185276 }: 184741 185277 mkDerivation { 184742 185278 pname = "delivery-status-notification"; 184743 - version = "0.2.0.0"; 184744 - sha256 = "0vmvgwq9g3kqdmfqs4gg7h1a926jqg7g8n065qvq0b4c4pmn7dy1"; 185279 + version = "0.2.0.2"; 185280 + sha256 = "07pwcil2qw5fzf7arya4a6n2bb68jyqd3lh9rvvp4g5y1dq3x97n"; 184745 185281 libraryHaskellDepends = [ 184746 185282 attoparsec 184747 185283 base ··· 184753 185289 ]; 184754 185290 description = "Parse bounce messages per RFC3464, RFC3463"; 184755 185291 license = lib.licenses.bsd3; 184756 - hydraPlatforms = lib.platforms.none; 184757 - broken = true; 184758 185292 } 184759 185293 ) { }; 184760 185294 ··· 184884 185418 description = "Facilities for storing a Haskell value, using delta types"; 184885 185419 license = lib.licenses.asl20; 184886 185420 hydraPlatforms = lib.platforms.none; 185421 + broken = true; 184887 185422 } 184888 185423 ) { }; 184889 185424 ··· 185539 186074 } 185540 186075 ) { }; 185541 186076 186077 + "dependent-enummap" = callPackage ( 186078 + { 186079 + mkDerivation, 186080 + base, 186081 + containers, 186082 + dependent-sum, 186083 + some, 186084 + }: 186085 + mkDerivation { 186086 + pname = "dependent-enummap"; 186087 + version = "0.1.0.0"; 186088 + sha256 = "1i0p0yipihjm9p6mpag9zw1r8gfl7lwcg35w97gqfy4lbbx2rp4n"; 186089 + libraryHaskellDepends = [ 186090 + base 186091 + containers 186092 + dependent-sum 186093 + some 186094 + ]; 186095 + testHaskellDepends = [ 186096 + base 186097 + dependent-sum 186098 + some 186099 + ]; 186100 + description = "A generalisation of EnumMap to dependent types"; 186101 + license = lib.licenses.bsd3; 186102 + } 186103 + ) { }; 186104 + 185542 186105 "dependent-hashmap" = callPackage ( 185543 186106 { 185544 186107 mkDerivation, ··· 186283 186846 }: 186284 186847 mkDerivation { 186285 186848 pname = "derive-has-field"; 186286 - version = "0.1.0.0"; 186287 - sha256 = "1hc5fgsc0yzidrnhwrlhvmaw062yv1v6vg5wl4l597cd74316mcl"; 186849 + version = "0.1.1.0"; 186850 + sha256 = "17jvz6w3d806zh80dpgiq7lpxa9qjdj06c1h2x4la1cq0gixj9km"; 186288 186851 libraryHaskellDepends = [ 186289 186852 base 186290 186853 template-haskell ··· 189454 190017 }: 189455 190018 mkDerivation { 189456 190019 pname = "dhscanner-ast"; 189457 - version = "1.0.8"; 189458 - sha256 = "0sgjlqrvdfqmma9cf1cs01mmj7gk66i3zwfjb1ywhs7l4kj4avn7"; 190020 + version = "1.0.10"; 190021 + sha256 = "0k4nligcx6k6nbf3jgslhll1vikbzvb8733m812b1yb9j4y2zk2m"; 189459 190022 libraryHaskellDepends = [ 189460 190023 aeson 189461 190024 base ··· 189485 190048 }: 189486 190049 mkDerivation { 189487 190050 pname = "dhscanner-bitcode"; 189488 - version = "1.0.4"; 189489 - sha256 = "08jk89rn2g5aa57wwz7nsc38phdmg9wnkzxfsrk7l68rdbmxfl64"; 190051 + version = "1.0.5"; 190052 + sha256 = "0ik90c1kxbxrv99psrbyyc740qmi3yv6h8hs4pvfdqf45jmjn3hj"; 189490 190053 libraryHaskellDepends = [ 189491 190054 aeson 189492 190055 base ··· 190418 190981 pname = "diagrams-core"; 190419 190982 version = "1.5.1.1"; 190420 190983 sha256 = "168kjikw3x21pjgfy3lmxmrm89g9zlhbypkmzdg5xz9rl7acn7rc"; 190421 - revision = "3"; 190422 - editedCabalFile = "0wgb7rgj6mmmqnakp9qn6519c3jk3m0plkv6gmwrbddy92rs8b2i"; 190984 + revision = "4"; 190985 + editedCabalFile = "0lq4hs7h7ja9x8wz05z21fi9b507r8capxwknmadrxznrh892kky"; 190423 190986 libraryHaskellDepends = [ 190424 190987 adjunctions 190425 190988 base ··· 191027 191590 pname = "diagrams-lib"; 191028 191591 version = "1.5"; 191029 191592 sha256 = "0gp9k6cfc62j6rlfiziig6j5shf05d0vbcvss40rzjk8qi012i11"; 191593 + revision = "1"; 191594 + editedCabalFile = "092pidlcpqxrjqjmpwgiznqkjzz1qwbkxb8526k2gi7n1zy2bw3v"; 191030 191595 libraryHaskellDepends = [ 191031 191596 active 191032 191597 adjunctions ··· 192778 193343 pname = "digestive-functors"; 192779 193344 version = "0.8.4.2"; 192780 193345 sha256 = "0x0mh43rli77vqs9bpqd85w5wwr68qchfl5086nn137358583lrn"; 192781 - revision = "2"; 192782 - editedCabalFile = "1qi4ck718ly1gahlbw28fnc9znrmdxb4415kv6wjwnhlf9sp0np9"; 193346 + revision = "3"; 193347 + editedCabalFile = "0r5vaj2yn96nla750r7hh8ppgbkfhj4r4qb9c9s23dbg62mp8bls"; 192783 193348 libraryHaskellDepends = [ 192784 193349 base 192785 193350 bytestring ··· 195389 195954 pname = "discrimination"; 195390 195955 version = "0.5"; 195391 195956 sha256 = "1qq7fs1dsfqgf4969gksqcp3swcx0wbzdh66a89fv78k6y94g0pc"; 195392 - revision = "4"; 195393 - editedCabalFile = "1m4sv7mdqdm5xx5khbyq0il3dn5isg575vgn1akb283l2jkz4v1g"; 195957 + revision = "5"; 195958 + editedCabalFile = "1pbnj7jzxxrd7s7nqmwmmxhw4pyrwxnsdx7xpw63240jb9f1cg8f"; 195394 195959 libraryHaskellDepends = [ 195395 195960 array 195396 195961 base ··· 198783 199348 }: 198784 199349 mkDerivation { 198785 199350 pname = "dobutokO2"; 198786 - version = "0.45.2.0"; 198787 - sha256 = "19b9nyl2xhl0ha5imz0h7n5szydbvvv9gn4ji7ycb9xazq2h6jjk"; 199351 + version = "0.45.3.0"; 199352 + sha256 = "0cc73lsi8vp08v04ziwszk2wvszr2n3yn39n14f2f1j8jkw175zx"; 198788 199353 isLibrary = true; 198789 199354 isExecutable = true; 198790 199355 libraryHaskellDepends = [ ··· 203719 204284 pname = "dsp"; 203720 204285 version = "0.2.5.2"; 203721 204286 sha256 = "0inar9c0n4x0li9c7krr17qv7zc49162wchhyn6ix7adni8j92z0"; 203722 - revision = "2"; 203723 - editedCabalFile = "1926z07yp9cm7hv10nklcf7kg5310g3i15kjvfamspj0dyai2zix"; 204287 + revision = "3"; 204288 + editedCabalFile = "059wipnkc0a70abi0ywccs3yma109lqjwnpgfz5zach4dia879cp"; 203724 204289 isLibrary = true; 203725 204290 isExecutable = true; 203726 204291 libraryHaskellDepends = [ ··· 204083 204648 pname = "dual-tree"; 204084 204649 version = "0.2.3.1"; 204085 204650 sha256 = "19nm34d166fhlkk7npx0iq9kbx7300a82bg75q1sx98jqfa4nffh"; 204086 - revision = "4"; 204087 - editedCabalFile = "0cbh0k0qqlbchzvh2yw1x3v5lab0gzmi2bk3y02j23qxr09nw3hm"; 204651 + revision = "5"; 204652 + editedCabalFile = "0ihx1l9s864z4pvqkahy0ch6k4fqrz4yzb0dqwrnagsa2akbz9c4"; 204088 204653 libraryHaskellDepends = [ 204089 204654 base 204090 204655 monoid-extras ··· 208820 209385 blockfrost-api, 208821 209386 blockfrost-client, 208822 209387 bytestring, 209388 + Diff, 208823 209389 directory, 208824 209390 effectful, 208825 209391 effectful-core, ··· 208850 209416 }: 208851 209417 mkDerivation { 208852 209418 pname = "effectful-zoo"; 208853 - version = "0.0.5.0"; 208854 - sha256 = "09qscfnbv1vfgj0f7nfscahqc36q5pr2x6fxar9mivh4zfpwi6cs"; 209419 + version = "0.0.6.0"; 209420 + sha256 = "15zv1nj48dl19cawyzcamia1r4jj02k2zy0zlv0fz6981k2m610y"; 208855 209421 isLibrary = false; 208856 209422 isExecutable = false; 208857 209423 libraryHaskellDepends = [ ··· 208866 209432 blockfrost-api 208867 209433 blockfrost-client 208868 209434 bytestring 209435 + Diff 208869 209436 directory 208870 209437 effectful 208871 209438 effectful-core ··· 215057 215624 ]; 215058 215625 description = "Safe helpers for accessing and modifying environment variables"; 215059 215626 license = lib.licenses.mit; 215060 - hydraPlatforms = lib.platforms.none; 215061 - broken = true; 215062 215627 } 215063 215628 ) { }; 215064 215629 ··· 216288 216853 }: 216289 216854 mkDerivation { 216290 216855 pname = "erebos-tester"; 216291 - version = "0.3.1"; 216292 - sha256 = "1qwhxhd8ihk20gwddfj3cj9ag8s9kaj3i5aynjbccx7s24chwmfv"; 216856 + version = "0.3.2"; 216857 + sha256 = "0m3fi03q0l55r6amxcq0l01sqcg8m6hqbx1zhdaq75s3yyx4wb71"; 216293 216858 isLibrary = false; 216294 216859 isExecutable = true; 216295 216860 executableHaskellDepends = [ ··· 224574 225139 pname = "extensions"; 224575 225140 version = "0.1.0.3"; 224576 225141 sha256 = "1fks1yfdk0zjc1vccj3nr6li09j64cq6b6x9s5mi8qrsv5igbzlm"; 224577 - revision = "1"; 224578 - editedCabalFile = "1nd8zmxqlwnc3ksm13ld5d1rr6vhdi9dykp42mfk5lim7iyw3lj6"; 225142 + revision = "2"; 225143 + editedCabalFile = "0ph3qpvqdva8wjpxla4i188ib2pgx79hd3rrgrjzpp1ch5a1disv"; 224579 225144 isLibrary = true; 224580 225145 isExecutable = true; 224581 225146 libraryHaskellDepends = [ ··· 227565 228130 mkDerivation, 227566 228131 aeson, 227567 228132 attoparsec, 228133 + attoparsec-aeson, 227568 228134 base, 227569 228135 bytestring, 227570 228136 conduit, ··· 227591 228157 }: 227592 228158 mkDerivation { 227593 228159 pname = "fb"; 227594 - version = "2.1.1.1"; 227595 - sha256 = "18hqmhfzniydmxwi8b21iz04pc6x8hdy8pj6960ihrk20ddkih3d"; 228160 + version = "2.1.1.2"; 228161 + sha256 = "10vcqr2nbkr86jwkkvhzgc5m35wg5kncx2ci3z9h412hg5ca7xnn"; 227596 228162 libraryHaskellDepends = [ 227597 228163 aeson 227598 228164 attoparsec 228165 + attoparsec-aeson 227599 228166 base 227600 228167 bytestring 227601 228168 conduit ··· 227635 228202 ]; 227636 228203 description = "Bindings to Facebook's API"; 227637 228204 license = lib.licenses.bsd3; 227638 - hydraPlatforms = lib.platforms.none; 227639 - broken = true; 227640 228205 } 227641 228206 ) { }; 227642 228207 ··· 229047 229612 { 229048 229613 mkDerivation, 229049 229614 base, 229050 - bodhi, 229051 - cached-json-file, 229052 229615 case-insensitive, 229053 229616 curl, 229054 229617 directory, 229055 229618 extra, 229619 + fedora-releases, 229056 229620 filepath, 229057 229621 Glob, 229058 229622 regex-compat, ··· 229065 229629 }: 229066 229630 mkDerivation { 229067 229631 pname = "fedora-repoquery"; 229068 - version = "0.7.1"; 229069 - sha256 = "1jz8v914s7janr6xyk6sf2c0fxfw2c5d7shc08ks62qlvg8qbs8c"; 229632 + version = "0.7.2"; 229633 + sha256 = "0glmc6fqcw7r400nczlnalbdp98ddvvywrxng9jz5y7bindy1vh7"; 229070 229634 isLibrary = false; 229071 229635 isExecutable = true; 229072 229636 executableHaskellDepends = [ 229073 229637 base 229074 - bodhi 229075 - cached-json-file 229076 229638 case-insensitive 229077 229639 curl 229078 229640 directory 229079 229641 extra 229642 + fedora-releases 229080 229643 filepath 229081 229644 Glob 229082 229645 regex-compat ··· 229156 229719 pname = "feed"; 229157 229720 version = "1.3.2.1"; 229158 229721 sha256 = "0marh7qmggq1z5339nid3gil7k786d3yk79b0rwfkxxaxmr41xd8"; 229159 - revision = "4"; 229160 - editedCabalFile = "1ihkckkn5xpk4mmgbxp0c3ik2rgzx3r60vzxmzgmw83a77ghjgmy"; 229722 + revision = "5"; 229723 + editedCabalFile = "0y9f6dcgmmfzgxq9dbgs6lypd6pmcb0x1qvvkj20l74ba9k30v96"; 229161 229724 enableSeparateDataOutput = true; 229162 229725 libraryHaskellDepends = [ 229163 229726 base ··· 229589 230152 }: 229590 230153 mkDerivation { 229591 230154 pname = "feedback"; 229592 - version = "0.1.0.5"; 229593 - sha256 = "0g15yinnxh8x0dknhfjpy88z5bzary8midj5qskrbkyqbvkni20l"; 230155 + version = "0.2.0.0"; 230156 + sha256 = "04qd87ifd4sqc71r0h27i9hld9ncqxhxfdgrn1flc9njmnbmi8yr"; 229594 230157 isLibrary = true; 229595 230158 isExecutable = true; 229596 230159 libraryHaskellDepends = [ ··· 232458 233021 pname = "filtrable"; 232459 233022 version = "0.1.6.0"; 232460 233023 sha256 = "058jl7wjaxzvcayc9qzpikxvi9x42civ4sb02jh66rcvpndbfh5y"; 232461 - revision = "1"; 232462 - editedCabalFile = "05xz53br6bsdfcv71js7sq4agb8xidl4zvv3f8xfls2a9rvb1jw0"; 233024 + revision = "2"; 233025 + editedCabalFile = "0ajsh1600c8rkgrallz0m2b3cwqy76yy52niikx2prj0z7k7lbv6"; 232463 233026 libraryHaskellDepends = [ 232464 233027 base 232465 233028 containers ··· 232832 233395 { 232833 233396 mkDerivation, 232834 233397 base, 233398 + deepseq, 232835 233399 HUnit, 232836 233400 QuickCheck, 232837 233401 test-framework, ··· 232840 233404 }: 232841 233405 mkDerivation { 232842 233406 pname = "fingertree"; 232843 - version = "0.1.5.0"; 232844 - sha256 = "0wdzpli8bpgk8lrsp105zb0y5gn1r2029laclvhz264bza93q9pk"; 232845 - libraryHaskellDepends = [ base ]; 233407 + version = "0.1.6.1"; 233408 + sha256 = "0kx2nv9cddghcx4i413iq8078gqa20yrgpja6js4dl3wpsq47yzm"; 233409 + libraryHaskellDepends = [ 233410 + base 233411 + deepseq 233412 + ]; 232846 233413 testHaskellDepends = [ 232847 233414 base 233415 + deepseq 232848 233416 HUnit 232849 233417 QuickCheck 232850 233418 test-framework ··· 236456 237024 }: 236457 237025 mkDerivation { 236458 237026 pname = "flow"; 236459 - version = "2.0.0.7"; 236460 - sha256 = "18v7vlcc3na743i6755zk7qjqqvaxnd1lb68fci1z3wzyjxjcxml"; 237027 + sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 237028 + sha256 = "1cvz65jq882f3ip9fwifdjjf6hx9vm1w21403z3hiiwc7i39zxqb"; 236461 237029 libraryHaskellDepends = [ base ]; 236462 237030 testHaskellDepends = [ 236463 237031 base ··· 242015 242583 }: 242016 242584 mkDerivation { 242017 242585 pname = "freckle-env"; 242018 - version = "0.0.1.1"; 242019 - sha256 = "1vvmczv4z4gpp5h3k1ws6ghv6am7xdgx5l3v11bnwyp21fzmzp3n"; 242586 + version = "0.0.1.2"; 242587 + sha256 = "101rp0kzjhhhj08a77ysn1d2kadyg9fpjc758w0jmg72cp211vl2"; 242020 242588 libraryHaskellDepends = [ 242021 242589 base 242022 242590 dotenv ··· 242031 242599 base 242032 242600 doctest 242033 242601 ]; 242034 - description = "Some extension to the envparse library"; 242602 + description = "Some extensions to the envparse library"; 242035 242603 license = lib.licenses.mit; 242036 - hydraPlatforms = lib.platforms.none; 242037 - broken = true; 242038 242604 } 242039 242605 ) { }; 242040 242606 ··· 242192 242758 }: 242193 242759 mkDerivation { 242194 242760 pname = "freckle-kafka"; 242195 - version = "0.0.0.2"; 242196 - sha256 = "1g2ynl6sxrj42jjjzf4y0bkh54alnd93c6gclgg0kqs593k0a2qx"; 242761 + version = "0.0.0.3"; 242762 + sha256 = "0l123k59jrcpl9hw3ciis22z7y0lrgsi99362zg5slrlmn8fs9nb"; 242197 242763 libraryHaskellDepends = [ 242198 242764 aeson 242199 242765 annotated-exception ··· 242215 242781 ]; 242216 242782 description = "Some extensions to the hw-kafka-client library"; 242217 242783 license = lib.licenses.mit; 242218 - hydraPlatforms = lib.platforms.none; 242219 - broken = true; 242220 242784 } 242221 242785 ) { }; 242222 242786 ··· 243231 243795 pname = "free-vector-spaces"; 243232 243796 version = "0.1.5.2"; 243233 243797 sha256 = "0p0flpai3n9ism9dd3kyf1fa8s8rpb4cc00m3bplb9s8zb6aghpb"; 243234 - revision = "1"; 243235 - editedCabalFile = "1b0c7vifxhnm91wzwy10nzjwxd4dv91zx7jcfmr22qflml89blp7"; 243798 + revision = "2"; 243799 + editedCabalFile = "1jlaljmfhsb4yb8iqmw1zaa3kkiayg6li6bk04a3camh2jc8k22m"; 243236 243800 libraryHaskellDepends = [ 243237 243801 base 243238 243802 lens ··· 243245 243809 ]; 243246 243810 description = "Instantiate the classes from the vector-space package with types from linear"; 243247 243811 license = lib.licenses.bsd3; 243812 + hydraPlatforms = lib.platforms.none; 243813 + broken = true; 243248 243814 } 243249 243815 ) { }; 243250 243816 ··· 244867 245433 ]; 244868 245434 description = "Abstract interface for the file system"; 244869 245435 license = lib.licenses.asl20; 245436 + hydraPlatforms = lib.platforms.none; 245437 + broken = true; 244870 245438 } 244871 245439 ) { }; 244872 245440 ··· 244948 245516 ]; 244949 245517 description = "Simulated file systems"; 244950 245518 license = lib.licenses.asl20; 245519 + hydraPlatforms = lib.platforms.none; 244951 245520 } 244952 245521 ) { }; 244953 245522 ··· 245103 245672 }: 245104 245673 mkDerivation { 245105 245674 pname = "fsnotify"; 245106 - version = "0.4.2.0"; 245107 - sha256 = "0nm2wm01r3595pf2k3jmdll1i7q7vzayvxq1k2xxnmvxh0rnak8i"; 245675 + version = "0.4.3.0"; 245676 + sha256 = "0dq0dm4j5f16wpfrgh22001icvknmq4cmjyslakjvkyj7w9yfmnf"; 245108 245677 isLibrary = true; 245109 245678 isExecutable = true; 245110 245679 libraryHaskellDepends = [ ··· 247572 248141 }: 247573 248142 mkDerivation { 247574 248143 pname = "futhark"; 247575 - version = "0.25.30"; 247576 - sha256 = "0sqglqm2w22wfl3sx4f4657k37f31mkjhl0xw3lxkpaxj187ijak"; 248144 + version = "0.25.31"; 248145 + sha256 = "0sbbc296gzxfib1i0390ipasy4k8dbxkv3nn4615vmg99njdz84p"; 247577 248146 isLibrary = true; 247578 248147 isExecutable = true; 247579 248148 libraryHaskellDepends = [ ··· 247680 248249 }: 247681 248250 mkDerivation { 247682 248251 pname = "futhark-data"; 247683 - version = "1.1.1.0"; 247684 - sha256 = "010q8mbyy320vw785phczmdjdv55w5i7mdd6q04949lzfzxi3w0f"; 248252 + version = "1.1.2.0"; 248253 + sha256 = "17v16w3085s835iqwn4zhyqybaw13w6h7vmfb1q2339d7xy28z34"; 247685 248254 libraryHaskellDepends = [ 247686 248255 base 247687 248256 binary ··· 250823 251392 pname = "gemini-router"; 250824 251393 version = "0.1.2.0"; 250825 251394 sha256 = "12b5zvs1npqc47jy04dbs2mqy2n7m0pn83ndz0wb4c1x1qygp7sj"; 250826 - revision = "1"; 250827 - editedCabalFile = "0wlzl52x65mg3an0phmp6a9d0dbcyv6vvvc941xfrmx2jydq8v78"; 251395 + revision = "2"; 251396 + editedCabalFile = "1s3mgi37ds7xhlnkmw356zzbp6hikckp0ccn79l5cqhnjaj2213s"; 250828 251397 libraryHaskellDepends = [ 250829 251398 base 250830 251399 gemini-server ··· 250834 251403 ]; 250835 251404 description = "A simple Happstack-style Gemini router"; 250836 251405 license = lib.licenses.bsd3; 250837 - hydraPlatforms = lib.platforms.none; 250838 251406 } 250839 251407 ) { }; 250840 251408 ··· 250855 251423 pname = "gemini-server"; 250856 251424 version = "0.3.0.0"; 250857 251425 sha256 = "0s9h0lzxz5yjvz8rzw9mx9dba21171960waaqikj2qbbja0iq3k3"; 250858 - revision = "3"; 250859 - editedCabalFile = "1lg561xjfsa5q5gayipzr4ggragv2nv80i3bg1psg5n8ryijdpdm"; 251426 + revision = "4"; 251427 + editedCabalFile = "1qna0rqyv89l6vl9w4qfz8kx8kd6759ywycw17ssqa5aavdbnwpq"; 250860 251428 libraryHaskellDepends = [ 250861 251429 base 250862 251430 bytestring ··· 250870 251438 ]; 250871 251439 description = "A lightweight server for the Gemini protocol"; 250872 251440 license = lib.licenses.bsd3; 250873 - hydraPlatforms = lib.platforms.none; 250874 - broken = true; 250875 251441 } 250876 251442 ) { }; 250877 251443 ··· 250896 251462 }: 250897 251463 mkDerivation { 250898 251464 pname = "gemini-textboard"; 250899 - version = "0.2.0.1"; 250900 - sha256 = "1yvizcxafq943q9fbz08mq2x50dw9ykdz5vy6hr6ps2g47j4wfa0"; 250901 - revision = "2"; 250902 - editedCabalFile = "1pl0k7skmf3yp2f8mscmfynhkis6dn6hb94qg26kxyr7jpwbcsb8"; 251465 + version = "0.2.0.2"; 251466 + sha256 = "1wr27h2hikv2czgvml4pypkm8rg4qgfc1kf1rmrrlcdjzd67klc0"; 250903 251467 isLibrary = false; 250904 251468 isExecutable = true; 250905 251469 executableHaskellDepends = [ ··· 250921 251485 ]; 250922 251486 description = "A barebones textboard for the Gemini protocol"; 250923 251487 license = lib.licenses.bsd3; 250924 - hydraPlatforms = lib.platforms.none; 250925 251488 mainProgram = "gemini-textboard"; 250926 251489 } 250927 251490 ) { }; ··· 251608 252171 }: 251609 252172 mkDerivation { 251610 252173 pname = "generic-case"; 251611 - version = "0.1.1.0"; 251612 - sha256 = "1sqm7rcn7qc2m46xy8rvz08a47ls1qxyd2aivamskd0zy5kfmmm1"; 252174 + version = "0.1.1.1"; 252175 + sha256 = "1f55qbsrwgl0990cnh65dpg81jy14685d38f3p6f8qwb13x4q46p"; 251613 252176 libraryHaskellDepends = [ 251614 252177 base 251615 252178 generics-sop ··· 251851 252414 } 251852 252415 ) { }; 251853 252416 252417 + "generic-diff" = callPackage ( 252418 + { 252419 + mkDerivation, 252420 + base, 252421 + basic-sop, 252422 + generics-sop, 252423 + hspec, 252424 + hspec-discover, 252425 + QuickCheck, 252426 + sop-core, 252427 + text, 252428 + }: 252429 + mkDerivation { 252430 + pname = "generic-diff"; 252431 + version = "0.1.0.0"; 252432 + sha256 = "0wqa9jd2za2jzsm390fzsxfmz8rv3x8d9x3k95d7w7wc7zr57xdf"; 252433 + libraryHaskellDepends = [ 252434 + base 252435 + generics-sop 252436 + sop-core 252437 + text 252438 + ]; 252439 + testHaskellDepends = [ 252440 + base 252441 + basic-sop 252442 + generics-sop 252443 + hspec 252444 + QuickCheck 252445 + sop-core 252446 + text 252447 + ]; 252448 + testToolDepends = [ hspec-discover ]; 252449 + description = "Generic structural diffs"; 252450 + license = lib.licenses.bsd3; 252451 + } 252452 + ) { }; 252453 + 251854 252454 "generic-enum" = callPackage ( 251855 252455 { 251856 252456 mkDerivation, ··· 253792 254392 }: 253793 254393 mkDerivation { 253794 254394 pname = "genvalidity-hspec"; 253795 - version = "1.0.0.3"; 253796 - sha256 = "0z4ykzbww4ydxf6f10hkrlmwbn4mkildbj2r57m8llyih8y51rhd"; 254395 + version = "1.0.0.4"; 254396 + sha256 = "0z9qk1yd3hz7zxbsa6j4xydy962im7ihi1r36n94hcvj5lvi5zsj"; 253797 254397 libraryHaskellDepends = [ 253798 254398 base 253799 254399 genvalidity ··· 254248 254848 ]; 254249 254849 description = "GenValidity support for URI"; 254250 254850 license = lib.licenses.mit; 254851 + hydraPlatforms = lib.platforms.none; 254852 + broken = true; 254251 254853 } 254252 254854 ) { }; 254253 254855 ··· 255419 256021 base, 255420 256022 geomancy, 255421 256023 gl-block, 256024 + lucid-svg, 256025 + shower, 256026 + tasty, 256027 + tasty-hunit, 255422 256028 }: 255423 256029 mkDerivation { 255424 256030 pname = "geomancy-layout"; 255425 - version = "0.1"; 255426 - sha256 = "0pwd35cydwgp6vv31dz8lwvgqdpa2jjm2lv0cnkgcfgl5lpc22wc"; 256031 + version = "0.1.1"; 256032 + sha256 = "09lbab7x3cqs42jg50yqv5x0acsbc0jm5d707bwd0w1g5cnp87hn"; 255427 256033 libraryHaskellDepends = [ 255428 256034 base 255429 256035 geomancy 255430 256036 gl-block 256037 + ]; 256038 + testHaskellDepends = [ 256039 + base 256040 + geomancy 256041 + lucid-svg 256042 + shower 256043 + tasty 256044 + tasty-hunit 255431 256045 ]; 255432 256046 description = "Geometry and matrix manipulation"; 255433 256047 license = lib.licenses.bsd3; ··· 256219 256833 pname = "ghc-compact"; 256220 256834 version = "0.1.0.0"; 256221 256835 sha256 = "03sf8ap1ncjsibp9z7k9xgcsj9s0q3q6l4shf8k7p8dkwpjl1g2h"; 256222 - revision = "5"; 256223 - editedCabalFile = "0f1jbvfnw1c7q43bw952vskrsr6wg9ili30b44w2kdrk764h2idl"; 256836 + revision = "6"; 256837 + editedCabalFile = "1v4mbhxggd8nnl76nhgvi7sngb10pshblvw8a2b41fh5y0ips7pm"; 256224 256838 libraryHaskellDepends = [ 256225 256839 base 256226 256840 bytestring ··· 256392 257006 }: 256393 257007 mkDerivation { 256394 257008 pname = "ghc-debug-brick"; 256395 - version = "0.6.0.0"; 256396 - sha256 = "0mmy484sj89g5y69j7lgcczipmmhlra7kmv230kg3380mh3r1ndv"; 257009 + version = "0.7.0.0"; 257010 + sha256 = "06lwx3j9cfyaffqwjmyvv53lhybnz1zyd7djaz2an99d2pp037bp"; 256397 257011 isLibrary = false; 256398 257012 isExecutable = true; 256399 257013 executableHaskellDepends = [ ··· 256455 257069 }: 256456 257070 mkDerivation { 256457 257071 pname = "ghc-debug-client"; 256458 - version = "0.6.0.0"; 256459 - sha256 = "0002w48g4fw053vwzdi5l1qaglr6035jnmxajd8i9c1ppz09q8kn"; 257072 + version = "0.7.0.0"; 257073 + sha256 = "03gqzbms7iv06qbcmz2v2zpqz9rsz4in14jf37s574rj3kh1xw0m"; 256460 257074 libraryHaskellDepends = [ 256461 257075 async 256462 257076 base ··· 256508 257122 }: 256509 257123 mkDerivation { 256510 257124 pname = "ghc-debug-common"; 256511 - version = "0.6.0.0"; 256512 - sha256 = "1i2212qd7qvighvrb8x7hb6fisg3fb6vr49xgdcv66wrclj9n0hd"; 257125 + version = "0.7.0.0"; 257126 + sha256 = "0nb6d18lkynzas55inx7h60xygj1f5n2hzjiw3zl3j4yhs9pnq6k"; 256513 257127 libraryHaskellDepends = [ 256514 257128 array 256515 257129 base ··· 256540 257154 }: 256541 257155 mkDerivation { 256542 257156 pname = "ghc-debug-convention"; 256543 - version = "0.6.0.0"; 256544 - sha256 = "0iwjfqxl0q6kja2zzrv3ypcc39vyc9cfaab83854jd1qi9vffkm9"; 257157 + version = "0.7.0.0"; 257158 + sha256 = "19ir87s3n2k0ijwa0ax6d8p8gpbmf64a5h46k40dbs9h6waij0pa"; 256545 257159 libraryHaskellDepends = [ 256546 257160 base 256547 257161 directory ··· 256563 257177 }: 256564 257178 mkDerivation { 256565 257179 pname = "ghc-debug-stub"; 256566 - version = "0.6.0.0"; 256567 - sha256 = "0cajxbz0lfin2vm9cs4ap7h2s4wxynrp606aqbnlj4m5x1yp6fp0"; 257180 + version = "0.7.0.0"; 257181 + sha256 = "0p7x3j5qwc1s4svqmxq1s5vcrjczwm86lml403mdg1xvd2scyn1z"; 256568 257182 libraryHaskellDepends = [ 256569 257183 base 256570 257184 directory ··· 256578 257192 } 256579 257193 ) { }; 256580 257194 257195 + "ghc-debugger" = callPackage ( 257196 + { 257197 + mkDerivation, 257198 + aeson, 257199 + array, 257200 + async, 257201 + base, 257202 + binary, 257203 + bytestring, 257204 + containers, 257205 + dap, 257206 + directory, 257207 + exceptions, 257208 + filepath, 257209 + ghc, 257210 + ghci, 257211 + hie-bios, 257212 + mtl, 257213 + process, 257214 + text, 257215 + unix, 257216 + }: 257217 + mkDerivation { 257218 + pname = "ghc-debugger"; 257219 + version = "0.2.0.0"; 257220 + sha256 = "0k02y36kz9412i0fk9vvdidcyc5qh0cq47jbgk78i8c7276dm4j3"; 257221 + isLibrary = true; 257222 + isExecutable = true; 257223 + libraryHaskellDepends = [ 257224 + aeson 257225 + array 257226 + base 257227 + binary 257228 + bytestring 257229 + containers 257230 + exceptions 257231 + filepath 257232 + ghc 257233 + ghci 257234 + mtl 257235 + process 257236 + unix 257237 + ]; 257238 + executableHaskellDepends = [ 257239 + aeson 257240 + async 257241 + base 257242 + bytestring 257243 + containers 257244 + dap 257245 + directory 257246 + exceptions 257247 + filepath 257248 + ghc 257249 + hie-bios 257250 + mtl 257251 + process 257252 + text 257253 + unix 257254 + ]; 257255 + testHaskellDepends = [ base ]; 257256 + description = "A step-through machine-interface debugger for GHC Haskell"; 257257 + license = lib.licenses.bsd3; 257258 + hydraPlatforms = lib.platforms.none; 257259 + mainProgram = "ghc-debug-adapter"; 257260 + } 257261 + ) { }; 257262 + 256581 257263 "ghc-definitions-th" = callPackage ( 256582 257264 { 256583 257265 mkDerivation, ··· 257913 258595 } 257914 258596 ) { }; 257915 258597 257916 - "ghc-lib_9_10_2_20250503" = callPackage ( 258598 + "ghc-lib_9_10_2_20250515" = callPackage ( 257917 258599 { 257918 258600 mkDerivation, 257919 258601 alex, ··· 257942 258624 }: 257943 258625 mkDerivation { 257944 258626 pname = "ghc-lib"; 257945 - version = "9.10.2.20250503"; 257946 - sha256 = "0glpa8jaq31dga6avif4k9yp6vi11xh68qm3vrcrrcs11bj0wjcq"; 258627 + version = "9.10.2.20250515"; 258628 + sha256 = "0ix0pbpn945hdcnha7vklxsamvqqr698yg5xy52p0s6q7shydvn3"; 257947 258629 enableSeparateDataOutput = true; 257948 258630 libraryHaskellDepends = [ 257949 258631 array ··· 258209 258891 } 258210 258892 ) { }; 258211 258893 258212 - "ghc-lib-parser_9_10_2_20250503" = callPackage ( 258894 + "ghc-lib-parser_9_10_2_20250515" = callPackage ( 258213 258895 { 258214 258896 mkDerivation, 258215 258897 alex, ··· 258233 258915 }: 258234 258916 mkDerivation { 258235 258917 pname = "ghc-lib-parser"; 258236 - version = "9.10.2.20250503"; 258237 - sha256 = "04nsz41x0v62nbi3y3x3ilxawr3kzldmd8rlxqxzpj00gdd8jndk"; 258918 + version = "9.10.2.20250515"; 258919 + sha256 = "1wlwgm6596dnsc60j40byw9d1krb3gmvapglz3g8ampjy8scadvb"; 258238 258920 enableSeparateDataOutput = true; 258239 258921 libraryHaskellDepends = [ 258240 258922 array ··· 260950 261632 }: 260951 261633 mkDerivation { 260952 261634 pname = "ghcide"; 260953 - version = "2.10.0.0"; 260954 - sha256 = "1l8c0gpzbp6lk11zvwby2n7798lnpsc23gb3xvn5yl1kd1x0dk44"; 261635 + version = "2.11.0.0"; 261636 + sha256 = "0d9rvh6xxw8y64f1pdivwdkmi9wqknl4m2n2h3x4rjmqj2al92vs"; 260955 261637 isLibrary = true; 260956 261638 isExecutable = true; 260957 261639 libraryHaskellDepends = [ ··· 261874 262556 }: 261875 262557 mkDerivation { 261876 262558 pname = "ghcup"; 261877 - version = "0.1.50.1"; 261878 - sha256 = "0y0zpzxkxhm6kgwrbzhy167qllkzgyk5wcc3iy3qmbyg7wplb8xy"; 262559 + version = "0.1.50.2"; 262560 + sha256 = "1djhvm1iw5hff0cicg3kyi29hbhpk0klqia8sd8rp90wkb7ipfnx"; 261879 262561 isLibrary = true; 261880 262562 isExecutable = true; 261881 262563 libraryHaskellDepends = [ ··· 263355 264037 } 263356 264038 ) { inherit (pkgs) glib; }; 263357 264039 264040 + "gi-gio_2_0_38" = callPackage ( 264041 + { 264042 + mkDerivation, 264043 + base, 264044 + bytestring, 264045 + Cabal, 264046 + containers, 264047 + gi-glib, 264048 + gi-gobject, 264049 + glib, 264050 + haskell-gi, 264051 + haskell-gi-base, 264052 + haskell-gi-overloading, 264053 + text, 264054 + transformers, 264055 + }: 264056 + mkDerivation { 264057 + pname = "gi-gio"; 264058 + version = "2.0.38"; 264059 + sha256 = "12bmpafy5w85y7mzww0l5ilimbdmaabpxz7ry9sacg37kjm3kidf"; 264060 + setupHaskellDepends = [ 264061 + base 264062 + Cabal 264063 + gi-glib 264064 + gi-gobject 264065 + haskell-gi 264066 + ]; 264067 + libraryHaskellDepends = [ 264068 + base 264069 + bytestring 264070 + containers 264071 + gi-glib 264072 + gi-gobject 264073 + haskell-gi 264074 + haskell-gi-base 264075 + haskell-gi-overloading 264076 + text 264077 + transformers 264078 + ]; 264079 + libraryPkgconfigDepends = [ glib ]; 264080 + description = "Gio bindings"; 264081 + license = lib.licenses.lgpl21Only; 264082 + hydraPlatforms = lib.platforms.none; 264083 + } 264084 + ) { inherit (pkgs) glib; }; 264085 + 263358 264086 "gi-gio-hs-list-model" = callPackage ( 263359 264087 { 263360 264088 mkDerivation, ··· 266412 267140 }: 266413 267141 mkDerivation { 266414 267142 pname = "ginger"; 266415 - version = "0.10.5.2"; 266416 - sha256 = "0nwcppbfxj3nvq3hm9gj8gh076399zkksj2k39nb9zdm8dws79sf"; 266417 - revision = "1"; 266418 - editedCabalFile = "1bfxyx32dnf4giw4pwanxab0dsca1m5sd3haffpp9snk9jicbafd"; 267143 + version = "0.10.6.0"; 267144 + sha256 = "0j5arz8x2ksbcwy5iq8p7pzy71rl0nhadlv2d6933ibdgvzbsb7j"; 266419 267145 isLibrary = true; 266420 267146 isExecutable = true; 266421 267147 enableSeparateDataOutput = true; ··· 267000 267726 }: 267001 267727 mkDerivation { 267002 267728 pname = "git-annex"; 267003 - version = "10.20250416"; 267004 - sha256 = "02d4dw7mc72y4lb34nhg4lv0wjns9p8hzx80wqbf2vgsyq7q6zk5"; 267729 + version = "10.20250520"; 267730 + sha256 = "15qb4pm3chhb5x0halx5qd4s1rcbci1q22sskm0mw4xjn2yfhc99"; 267005 267731 configureFlags = [ 267006 267732 "-fassistant" 267007 267733 "-f-benchmark" ··· 268367 269093 } 268368 269094 ) { }; 268369 269095 269096 + "github_0_30" = callPackage ( 269097 + { 269098 + mkDerivation, 269099 + aeson, 269100 + base, 269101 + base-compat, 269102 + base16-bytestring, 269103 + binary, 269104 + binary-instances, 269105 + bytestring, 269106 + containers, 269107 + cryptohash-sha1, 269108 + deepseq, 269109 + deepseq-generics, 269110 + exceptions, 269111 + file-embed, 269112 + hashable, 269113 + hspec, 269114 + hspec-discover, 269115 + http-client, 269116 + http-client-tls, 269117 + http-link-header, 269118 + http-types, 269119 + iso8601-time, 269120 + mtl, 269121 + network-uri, 269122 + tagged, 269123 + text, 269124 + time, 269125 + tls, 269126 + transformers, 269127 + transformers-compat, 269128 + unordered-containers, 269129 + vector, 269130 + }: 269131 + mkDerivation { 269132 + pname = "github"; 269133 + version = "0.30"; 269134 + sha256 = "04rwdgrzsf2bq829w1v3435ynxz0lhb3c5vgbm2q080rwww29bif"; 269135 + libraryHaskellDepends = [ 269136 + aeson 269137 + base 269138 + base-compat 269139 + base16-bytestring 269140 + binary 269141 + binary-instances 269142 + bytestring 269143 + containers 269144 + cryptohash-sha1 269145 + deepseq 269146 + deepseq-generics 269147 + exceptions 269148 + hashable 269149 + http-client 269150 + http-client-tls 269151 + http-link-header 269152 + http-types 269153 + iso8601-time 269154 + mtl 269155 + network-uri 269156 + tagged 269157 + text 269158 + time 269159 + tls 269160 + transformers 269161 + transformers-compat 269162 + unordered-containers 269163 + vector 269164 + ]; 269165 + testHaskellDepends = [ 269166 + aeson 269167 + base 269168 + base-compat 269169 + bytestring 269170 + file-embed 269171 + hspec 269172 + http-client 269173 + tagged 269174 + text 269175 + unordered-containers 269176 + vector 269177 + ]; 269178 + testToolDepends = [ hspec-discover ]; 269179 + description = "Access to the GitHub API, v3"; 269180 + license = lib.licenses.bsd3; 269181 + hydraPlatforms = lib.platforms.none; 269182 + } 269183 + ) { }; 269184 + 268370 269185 "github-app-token" = callPackage ( 268371 269186 { 268372 269187 mkDerivation, ··· 268628 269443 }: 268629 269444 mkDerivation { 268630 269445 pname = "github-release"; 268631 - version = "2.0.0.12"; 268632 - sha256 = "10jwkapww6h5d5jvkr0nmg1nvba8dd7yc06qqcy84q01xxr7y0c1"; 269446 + version = "2.0.0.14"; 269447 + sha256 = "1918vvxfya3b2zw56kbdblkbf5c524yz6m9d7bcr5rbpsx9fr9zh"; 268633 269448 isLibrary = true; 268634 269449 isExecutable = true; 268635 269450 libraryHaskellDepends = [ ··· 269990 270805 } 269991 270806 ) { }; 269992 270807 270808 + "gitrev-typed" = callPackage ( 270809 + { 270810 + mkDerivation, 270811 + base, 270812 + directory, 270813 + env-guard, 270814 + exceptions, 270815 + file-io, 270816 + filepath, 270817 + os-string, 270818 + process, 270819 + tasty, 270820 + tasty-hunit, 270821 + template-haskell, 270822 + text, 270823 + }: 270824 + mkDerivation { 270825 + pname = "gitrev-typed"; 270826 + version = "0.1"; 270827 + sha256 = "17313dgh672zw854zckp9wch7fpkwq3gsragqv7fpj82av0s4js1"; 270828 + libraryHaskellDepends = [ 270829 + base 270830 + directory 270831 + exceptions 270832 + file-io 270833 + filepath 270834 + os-string 270835 + process 270836 + template-haskell 270837 + text 270838 + ]; 270839 + testHaskellDepends = [ 270840 + base 270841 + env-guard 270842 + os-string 270843 + tasty 270844 + tasty-hunit 270845 + template-haskell 270846 + text 270847 + ]; 270848 + description = "Compile git revision info into Haskell projects"; 270849 + license = lib.licenses.bsd3; 270850 + hydraPlatforms = lib.platforms.none; 270851 + broken = true; 270852 + } 270853 + ) { }; 270854 + 269993 270855 "gitson" = callPackage ( 269994 270856 { 269995 270857 mkDerivation, ··· 270315 271177 }: 270316 271178 mkDerivation { 270317 271179 pname = "glabrous"; 270318 - version = "2.0.6.3"; 270319 - sha256 = "0ndw2mbbfvrp5p2zxn7fx78gdj13xw9rx46a7zg33f9k2dsvjnp8"; 271180 + version = "2.0.6.4"; 271181 + sha256 = "0qz4hza2arv37dwhy6pjgyrrjy723zxa4prc0fzj1lcsa1nsjw74"; 270320 271182 libraryHaskellDepends = [ 270321 271183 aeson 270322 271184 aeson-pretty ··· 271162 272024 { 271163 272025 mkDerivation, 271164 272026 base, 272027 + bytestring, 271165 272028 directory, 271166 272029 discover-instances, 271167 272030 dlist, 271168 272031 file-embed, 271169 272032 filepath, 272033 + Glob, 271170 272034 hspec, 271171 272035 hspec-discover, 271172 272036 mtl, 272037 + optparse-applicative, 271173 272038 some-dict-of, 272039 + split, 271174 272040 template-haskell, 271175 272041 text, 272042 + typed-process, 271176 272043 }: 271177 272044 mkDerivation { 271178 272045 pname = "glob-imports"; 271179 - version = "0.0.1.0"; 271180 - sha256 = "1a7n5mn7pd1m1hjw1cymw3lx6gf9yp4s068gsf72cm4zx4cvb6i8"; 272046 + version = "0.0.2.1"; 272047 + sha256 = "1dwns8krs4gq97mg7xkaq41k6lrn9mc2m0ai496qamlgyp2sinln"; 271181 272048 isLibrary = true; 271182 272049 isExecutable = true; 271183 272050 libraryHaskellDepends = [ 271184 272051 base 272052 + bytestring 271185 272053 directory 271186 272054 discover-instances 271187 272055 dlist 271188 272056 file-embed 271189 272057 filepath 272058 + Glob 271190 272059 mtl 272060 + optparse-applicative 271191 272061 some-dict-of 272062 + split 271192 272063 template-haskell 271193 272064 text 272065 + typed-process 271194 272066 ]; 271195 272067 executableHaskellDepends = [ 271196 272068 base 272069 + bytestring 271197 272070 directory 271198 272071 discover-instances 271199 272072 dlist 271200 272073 file-embed 271201 272074 filepath 272075 + Glob 271202 272076 mtl 272077 + optparse-applicative 271203 272078 some-dict-of 272079 + split 271204 272080 template-haskell 271205 272081 text 272082 + typed-process 271206 272083 ]; 271207 272084 testHaskellDepends = [ 271208 272085 base 272086 + bytestring 271209 272087 directory 271210 272088 discover-instances 271211 272089 dlist 271212 272090 file-embed 271213 272091 filepath 272092 + Glob 271214 272093 hspec 271215 272094 hspec-discover 271216 272095 mtl 272096 + optparse-applicative 271217 272097 some-dict-of 272098 + split 271218 272099 template-haskell 271219 272100 text 272101 + typed-process 271220 272102 ]; 271221 272103 testToolDepends = [ hspec-discover ]; 271222 272104 description = "Import modules for metaprogramming"; ··· 271383 272265 base, 271384 272266 bytestring, 271385 272267 effectful, 272268 + exceptions, 272269 + filepath, 271386 272270 http-api-data, 272271 + http-client, 272272 + http-client-tls, 271387 272273 http-types, 271388 - req, 272274 + network-uri, 271389 272275 tagged, 271390 272276 text, 271391 272277 }: 271392 272278 mkDerivation { 271393 272279 pname = "globus"; 271394 - version = "0.1.3"; 271395 - sha256 = "1n2pn21hmmkf982q4gxjb7pli0ln1xc2056bnyy19l4gx4rmvp1x"; 272280 + version = "0.2.1"; 272281 + sha256 = "1mxzdhihx7l8bgpdqvrbxjwbcyrl5gavxrv0g6xa0wkimp0aqqns"; 271396 272282 libraryHaskellDepends = [ 271397 272283 aeson 271398 272284 base 271399 272285 bytestring 271400 272286 effectful 272287 + exceptions 272288 + filepath 271401 272289 http-api-data 272290 + http-client 272291 + http-client-tls 271402 272292 http-types 271403 - req 272293 + network-uri 271404 272294 tagged 271405 272295 text 271406 272296 ]; ··· 273635 274525 base, 273636 274526 bytestring, 273637 274527 case-insensitive, 273638 - conduit, 273639 274528 conduit-extra, 273640 - cryptonite, 274529 + crypton, 274530 + crypton-x509, 274531 + crypton-x509-store, 273641 274532 directory, 273642 274533 exceptions, 273643 274534 filepath, ··· 273653 274544 resourcet, 273654 274545 text, 273655 274546 time, 273656 - transformers, 273657 - unliftio-core, 273658 - unordered-containers, 273659 - x509, 273660 - x509-store, 273661 274547 }: 273662 274548 mkDerivation { 273663 274549 pname = "gogol"; 273664 - version = "0.5.0"; 273665 - sha256 = "1aah3db2ws07q4z2pka4gmsagpwlimv19xq0p6y0bznq86yy7i1q"; 274550 + version = "1.0.0.0"; 274551 + sha256 = "0hpdppfrmcnbssnj220hsdbka3hfqxjqmqg0dg2mhl9bxff6pgsd"; 273666 274552 libraryHaskellDepends = [ 273667 274553 aeson 273668 274554 base 273669 274555 bytestring 273670 274556 case-insensitive 273671 - conduit 273672 274557 conduit-extra 273673 - cryptonite 274558 + crypton 274559 + crypton-x509 274560 + crypton-x509-store 273674 274561 directory 273675 274562 exceptions 273676 274563 filepath ··· 273686 274573 resourcet 273687 274574 text 273688 274575 time 273689 - transformers 273690 - unliftio-core 273691 - unordered-containers 273692 - x509 273693 - x509-store 273694 274576 ]; 273695 274577 description = "Comprehensive Google Services SDK"; 273696 - license = "unknown"; 274578 + license = lib.licenses.mpl20; 273697 274579 } 273698 274580 ) { }; 273699 274581 273700 274582 "gogol-abusiveexperiencereport" = callPackage ( 273701 - { 273702 - mkDerivation, 273703 - base, 273704 - gogol-core, 273705 - }: 274583 + { mkDerivation, gogol-core }: 273706 274584 mkDerivation { 273707 274585 pname = "gogol-abusiveexperiencereport"; 273708 - version = "0.5.0"; 273709 - sha256 = "1c701rajjybggf04rvmj39mn5ryq27kvz79jacxhk9ia1g48lfbb"; 273710 - libraryHaskellDepends = [ 273711 - base 273712 - gogol-core 273713 - ]; 274586 + version = "1.0.0"; 274587 + sha256 = "0h6iwa2z863qgi1vixp28xgq8f2vk0dwlvs3ppbh1f4i9viqvr8b"; 274588 + libraryHaskellDepends = [ gogol-core ]; 273714 274589 description = "Google Abusive Experience Report SDK"; 273715 - license = "unknown"; 274590 + license = lib.licenses.mpl20; 273716 274591 } 273717 274592 ) { }; 273718 274593 273719 274594 "gogol-acceleratedmobilepageurl" = callPackage ( 273720 - { 273721 - mkDerivation, 273722 - base, 273723 - gogol-core, 273724 - }: 274595 + { mkDerivation, gogol-core }: 273725 274596 mkDerivation { 273726 274597 pname = "gogol-acceleratedmobilepageurl"; 273727 - version = "0.5.0"; 273728 - sha256 = "0mr77fifnjl9r1jvmdzr7nvbxrh18n1c7m5yahlg4gsph9jzxg6i"; 273729 - libraryHaskellDepends = [ 273730 - base 273731 - gogol-core 273732 - ]; 274598 + version = "1.0.0"; 274599 + sha256 = "1a1x97xgpmznjgqjrbgz63vfdlgdilzi6y7myxm8v6fin4pf1y2p"; 274600 + libraryHaskellDepends = [ gogol-core ]; 273733 274601 description = "Google Accelerated Mobile Pages (AMP) URL SDK"; 273734 - license = "unknown"; 274602 + license = lib.licenses.mpl20; 273735 274603 } 273736 274604 ) { }; 273737 274605 273738 274606 "gogol-accessapproval" = callPackage ( 273739 - { 273740 - mkDerivation, 273741 - base, 273742 - gogol-core, 273743 - }: 274607 + { mkDerivation, gogol-core }: 273744 274608 mkDerivation { 273745 274609 pname = "gogol-accessapproval"; 273746 - version = "0.5.0"; 273747 - sha256 = "062377i1nrhynsqyg53fkczhj9ljxa1ms062zykyxq4inv7d9r2a"; 273748 - libraryHaskellDepends = [ 273749 - base 273750 - gogol-core 273751 - ]; 274610 + version = "1.0.0"; 274611 + sha256 = "0cy8bwkrgwmz2lm1bqq1w3c895x5h6bfd27wlp6zihivj4kmky8j"; 274612 + libraryHaskellDepends = [ gogol-core ]; 273752 274613 description = "Google Access Approval SDK"; 273753 - license = "unknown"; 274614 + license = lib.licenses.mpl20; 273754 274615 } 273755 274616 ) { }; 273756 274617 273757 274618 "gogol-accesscontextmanager" = callPackage ( 273758 - { 273759 - mkDerivation, 273760 - base, 273761 - gogol-core, 273762 - }: 274619 + { mkDerivation, gogol-core }: 273763 274620 mkDerivation { 273764 274621 pname = "gogol-accesscontextmanager"; 273765 - version = "0.5.0"; 273766 - sha256 = "0nglp371pxal59p33bb50r1vck6mc662z2yrqsq326w77dc24k6z"; 273767 - libraryHaskellDepends = [ 273768 - base 273769 - gogol-core 273770 - ]; 274622 + version = "1.0.0"; 274623 + sha256 = "1n0llmpcp8da4nzmz6350gnjaj0ir3wl1iqnx9y1wvq99jr1xb4s"; 274624 + libraryHaskellDepends = [ gogol-core ]; 273771 274625 description = "Google Access Context Manager SDK"; 273772 - license = "unknown"; 274626 + license = lib.licenses.mpl20; 273773 274627 } 273774 274628 ) { }; 273775 274629 273776 274630 "gogol-adexchange-buyer" = callPackage ( 273777 - { 273778 - mkDerivation, 273779 - base, 273780 - gogol-core, 273781 - }: 274631 + { mkDerivation, gogol-core }: 273782 274632 mkDerivation { 273783 274633 pname = "gogol-adexchange-buyer"; 273784 - version = "0.5.0"; 273785 - sha256 = "0a2v15z4x0a6dbc789s1j78qcsfqypdf65ydw0gxzgajl136ni7x"; 273786 - libraryHaskellDepends = [ 273787 - base 273788 - gogol-core 273789 - ]; 274634 + version = "1.0.0"; 274635 + sha256 = "1msm75jv2p73fxw9nffjyqyw8zyg0xpna1dhir08pzsmwwyysdx8"; 274636 + libraryHaskellDepends = [ gogol-core ]; 273790 274637 description = "Google Ad Exchange Buyer SDK"; 273791 - license = "unknown"; 274638 + license = lib.licenses.mpl20; 273792 274639 } 273793 274640 ) { }; 273794 274641 273795 274642 "gogol-adexchange-seller" = callPackage ( 273796 - { 273797 - mkDerivation, 273798 - base, 273799 - gogol-core, 273800 - }: 274643 + { mkDerivation, gogol-core }: 273801 274644 mkDerivation { 273802 274645 pname = "gogol-adexchange-seller"; 273803 - version = "0.5.0"; 273804 - sha256 = "02y7sz24flvm6fayfjjvdrywsqy0qw3wrqkfg4jcwa1093j2x3g9"; 273805 - libraryHaskellDepends = [ 273806 - base 273807 - gogol-core 273808 - ]; 274646 + version = "1.0.0"; 274647 + sha256 = "1k2is2alb7d5zdxpqbiv07kxbg86gzkc8zmlndva8p7zrrayanwd"; 274648 + libraryHaskellDepends = [ gogol-core ]; 273809 274649 description = "Google Ad Exchange Seller SDK"; 273810 - license = "unknown"; 274650 + license = lib.licenses.mpl20; 273811 274651 } 273812 274652 ) { }; 273813 274653 273814 274654 "gogol-adexchangebuyer2" = callPackage ( 273815 - { 273816 - mkDerivation, 273817 - base, 273818 - gogol-core, 273819 - }: 274655 + { mkDerivation, gogol-core }: 273820 274656 mkDerivation { 273821 274657 pname = "gogol-adexchangebuyer2"; 273822 - version = "0.5.0"; 273823 - sha256 = "0sy40qp8z47d364dml5fafdy34xwlaa8lwn86n076i0xr0a2c3sc"; 273824 - libraryHaskellDepends = [ 273825 - base 273826 - gogol-core 273827 - ]; 274658 + version = "1.0.0"; 274659 + sha256 = "0k8fdnyyd20qis54nnarj7dk17ncfsn1br83mhjsgkp5x956zlzr"; 274660 + libraryHaskellDepends = [ gogol-core ]; 273828 274661 description = "Google Ad Exchange Buyer API II SDK"; 273829 - license = "unknown"; 274662 + license = lib.licenses.mpl20; 273830 274663 } 273831 274664 ) { }; 273832 274665 273833 274666 "gogol-adexperiencereport" = callPackage ( 273834 - { 273835 - mkDerivation, 273836 - base, 273837 - gogol-core, 273838 - }: 274667 + { mkDerivation, gogol-core }: 273839 274668 mkDerivation { 273840 274669 pname = "gogol-adexperiencereport"; 273841 - version = "0.5.0"; 273842 - sha256 = "1sk083dkiwzr39w7bgqv3klvnx0jb8xqz1v3x0val3dzhfhd0rg0"; 273843 - libraryHaskellDepends = [ 273844 - base 273845 - gogol-core 273846 - ]; 274670 + version = "1.0.0"; 274671 + sha256 = "0hj5ic3mhigk524d760g9s2xlqfx5aj6rxqwyzfs9hrnvl88m79c"; 274672 + libraryHaskellDepends = [ gogol-core ]; 273847 274673 description = "Google Ad Experience Report SDK"; 273848 - license = "unknown"; 274674 + license = lib.licenses.mpl20; 273849 274675 } 273850 274676 ) { }; 273851 274677 273852 274678 "gogol-admin-datatransfer" = callPackage ( 273853 - { 273854 - mkDerivation, 273855 - base, 273856 - gogol-core, 273857 - }: 274679 + { mkDerivation, gogol-core }: 273858 274680 mkDerivation { 273859 274681 pname = "gogol-admin-datatransfer"; 273860 - version = "0.5.0"; 273861 - sha256 = "149h3kg68xqanpzyqxbjxq1nskigv1310fq17inkl3bqm7mk0d3s"; 273862 - libraryHaskellDepends = [ 273863 - base 273864 - gogol-core 273865 - ]; 273866 - description = "Google Admin Data Transfer SDK"; 273867 - license = "unknown"; 274682 + version = "1.0.0"; 274683 + sha256 = "068ib1s04y39q0llrnn64ha1l1q61jspfgkb3chcb056yiam3z7k"; 274684 + libraryHaskellDepends = [ gogol-core ]; 274685 + description = "Google Admin SDK"; 274686 + license = lib.licenses.mpl20; 273868 274687 } 273869 274688 ) { }; 273870 274689 273871 274690 "gogol-admin-directory" = callPackage ( 273872 - { 273873 - mkDerivation, 273874 - base, 273875 - gogol-core, 273876 - }: 274691 + { mkDerivation, gogol-core }: 273877 274692 mkDerivation { 273878 274693 pname = "gogol-admin-directory"; 273879 - version = "0.5.0"; 273880 - sha256 = "0kinbhz4j11nd6s5w4jg13dpbq6hgf6acnqi6hvmn4m4yjm6qs5i"; 273881 - libraryHaskellDepends = [ 273882 - base 273883 - gogol-core 273884 - ]; 273885 - description = "Google Admin Directory SDK"; 273886 - license = "unknown"; 274694 + version = "1.0.0"; 274695 + sha256 = "1aw1369bb5lqzc8z0aqpghjk4pzqk3747ciiwzjibxp5fw6gp8fb"; 274696 + libraryHaskellDepends = [ gogol-core ]; 274697 + description = "Google Admin SDK"; 274698 + license = lib.licenses.mpl20; 273887 274699 } 273888 274700 ) { }; 273889 274701 ··· 273909 274721 ) { }; 273910 274722 273911 274723 "gogol-admin-reports" = callPackage ( 273912 - { 273913 - mkDerivation, 273914 - base, 273915 - gogol-core, 273916 - }: 274724 + { mkDerivation, gogol-core }: 273917 274725 mkDerivation { 273918 274726 pname = "gogol-admin-reports"; 273919 - version = "0.5.0"; 273920 - sha256 = "17m4924mqr0wiq07n3ada8jqc2kbwn2apzmbkpcsf6ns8qpw4r4k"; 273921 - libraryHaskellDepends = [ 273922 - base 273923 - gogol-core 273924 - ]; 273925 - description = "Google Admin Reports SDK"; 273926 - license = "unknown"; 274727 + version = "1.0.0"; 274728 + sha256 = "189fx1ih296s26rn7m92rmay6csps1ihnyrm8wif1530xf6i7i9j"; 274729 + libraryHaskellDepends = [ gogol-core ]; 274730 + description = "Google Admin SDK"; 274731 + license = lib.licenses.mpl20; 273927 274732 } 273928 274733 ) { }; 273929 274734 273930 274735 "gogol-adsense" = callPackage ( 273931 - { 273932 - mkDerivation, 273933 - base, 273934 - gogol-core, 273935 - }: 274736 + { mkDerivation, gogol-core }: 273936 274737 mkDerivation { 273937 274738 pname = "gogol-adsense"; 273938 - version = "0.5.0"; 273939 - sha256 = "07v6sgp6dqvgcmni4579c6iyxqbbn24lyp64zfdv88s4wjhjbdjj"; 273940 - libraryHaskellDepends = [ 273941 - base 273942 - gogol-core 273943 - ]; 274739 + version = "1.0.0"; 274740 + sha256 = "02qh6rqmbllfj27zi4ddgfy88ck7gayzr9ziw6r2brajwdd7rmcx"; 274741 + libraryHaskellDepends = [ gogol-core ]; 273944 274742 description = "Google AdSense Management SDK"; 273945 - license = "unknown"; 274743 + license = lib.licenses.mpl20; 273946 274744 } 273947 274745 ) { }; 273948 274746 273949 274747 "gogol-adsense-host" = callPackage ( 273950 - { 273951 - mkDerivation, 273952 - base, 273953 - gogol-core, 273954 - }: 274748 + { mkDerivation, gogol-core }: 273955 274749 mkDerivation { 273956 274750 pname = "gogol-adsense-host"; 273957 - version = "0.5.0"; 273958 - sha256 = "1s9dsrz6svnm8jjl13w3v72gyyg2xc5sxg6piw087c8j1sqfx131"; 273959 - libraryHaskellDepends = [ 273960 - base 273961 - gogol-core 273962 - ]; 274751 + version = "1.0.0"; 274752 + sha256 = "1h0iv25rpv495qgn021dlxi0cy9v1yxhr6q1l42nb5sp3nfx8j4l"; 274753 + libraryHaskellDepends = [ gogol-core ]; 273963 274754 description = "Google AdSense Host SDK"; 273964 - license = "unknown"; 274755 + license = lib.licenses.mpl20; 273965 274756 } 273966 274757 ) { }; 273967 274758 ··· 273987 274778 ) { }; 273988 274779 273989 274780 "gogol-alertcenter" = callPackage ( 273990 - { 273991 - mkDerivation, 273992 - base, 273993 - gogol-core, 273994 - }: 274781 + { mkDerivation, gogol-core }: 273995 274782 mkDerivation { 273996 274783 pname = "gogol-alertcenter"; 273997 - version = "0.5.0"; 273998 - sha256 = "0d114xkvdjzfgl63gyc1a56jfdacbr5chdz80199jp85zp04h3wi"; 273999 - libraryHaskellDepends = [ 274000 - base 274001 - gogol-core 274002 - ]; 274003 - description = "Google G Suite Alert Center SDK"; 274004 - license = "unknown"; 274784 + version = "1.0.0"; 274785 + sha256 = "0grqgrczqwa3f8ir7yx8rlw1y0alrqz8m4dhbx6268dz5y192421"; 274786 + libraryHaskellDepends = [ gogol-core ]; 274787 + description = "Google Workspace Alert Center SDK"; 274788 + license = lib.licenses.mpl20; 274005 274789 } 274006 274790 ) { }; 274007 274791 274008 274792 "gogol-analytics" = callPackage ( 274009 - { 274010 - mkDerivation, 274011 - base, 274012 - gogol-core, 274013 - }: 274793 + { mkDerivation, gogol-core }: 274014 274794 mkDerivation { 274015 274795 pname = "gogol-analytics"; 274016 - version = "0.5.0"; 274017 - sha256 = "1bfm1z13hvijln3f92n4i8042dd56z6wian6scnbfcndnsfwsrc9"; 274018 - libraryHaskellDepends = [ 274019 - base 274020 - gogol-core 274021 - ]; 274796 + version = "1.0.0"; 274797 + sha256 = "1pqr20s11z75m8lzqq4kx86h8gf9hqmv0n45kbb1v99nmiyl6scq"; 274798 + libraryHaskellDepends = [ gogol-core ]; 274022 274799 description = "Google Analytics SDK"; 274023 - license = "unknown"; 274800 + license = lib.licenses.mpl20; 274024 274801 } 274025 274802 ) { }; 274026 274803 274027 274804 "gogol-analyticsreporting" = callPackage ( 274028 - { 274029 - mkDerivation, 274030 - base, 274031 - gogol-core, 274032 - }: 274805 + { mkDerivation, gogol-core }: 274033 274806 mkDerivation { 274034 274807 pname = "gogol-analyticsreporting"; 274035 - version = "0.5.0"; 274036 - sha256 = "0ih63njgb3612myqfc1impas9jc5gx5hlmhvjzw0bp6rn7dv5qvm"; 274037 - libraryHaskellDepends = [ 274038 - base 274039 - gogol-core 274040 - ]; 274808 + version = "1.0.0"; 274809 + sha256 = "1ps7lln0z027g0lmg0b8bs14ycz3i607a6ja5kxh9xpqi2bcj1pq"; 274810 + libraryHaskellDepends = [ gogol-core ]; 274041 274811 description = "Google Analytics Reporting SDK"; 274042 - license = "unknown"; 274812 + license = lib.licenses.mpl20; 274043 274813 } 274044 274814 ) { }; 274045 274815 274046 274816 "gogol-android-enterprise" = callPackage ( 274047 - { 274048 - mkDerivation, 274049 - base, 274050 - gogol-core, 274051 - }: 274817 + { mkDerivation, gogol-core }: 274052 274818 mkDerivation { 274053 274819 pname = "gogol-android-enterprise"; 274054 - version = "0.5.0"; 274055 - sha256 = "0qxvqv3i21k9g0mgy67073xb2yd8m357c2806v18inh7cikhndgy"; 274056 - libraryHaskellDepends = [ 274057 - base 274058 - gogol-core 274059 - ]; 274820 + version = "1.0.0"; 274821 + sha256 = "0l40nv4jfba6h7vpfca548k7y5yya54n237f11gksclyij5xzc5j"; 274822 + libraryHaskellDepends = [ gogol-core ]; 274060 274823 description = "Google Play EMM SDK"; 274061 - license = "unknown"; 274824 + license = lib.licenses.mpl20; 274062 274825 } 274063 274826 ) { }; 274064 274827 274065 274828 "gogol-android-publisher" = callPackage ( 274066 - { 274067 - mkDerivation, 274068 - base, 274069 - gogol-core, 274070 - }: 274829 + { mkDerivation, gogol-core }: 274071 274830 mkDerivation { 274072 274831 pname = "gogol-android-publisher"; 274073 - version = "0.5.0"; 274074 - sha256 = "05dz12615l74y4iqasgn84vi79i1m7wv11gz5sfbmmmddizjdxy4"; 274075 - libraryHaskellDepends = [ 274076 - base 274077 - gogol-core 274078 - ]; 274079 - description = "Google Play Developer SDK"; 274080 - license = "unknown"; 274832 + version = "1.0.0"; 274833 + sha256 = "14knrvx11f97jb7z7vbmjmh8zrchds5wzacaaiz68g5pqh44sqqg"; 274834 + libraryHaskellDepends = [ gogol-core ]; 274835 + description = "Google Play Android Developer SDK"; 274836 + license = lib.licenses.mpl20; 274081 274837 } 274082 274838 ) { }; 274083 274839 274084 274840 "gogol-androiddeviceprovisioning" = callPackage ( 274085 - { 274086 - mkDerivation, 274087 - base, 274088 - gogol-core, 274089 - }: 274841 + { mkDerivation, gogol-core }: 274090 274842 mkDerivation { 274091 274843 pname = "gogol-androiddeviceprovisioning"; 274092 - version = "0.5.0"; 274093 - sha256 = "1yc88s0h6v8ipw26a90ds0wdmsg78zpp3pqrybip9fh8grzbplv5"; 274094 - libraryHaskellDepends = [ 274095 - base 274096 - gogol-core 274097 - ]; 274844 + version = "1.0.0"; 274845 + sha256 = "0vf3y14bjzs1yb6fsaizsgcjvpk8r3gxavbkkf9cdy3zz6mdfs6y"; 274846 + libraryHaskellDepends = [ gogol-core ]; 274098 274847 description = "Google Android Device Provisioning Partner SDK"; 274099 - license = "unknown"; 274848 + license = lib.licenses.mpl20; 274100 274849 } 274101 274850 ) { }; 274102 274851 274103 274852 "gogol-androidmanagement" = callPackage ( 274104 - { 274105 - mkDerivation, 274106 - base, 274107 - gogol-core, 274108 - }: 274853 + { mkDerivation, gogol-core }: 274109 274854 mkDerivation { 274110 274855 pname = "gogol-androidmanagement"; 274111 - version = "0.5.0"; 274112 - sha256 = "0j68bbdyb3qnjylkb7fyv162pxfjx6802cnb63kryl7wbzcvf02s"; 274113 - libraryHaskellDepends = [ 274114 - base 274115 - gogol-core 274116 - ]; 274856 + version = "1.0.0"; 274857 + sha256 = "0hcfjz9lz9j4sk5vxsq0a67gbrgi9cmrwblkyslzlc3jqd689grh"; 274858 + libraryHaskellDepends = [ gogol-core ]; 274117 274859 description = "Google Android Management SDK"; 274118 - license = "unknown"; 274860 + license = lib.licenses.mpl20; 274119 274861 } 274120 274862 ) { }; 274121 274863 274122 274864 "gogol-appengine" = callPackage ( 274123 - { 274124 - mkDerivation, 274125 - base, 274126 - gogol-core, 274127 - }: 274865 + { mkDerivation, gogol-core }: 274128 274866 mkDerivation { 274129 274867 pname = "gogol-appengine"; 274130 - version = "0.5.0"; 274131 - sha256 = "1p4cxp4f417m0llw58zslaabfswp5s9b9xlxfn3qrl3mdghs8lvk"; 274132 - libraryHaskellDepends = [ 274133 - base 274134 - gogol-core 274135 - ]; 274868 + version = "1.0.0"; 274869 + sha256 = "1d6nsqd6lynk2cvrb53zd1h74w46f8grjrgawrdczkhn9sjplgg4"; 274870 + libraryHaskellDepends = [ gogol-core ]; 274136 274871 description = "Google App Engine Admin SDK"; 274137 - license = "unknown"; 274872 + license = lib.licenses.mpl20; 274138 274873 } 274139 274874 ) { }; 274140 274875 274141 274876 "gogol-apps-activity" = callPackage ( 274142 - { 274143 - mkDerivation, 274144 - base, 274145 - gogol-core, 274146 - }: 274877 + { mkDerivation, gogol-core }: 274147 274878 mkDerivation { 274148 274879 pname = "gogol-apps-activity"; 274149 - version = "0.5.0"; 274150 - sha256 = "0frs0976h57gckraxhipbsd1ps39ddw5bcsxrya9mczyh31aqn4w"; 274151 - libraryHaskellDepends = [ 274152 - base 274153 - gogol-core 274154 - ]; 274880 + version = "1.0.0"; 274881 + sha256 = "0ai1ip5hkqbk0shwhgkjrc81422f0as78spahvyp2b18h9ds3f12"; 274882 + libraryHaskellDepends = [ gogol-core ]; 274155 274883 description = "Google Drive Activity SDK"; 274156 - license = "unknown"; 274884 + license = lib.licenses.mpl20; 274157 274885 } 274158 274886 ) { }; 274159 274887 274160 274888 "gogol-apps-calendar" = callPackage ( 274161 - { 274162 - mkDerivation, 274163 - base, 274164 - gogol-core, 274165 - }: 274889 + { mkDerivation, gogol-core }: 274166 274890 mkDerivation { 274167 274891 pname = "gogol-apps-calendar"; 274168 - version = "0.5.0"; 274169 - sha256 = "1q68zbqk7pkh7clvlyjlkdy7i3zwrh8rl7ksyxd9x8wvla91qc34"; 274170 - libraryHaskellDepends = [ 274171 - base 274172 - gogol-core 274173 - ]; 274892 + version = "1.0.0"; 274893 + sha256 = "119gfvs7wfchf4l50r13pwwqilxfkxbpdsr1hxa0qshx7qs4hdn3"; 274894 + libraryHaskellDepends = [ gogol-core ]; 274174 274895 description = "Google Calendar SDK"; 274175 - license = "unknown"; 274896 + license = lib.licenses.mpl20; 274176 274897 } 274177 274898 ) { }; 274178 274899 274179 274900 "gogol-apps-licensing" = callPackage ( 274180 - { 274181 - mkDerivation, 274182 - base, 274183 - gogol-core, 274184 - }: 274901 + { mkDerivation, gogol-core }: 274185 274902 mkDerivation { 274186 274903 pname = "gogol-apps-licensing"; 274187 - version = "0.5.0"; 274188 - sha256 = "1x86ssslmksdlfmf8rasavpn9dg5kpk416zf001mb896lh6r5dlq"; 274189 - libraryHaskellDepends = [ 274190 - base 274191 - gogol-core 274192 - ]; 274904 + version = "1.0.0"; 274905 + sha256 = "13xr8d87xyv1nif1vm8hx92aqp7w2h68qqpci01jrlgvbwikwg0z"; 274906 + libraryHaskellDepends = [ gogol-core ]; 274193 274907 description = "Google Enterprise License Manager SDK"; 274194 - license = "unknown"; 274908 + license = lib.licenses.mpl20; 274195 274909 } 274196 274910 ) { }; 274197 274911 274198 274912 "gogol-apps-reseller" = callPackage ( 274199 - { 274200 - mkDerivation, 274201 - base, 274202 - gogol-core, 274203 - }: 274913 + { mkDerivation, gogol-core }: 274204 274914 mkDerivation { 274205 274915 pname = "gogol-apps-reseller"; 274206 - version = "0.5.0"; 274207 - sha256 = "0zxjp7apiqd12bcj6fwwrlx8j466pavfgmv35d2alvmb83n1h8gw"; 274208 - libraryHaskellDepends = [ 274209 - base 274210 - gogol-core 274211 - ]; 274212 - description = "Google Enterprise Apps Reseller SDK"; 274213 - license = "unknown"; 274916 + version = "1.0.0"; 274917 + sha256 = "02as3zv92pmki03ylcjc999cfk4qwgp066ns5wmvhg71x66wcy97"; 274918 + libraryHaskellDepends = [ gogol-core ]; 274919 + description = "Google Workspace Reseller SDK"; 274920 + license = lib.licenses.mpl20; 274214 274921 } 274215 274922 ) { }; 274216 274923 274217 274924 "gogol-apps-tasks" = callPackage ( 274218 - { 274219 - mkDerivation, 274220 - base, 274221 - gogol-core, 274222 - }: 274925 + { mkDerivation, gogol-core }: 274223 274926 mkDerivation { 274224 274927 pname = "gogol-apps-tasks"; 274225 - version = "0.5.0"; 274226 - sha256 = "0cb61wqjq8za2d44i0h561hzp2nmyynr2fy24mbhj2gb0zcd14bc"; 274227 - libraryHaskellDepends = [ 274228 - base 274229 - gogol-core 274230 - ]; 274928 + version = "1.0.0"; 274929 + sha256 = "1imkjjq2l8j36anzn4rv51mcdr3j1w9wxk2z4ps8py9whz2yfqa3"; 274930 + libraryHaskellDepends = [ gogol-core ]; 274231 274931 description = "Google Tasks SDK"; 274232 - license = "unknown"; 274932 + license = lib.licenses.mpl20; 274233 274933 } 274234 274934 ) { }; 274235 274935 274236 274936 "gogol-appstate" = callPackage ( 274237 - { 274238 - mkDerivation, 274239 - base, 274240 - gogol-core, 274241 - }: 274937 + { mkDerivation, gogol-core }: 274242 274938 mkDerivation { 274243 274939 pname = "gogol-appstate"; 274244 - version = "0.5.0"; 274245 - sha256 = "1gx52lnrp6mdsf168x0viwkj8pr49a0npf98a402ij3gndsn28aq"; 274246 - libraryHaskellDepends = [ 274247 - base 274248 - gogol-core 274249 - ]; 274940 + version = "1.0.0"; 274941 + sha256 = "1ipa3a1d6in8kvk6qrbmpsfns30nci95dlsb2x3ds8jx9rwffsad"; 274942 + libraryHaskellDepends = [ gogol-core ]; 274250 274943 description = "Google App State SDK"; 274251 - license = "unknown"; 274944 + license = lib.licenses.mpl20; 274252 274945 } 274253 274946 ) { }; 274254 274947 ··· 274274 274967 ) { }; 274275 274968 274276 274969 "gogol-bigquery" = callPackage ( 274277 - { 274278 - mkDerivation, 274279 - base, 274280 - gogol-core, 274281 - }: 274970 + { mkDerivation, gogol-core }: 274282 274971 mkDerivation { 274283 274972 pname = "gogol-bigquery"; 274284 - version = "0.5.0"; 274285 - sha256 = "1z3rdh9qrabycxnxrzay6ddw5l97qws48hn78g5pkbn73z1dh22z"; 274286 - libraryHaskellDepends = [ 274287 - base 274288 - gogol-core 274289 - ]; 274973 + version = "1.0.0"; 274974 + sha256 = "0r19gn2i4bvbacvsaw371nwiif41zi3bqvkv1b92nfyzig9nnnpr"; 274975 + libraryHaskellDepends = [ gogol-core ]; 274290 274976 description = "Google BigQuery SDK"; 274291 - license = "unknown"; 274977 + license = lib.licenses.mpl20; 274292 274978 } 274293 274979 ) { }; 274294 274980 274295 274981 "gogol-bigquerydatatransfer" = callPackage ( 274296 - { 274297 - mkDerivation, 274298 - base, 274299 - gogol-core, 274300 - }: 274982 + { mkDerivation, gogol-core }: 274301 274983 mkDerivation { 274302 274984 pname = "gogol-bigquerydatatransfer"; 274303 - version = "0.5.0"; 274304 - sha256 = "13pbbhk4ryg7vpkhkdvkjhc4sjnizdpjll4x9inb0zm8k1ki21ws"; 274305 - libraryHaskellDepends = [ 274306 - base 274307 - gogol-core 274308 - ]; 274985 + version = "1.0.0"; 274986 + sha256 = "0vv8jhqk2z1ji8l2k83021ycsbqqf4mkzq13k6yra5k62f886hb0"; 274987 + libraryHaskellDepends = [ gogol-core ]; 274309 274988 description = "Google BigQuery Data Transfer SDK"; 274310 - license = "unknown"; 274989 + license = lib.licenses.mpl20; 274311 274990 } 274312 274991 ) { }; 274313 274992 274314 274993 "gogol-bigtableadmin" = callPackage ( 274315 - { 274316 - mkDerivation, 274317 - base, 274318 - gogol-core, 274319 - }: 274994 + { mkDerivation, gogol-core }: 274320 274995 mkDerivation { 274321 274996 pname = "gogol-bigtableadmin"; 274322 - version = "0.5.0"; 274323 - sha256 = "0nxrcyf3spmhchmmjbszpv935lcwb979zfil9iwdigymq5wvfzgx"; 274324 - libraryHaskellDepends = [ 274325 - base 274326 - gogol-core 274327 - ]; 274997 + version = "1.0.0"; 274998 + sha256 = "1q30h5qgrxwi3vpk28iklmy220lhvpk1bc1cdl2wvj9g87vk3jyg"; 274999 + libraryHaskellDepends = [ gogol-core ]; 274328 275000 description = "Google Cloud Bigtable Admin SDK"; 274329 - license = "unknown"; 275001 + license = lib.licenses.mpl20; 274330 275002 } 274331 275003 ) { }; 274332 275004 274333 275005 "gogol-billing" = callPackage ( 274334 - { 274335 - mkDerivation, 274336 - base, 274337 - gogol-core, 274338 - }: 275006 + { mkDerivation, gogol-core }: 274339 275007 mkDerivation { 274340 275008 pname = "gogol-billing"; 274341 - version = "0.5.0"; 274342 - sha256 = "1zx7k5qhasvjz1568znasix6xrkxhsfhcsqwv6r1zd5a3pnzvaxm"; 274343 - libraryHaskellDepends = [ 274344 - base 274345 - gogol-core 274346 - ]; 275009 + version = "1.0.0"; 275010 + sha256 = "0ws694ymsrlk4hw1jzqi4lpjjmjas8cdvxxz9dcmkbd3yhpsq16z"; 275011 + libraryHaskellDepends = [ gogol-core ]; 274347 275012 description = "Google Cloud Billing SDK"; 274348 - license = "unknown"; 275013 + license = lib.licenses.mpl20; 274349 275014 } 274350 275015 ) { }; 274351 275016 274352 275017 "gogol-binaryauthorization" = callPackage ( 274353 - { 274354 - mkDerivation, 274355 - base, 274356 - gogol-core, 274357 - }: 275018 + { mkDerivation, gogol-core }: 274358 275019 mkDerivation { 274359 275020 pname = "gogol-binaryauthorization"; 274360 - version = "0.5.0"; 274361 - sha256 = "19gbql17mrxn4xgdbl96f245fckaj5gwwggn5f7xa59ahzbgfgay"; 274362 - libraryHaskellDepends = [ 274363 - base 274364 - gogol-core 274365 - ]; 275021 + version = "1.0.0"; 275022 + sha256 = "0m82qlih6dxijd83bsjfbw4dxrn1k1w8gnfdxdxxvccf58xxkb48"; 275023 + libraryHaskellDepends = [ gogol-core ]; 274366 275024 description = "Google Binary Authorization SDK"; 274367 - license = "unknown"; 275025 + license = lib.licenses.mpl20; 274368 275026 } 274369 275027 ) { }; 274370 275028 274371 275029 "gogol-blogger" = callPackage ( 274372 - { 274373 - mkDerivation, 274374 - base, 274375 - gogol-core, 274376 - }: 275030 + { mkDerivation, gogol-core }: 274377 275031 mkDerivation { 274378 275032 pname = "gogol-blogger"; 274379 - version = "0.5.0"; 274380 - sha256 = "027g8vj7msdzmkb7sjbd9s0p3zpxyal1l0daxbw1bhwr9lrd8j94"; 274381 - libraryHaskellDepends = [ 274382 - base 274383 - gogol-core 274384 - ]; 275033 + version = "1.0.0"; 275034 + sha256 = "02qrqqkhy7v14jygqnwv99bkfmnjpkjbxx33avk3fzx5vfh04phh"; 275035 + libraryHaskellDepends = [ gogol-core ]; 274385 275036 description = "Google Blogger SDK"; 274386 - license = "unknown"; 275037 + license = lib.licenses.mpl20; 274387 275038 } 274388 275039 ) { }; 274389 275040 274390 275041 "gogol-books" = callPackage ( 274391 - { 274392 - mkDerivation, 274393 - base, 274394 - gogol-core, 274395 - }: 275042 + { mkDerivation, gogol-core }: 274396 275043 mkDerivation { 274397 275044 pname = "gogol-books"; 274398 - version = "0.5.0"; 274399 - sha256 = "07rd2592hqvbx1lkz9hgrqjfy91a6g5vhy6d88yqzzyl1mkwq405"; 274400 - libraryHaskellDepends = [ 274401 - base 274402 - gogol-core 274403 - ]; 275045 + version = "1.0.0"; 275046 + sha256 = "0b8r416cg9cy36adv4frndcc64vy1wcqmhpshbs4ba583yqxndw6"; 275047 + libraryHaskellDepends = [ gogol-core ]; 274404 275048 description = "Google Books SDK"; 274405 - license = "unknown"; 275049 + license = lib.licenses.mpl20; 274406 275050 } 274407 275051 ) { }; 274408 275052 274409 275053 "gogol-chat" = callPackage ( 274410 - { 274411 - mkDerivation, 274412 - base, 274413 - gogol-core, 274414 - }: 275054 + { mkDerivation, gogol-core }: 274415 275055 mkDerivation { 274416 275056 pname = "gogol-chat"; 274417 - version = "0.5.0"; 274418 - sha256 = "0dxwfml51xh3a04ghhr41dbaayq1c36klaiwams3rq95ak7mnq6i"; 274419 - libraryHaskellDepends = [ 274420 - base 274421 - gogol-core 274422 - ]; 274423 - description = "Google Hangouts Chat SDK"; 274424 - license = "unknown"; 275057 + version = "1.0.0"; 275058 + sha256 = "1m5ikfi8gl8xsi1kgv3ca7pfjd56gykw29s4x5mkm76a727sy454"; 275059 + libraryHaskellDepends = [ gogol-core ]; 275060 + description = "Google Chat SDK"; 275061 + license = lib.licenses.mpl20; 274425 275062 } 274426 275063 ) { }; 274427 275064 274428 275065 "gogol-civicinfo" = callPackage ( 274429 - { 274430 - mkDerivation, 274431 - base, 274432 - gogol-core, 274433 - }: 275066 + { mkDerivation, gogol-core }: 274434 275067 mkDerivation { 274435 275068 pname = "gogol-civicinfo"; 274436 - version = "0.5.0"; 274437 - sha256 = "04kv6rnaiq1bxn46ir1l5w6w5qysb6f85ly3c9jksf0m5607gxxr"; 274438 - libraryHaskellDepends = [ 274439 - base 274440 - gogol-core 274441 - ]; 275069 + version = "1.0.0"; 275070 + sha256 = "1cg0xvxs8hkdzrsal7wn0gchscssvnwpfx2kzqqv3k539vjxb07w"; 275071 + libraryHaskellDepends = [ gogol-core ]; 274442 275072 description = "Google Civic Information SDK"; 274443 - license = "unknown"; 275073 + license = lib.licenses.mpl20; 274444 275074 } 274445 275075 ) { }; 274446 275076 274447 275077 "gogol-classroom" = callPackage ( 274448 - { 274449 - mkDerivation, 274450 - base, 274451 - gogol-core, 274452 - }: 275078 + { mkDerivation, gogol-core }: 274453 275079 mkDerivation { 274454 275080 pname = "gogol-classroom"; 274455 - version = "0.5.0"; 274456 - sha256 = "0hh6kbknnz7drd6ba1irr9wk5vhf51pgiskydgcav3f251j31sx4"; 274457 - libraryHaskellDepends = [ 274458 - base 274459 - gogol-core 274460 - ]; 275081 + version = "1.0.0"; 275082 + sha256 = "0d32fmi65cmhallbiwifwzbwald508025crshh951g2l4sypdbsx"; 275083 + libraryHaskellDepends = [ gogol-core ]; 274461 275084 description = "Google Classroom SDK"; 274462 - license = "unknown"; 275085 + license = lib.licenses.mpl20; 274463 275086 } 274464 275087 ) { }; 274465 275088 274466 275089 "gogol-cloudasset" = callPackage ( 274467 - { 274468 - mkDerivation, 274469 - base, 274470 - gogol-core, 274471 - }: 275090 + { mkDerivation, gogol-core }: 274472 275091 mkDerivation { 274473 275092 pname = "gogol-cloudasset"; 274474 - version = "0.5.0"; 274475 - sha256 = "0368lmz0nsffs9pj1v4ab5yx5xhfh1g27c9l3fs49aihdrvij3yk"; 274476 - libraryHaskellDepends = [ 274477 - base 274478 - gogol-core 274479 - ]; 275093 + version = "1.0.0"; 275094 + sha256 = "1r2ijkzlqi2a34qq6978n8f3iqn2f14srw8cyglhy7if6f23ybp0"; 275095 + libraryHaskellDepends = [ gogol-core ]; 274480 275096 description = "Google Cloud Asset SDK"; 274481 - license = "unknown"; 275097 + license = lib.licenses.mpl20; 274482 275098 } 274483 275099 ) { }; 274484 275100 274485 275101 "gogol-clouderrorreporting" = callPackage ( 274486 - { 274487 - mkDerivation, 274488 - base, 274489 - gogol-core, 274490 - }: 275102 + { mkDerivation, gogol-core }: 274491 275103 mkDerivation { 274492 275104 pname = "gogol-clouderrorreporting"; 274493 - version = "0.5.0"; 274494 - sha256 = "1hsgrpc9cbazn5a1g6lsg5azd8bgl45b95djwy13bc6vi9xwsr28"; 274495 - libraryHaskellDepends = [ 274496 - base 274497 - gogol-core 274498 - ]; 274499 - description = "Google Stackdriver Error Reporting SDK"; 274500 - license = "unknown"; 275105 + version = "1.0.0"; 275106 + sha256 = "16scs0jzk0fbvhchf68f69b3pmipffdvi38ihfdn7495dipikpjp"; 275107 + libraryHaskellDepends = [ gogol-core ]; 275108 + description = "Google Error Reporting SDK"; 275109 + license = lib.licenses.mpl20; 274501 275110 } 274502 275111 ) { }; 274503 275112 274504 275113 "gogol-cloudfunctions" = callPackage ( 274505 - { 274506 - mkDerivation, 274507 - base, 274508 - gogol-core, 274509 - }: 275114 + { mkDerivation, gogol-core }: 274510 275115 mkDerivation { 274511 275116 pname = "gogol-cloudfunctions"; 274512 - version = "0.5.0"; 274513 - sha256 = "1pv7h53zyqlp7wbw48hxxp3x9n515v0jdkjnpxqbszfhza28jsy9"; 274514 - libraryHaskellDepends = [ 274515 - base 274516 - gogol-core 274517 - ]; 275117 + version = "1.0.0"; 275118 + sha256 = "1w5cpsafgks7zhx08bri3sx9m30ad39wxraa296czhvzhlrz95qq"; 275119 + libraryHaskellDepends = [ gogol-core ]; 274518 275120 description = "Google Cloud Functions SDK"; 274519 - license = "unknown"; 275121 + license = lib.licenses.mpl20; 274520 275122 } 274521 275123 ) { }; 274522 275124 274523 275125 "gogol-cloudidentity" = callPackage ( 274524 - { 274525 - mkDerivation, 274526 - base, 274527 - gogol-core, 274528 - }: 275126 + { mkDerivation, gogol-core }: 274529 275127 mkDerivation { 274530 275128 pname = "gogol-cloudidentity"; 274531 - version = "0.5.0"; 274532 - sha256 = "1z4ncvzggpn52r75bl7y9mk19vdpsimxfflggvzz1lgy941ciyil"; 274533 - libraryHaskellDepends = [ 274534 - base 274535 - gogol-core 274536 - ]; 275129 + version = "1.0.0"; 275130 + sha256 = "0ygdq4fvgbbjw1jzrvr7r02qjjvr21fjsyvjs5r781bsps9msr66"; 275131 + libraryHaskellDepends = [ gogol-core ]; 274537 275132 description = "Google Cloud Identity SDK"; 274538 - license = "unknown"; 275133 + license = lib.licenses.mpl20; 274539 275134 } 274540 275135 ) { }; 274541 275136 274542 275137 "gogol-cloudiot" = callPackage ( 274543 - { 274544 - mkDerivation, 274545 - base, 274546 - gogol-core, 274547 - }: 275138 + { mkDerivation, gogol-core }: 274548 275139 mkDerivation { 274549 275140 pname = "gogol-cloudiot"; 274550 - version = "0.5.0"; 274551 - sha256 = "07zw4p2pi9gb90fzfg899xqbv50iwxc7rsb705wbpiyj80ynd85b"; 274552 - libraryHaskellDepends = [ 274553 - base 274554 - gogol-core 274555 - ]; 275141 + version = "1.0.0"; 275142 + sha256 = "1dvgygzzyk038p6f5qwgiipiz1466zmm760yi1ci9sh7fl4i4ndp"; 275143 + libraryHaskellDepends = [ gogol-core ]; 274556 275144 description = "Google Cloud IoT SDK"; 274557 - license = "unknown"; 275145 + license = lib.licenses.mpl20; 274558 275146 } 274559 275147 ) { }; 274560 275148 274561 275149 "gogol-cloudkms" = callPackage ( 274562 - { 274563 - mkDerivation, 274564 - base, 274565 - gogol-core, 274566 - }: 275150 + { mkDerivation, gogol-core }: 274567 275151 mkDerivation { 274568 275152 pname = "gogol-cloudkms"; 274569 - version = "0.5.0"; 274570 - sha256 = "0wpjmxrp1gl663sqcfgalrgjqw90wcahjlsg9bm6ay9y7g8mic0m"; 274571 - libraryHaskellDepends = [ 274572 - base 274573 - gogol-core 274574 - ]; 275153 + version = "1.0.0"; 275154 + sha256 = "0wvk6ll7xmlly1bi1kwpj3vp4scg06cjsb1xnpd2rd6j2fhi2vmz"; 275155 + libraryHaskellDepends = [ gogol-core ]; 274575 275156 description = "Google Cloud Key Management Service (KMS) SDK"; 274576 - license = "unknown"; 275157 + license = lib.licenses.mpl20; 274577 275158 } 274578 275159 ) { }; 274579 275160 ··· 274599 275180 ) { }; 274600 275181 274601 275182 "gogol-cloudprivatecatalog" = callPackage ( 274602 - { 274603 - mkDerivation, 274604 - base, 274605 - gogol-core, 274606 - }: 275183 + { mkDerivation, gogol-core }: 274607 275184 mkDerivation { 274608 275185 pname = "gogol-cloudprivatecatalog"; 274609 - version = "0.5.0"; 274610 - sha256 = "0y0z6wmsr2qsgj6wh4y37ph68fayk5szzk02xv0ncggrn5pbpm07"; 274611 - libraryHaskellDepends = [ 274612 - base 274613 - gogol-core 274614 - ]; 275186 + version = "1.0.0"; 275187 + sha256 = "18siw287hdcfmcdp0sxd1r94pk4rri71987mi5mjgxgan90lhgxk"; 275188 + libraryHaskellDepends = [ gogol-core ]; 274615 275189 description = "Google Cloud Private Catalog SDK"; 274616 - license = "unknown"; 275190 + license = lib.licenses.mpl20; 274617 275191 } 274618 275192 ) { }; 274619 275193 274620 275194 "gogol-cloudprivatecatalogproducer" = callPackage ( 274621 - { 274622 - mkDerivation, 274623 - base, 274624 - gogol-core, 274625 - }: 275195 + { mkDerivation, gogol-core }: 274626 275196 mkDerivation { 274627 275197 pname = "gogol-cloudprivatecatalogproducer"; 274628 - version = "0.5.0"; 274629 - sha256 = "1zq8pb3jm6gpp116q4x8i69jihgwnbyafdrnw5jxyl3ynr6bwll0"; 274630 - libraryHaskellDepends = [ 274631 - base 274632 - gogol-core 274633 - ]; 275198 + version = "1.0.0"; 275199 + sha256 = "12sf1rmiv52gfml3xcv76iza8mry9vhcpk4xzdb80yaw8343idj3"; 275200 + libraryHaskellDepends = [ gogol-core ]; 274634 275201 description = "Google Cloud Private Catalog Producer SDK"; 274635 - license = "unknown"; 275202 + license = lib.licenses.mpl20; 274636 275203 } 274637 275204 ) { }; 274638 275205 274639 275206 "gogol-cloudprofiler" = callPackage ( 274640 - { 274641 - mkDerivation, 274642 - base, 274643 - gogol-core, 274644 - }: 275207 + { mkDerivation, gogol-core }: 274645 275208 mkDerivation { 274646 275209 pname = "gogol-cloudprofiler"; 274647 - version = "0.5.0"; 274648 - sha256 = "022d1ix4a4n3kk108jl1yl2x13q57ahg4c9gvbxlvm7g3skz2rda"; 274649 - libraryHaskellDepends = [ 274650 - base 274651 - gogol-core 274652 - ]; 274653 - description = "Google Stackdriver Profiler SDK"; 274654 - license = "unknown"; 275210 + version = "1.0.0"; 275211 + sha256 = "0hwby0sk3rxsii76425hgy9d7p4v5l0infsqj0qbs0197qhwh4zi"; 275212 + libraryHaskellDepends = [ gogol-core ]; 275213 + description = "Google Cloud Profiler SDK"; 275214 + license = lib.licenses.mpl20; 274655 275215 } 274656 275216 ) { }; 274657 275217 274658 275218 "gogol-cloudscheduler" = callPackage ( 274659 - { 274660 - mkDerivation, 274661 - base, 274662 - gogol-core, 274663 - }: 275219 + { mkDerivation, gogol-core }: 274664 275220 mkDerivation { 274665 275221 pname = "gogol-cloudscheduler"; 274666 - version = "0.5.0"; 274667 - sha256 = "1vb3xwnn59b3fzybp09lxpysij37q8rxg3392gnf09mqg57vlcpw"; 274668 - libraryHaskellDepends = [ 274669 - base 274670 - gogol-core 274671 - ]; 275222 + version = "1.0.0"; 275223 + sha256 = "14gbhgyy8g7kaarxpy8llpvgydapq49sr8gzda144gkfq68svabw"; 275224 + libraryHaskellDepends = [ gogol-core ]; 274672 275225 description = "Google Cloud Scheduler SDK"; 274673 - license = "unknown"; 275226 + license = lib.licenses.mpl20; 274674 275227 } 274675 275228 ) { }; 274676 275229 274677 275230 "gogol-cloudsearch" = callPackage ( 274678 - { 274679 - mkDerivation, 274680 - base, 274681 - gogol-core, 274682 - }: 275231 + { mkDerivation, gogol-core }: 274683 275232 mkDerivation { 274684 275233 pname = "gogol-cloudsearch"; 274685 - version = "0.5.0"; 274686 - sha256 = "05nwvrdilz79hdlbzl853h3aj4gqcwql251slmzgg3s92haz0ygx"; 274687 - libraryHaskellDepends = [ 274688 - base 274689 - gogol-core 274690 - ]; 275234 + version = "1.0.0"; 275235 + sha256 = "1nhqkvm5v2m4xbcdi29m8padjzmampcsy3l61vknwfc0n6f89rhf"; 275236 + libraryHaskellDepends = [ gogol-core ]; 274691 275237 description = "Google Cloud Search SDK"; 274692 - license = "unknown"; 275238 + license = lib.licenses.mpl20; 274693 275239 } 274694 275240 ) { }; 274695 275241 274696 275242 "gogol-cloudshell" = callPackage ( 274697 - { 274698 - mkDerivation, 274699 - base, 274700 - gogol-core, 274701 - }: 275243 + { mkDerivation, gogol-core }: 274702 275244 mkDerivation { 274703 275245 pname = "gogol-cloudshell"; 274704 - version = "0.5.0"; 274705 - sha256 = "08hngcd8v08j7gp7pfyx6jm10p1g5w80ljq511f0jg5i5s6pkpr9"; 274706 - libraryHaskellDepends = [ 274707 - base 274708 - gogol-core 274709 - ]; 275246 + version = "1.0.0"; 275247 + sha256 = "1zi69k64klas18kmq525z52nchc9gqdk7v15x8prdln6x46ic1dn"; 275248 + libraryHaskellDepends = [ gogol-core ]; 274710 275249 description = "Google Cloud Shell SDK"; 274711 - license = "unknown"; 275250 + license = lib.licenses.mpl20; 274712 275251 } 274713 275252 ) { }; 274714 275253 274715 275254 "gogol-cloudtasks" = callPackage ( 274716 - { 274717 - mkDerivation, 274718 - base, 274719 - gogol-core, 274720 - }: 275255 + { mkDerivation, gogol-core }: 274721 275256 mkDerivation { 274722 275257 pname = "gogol-cloudtasks"; 274723 - version = "0.5.0"; 274724 - sha256 = "1rgm3m1nsvfc96vipsqjaci6h21j8lxk0qb9jxs7qmifyhlycr5a"; 274725 - libraryHaskellDepends = [ 274726 - base 274727 - gogol-core 274728 - ]; 275258 + version = "1.0.0"; 275259 + sha256 = "11ygaka332an20cyl5i9bj5jxkgddc36pfdl07mjab68b6500ggc"; 275260 + libraryHaskellDepends = [ gogol-core ]; 274729 275261 description = "Google Cloud Tasks SDK"; 274730 - license = "unknown"; 275262 + license = lib.licenses.mpl20; 274731 275263 } 274732 275264 ) { }; 274733 275265 274734 275266 "gogol-cloudtrace" = callPackage ( 274735 - { 274736 - mkDerivation, 274737 - base, 274738 - gogol-core, 274739 - }: 275267 + { mkDerivation, gogol-core }: 274740 275268 mkDerivation { 274741 275269 pname = "gogol-cloudtrace"; 274742 - version = "0.5.0"; 274743 - sha256 = "12yh4ks9mwfk48qqgkp38vv7xrrlqlnx1d41x851xwb7hw61288r"; 274744 - libraryHaskellDepends = [ 274745 - base 274746 - gogol-core 274747 - ]; 274748 - description = "Google Stackdriver Trace SDK"; 274749 - license = "unknown"; 275270 + version = "1.0.0"; 275271 + sha256 = "0wnn3pfx28g7iqr8vwk2v5vqh06vwcmgjj0blwi9aznkm1g3qp1k"; 275272 + libraryHaskellDepends = [ gogol-core ]; 275273 + description = "Google Cloud Trace SDK"; 275274 + license = lib.licenses.mpl20; 274750 275275 } 274751 275276 ) { }; 274752 275277 274753 275278 "gogol-commentanalyzer" = callPackage ( 274754 - { 274755 - mkDerivation, 274756 - base, 274757 - gogol-core, 274758 - }: 275279 + { mkDerivation, gogol-core }: 274759 275280 mkDerivation { 274760 275281 pname = "gogol-commentanalyzer"; 274761 - version = "0.5.0"; 274762 - sha256 = "1psy2vd6xj2rlnacay6srp0lcy4bvfnkpqjg5yvl41qx74w11dc9"; 274763 - libraryHaskellDepends = [ 274764 - base 274765 - gogol-core 274766 - ]; 275282 + version = "1.0.0"; 275283 + sha256 = "1vcwyv86a3mpis6d1rgldn61qzxfz8x2ncfv3r7rrpr79zclqhkj"; 275284 + libraryHaskellDepends = [ gogol-core ]; 274767 275285 description = "Google Perspective Comment Analyzer SDK"; 274768 - license = "unknown"; 275286 + license = lib.licenses.mpl20; 274769 275287 } 274770 275288 ) { }; 274771 275289 274772 275290 "gogol-composer" = callPackage ( 274773 - { 274774 - mkDerivation, 274775 - base, 274776 - gogol-core, 274777 - }: 275291 + { mkDerivation, gogol-core }: 274778 275292 mkDerivation { 274779 275293 pname = "gogol-composer"; 274780 - version = "0.5.0"; 274781 - sha256 = "1hzdnrchczaha310sr5ndk7bwykvv6qy70hh2jcw6s5fg6kjmpi5"; 274782 - libraryHaskellDepends = [ 274783 - base 274784 - gogol-core 274785 - ]; 275294 + version = "1.0.0"; 275295 + sha256 = "0j4kabhl6wlyhqjiiz6qw6hc8q9c8c0x0ylqxfiwxgr8j0m3x17h"; 275296 + libraryHaskellDepends = [ gogol-core ]; 274786 275297 description = "Google Cloud Composer SDK"; 274787 - license = "unknown"; 275298 + license = lib.licenses.mpl20; 274788 275299 } 274789 275300 ) { }; 274790 275301 274791 275302 "gogol-compute" = callPackage ( 274792 - { 274793 - mkDerivation, 274794 - base, 274795 - gogol-core, 274796 - }: 275303 + { mkDerivation, gogol-core }: 274797 275304 mkDerivation { 274798 275305 pname = "gogol-compute"; 274799 - version = "0.5.0"; 274800 - sha256 = "1z0l373qb3swnli6987r5s6l1kkrrh4m3hc8mghchviz16hpwm30"; 274801 - libraryHaskellDepends = [ 274802 - base 274803 - gogol-core 274804 - ]; 275306 + version = "1.0.0"; 275307 + sha256 = "094p7nms03jypq44snnsz05z485dz5ynawcnmjjlmwh387i59j4x"; 275308 + libraryHaskellDepends = [ gogol-core ]; 274805 275309 description = "Google Compute Engine SDK"; 274806 - license = "unknown"; 275310 + license = lib.licenses.mpl20; 274807 275311 } 274808 275312 ) { }; 274809 275313 274810 275314 "gogol-consumersurveys" = callPackage ( 274811 - { 274812 - mkDerivation, 274813 - base, 274814 - gogol-core, 274815 - }: 275315 + { mkDerivation, gogol-core }: 274816 275316 mkDerivation { 274817 275317 pname = "gogol-consumersurveys"; 274818 - version = "0.5.0"; 274819 - sha256 = "13az55a4hdpgrsfa4s4x2l40yjlfl01ypba3p1z36ckv70yqvmax"; 274820 - libraryHaskellDepends = [ 274821 - base 274822 - gogol-core 274823 - ]; 275318 + version = "1.0.0"; 275319 + sha256 = "01q4dmqxwdy8p9ix9dhj0dgqs71z7mmjznybv2r8jmfwxm4nxgka"; 275320 + libraryHaskellDepends = [ gogol-core ]; 274824 275321 description = "Google Consumer Surveys SDK"; 274825 - license = "unknown"; 275322 + license = lib.licenses.mpl20; 274826 275323 } 274827 275324 ) { }; 274828 275325 274829 275326 "gogol-container" = callPackage ( 274830 - { 274831 - mkDerivation, 274832 - base, 274833 - gogol-core, 274834 - }: 275327 + { mkDerivation, gogol-core }: 274835 275328 mkDerivation { 274836 275329 pname = "gogol-container"; 274837 - version = "0.5.0"; 274838 - sha256 = "06pjabcch02pknn8rqq2kl4zyb331v89iq3l6i279i5prqp8jkh2"; 274839 - libraryHaskellDepends = [ 274840 - base 274841 - gogol-core 274842 - ]; 275330 + version = "1.0.0"; 275331 + sha256 = "0ci3xdl0rb5nq54z6i748gh240ipgp9wa36pncq3yasf58pn9rvp"; 275332 + libraryHaskellDepends = [ gogol-core ]; 274843 275333 description = "Google Kubernetes Engine SDK"; 274844 - license = "unknown"; 275334 + license = lib.licenses.mpl20; 274845 275335 } 274846 275336 ) { }; 274847 275337 274848 275338 "gogol-containeranalysis" = callPackage ( 274849 - { 274850 - mkDerivation, 274851 - base, 274852 - gogol-core, 274853 - }: 275339 + { mkDerivation, gogol-core }: 274854 275340 mkDerivation { 274855 275341 pname = "gogol-containeranalysis"; 274856 - version = "0.5.0"; 274857 - sha256 = "059nkdz6zb9ffi5731dfrppk2cv5mcvh84x8b30yhfp63vs083dp"; 274858 - libraryHaskellDepends = [ 274859 - base 274860 - gogol-core 274861 - ]; 275342 + version = "1.0.0"; 275343 + sha256 = "1vzmzbgr88qij6fgi2gsz3iavvbzdxnpjf864l656fkvr5xw83wl"; 275344 + libraryHaskellDepends = [ gogol-core ]; 274862 275345 description = "Google Container Analysis SDK"; 274863 - license = "unknown"; 275346 + license = lib.licenses.mpl20; 274864 275347 } 274865 275348 ) { }; 274866 275349 274867 275350 "gogol-containerbuilder" = callPackage ( 274868 - { 274869 - mkDerivation, 274870 - base, 274871 - gogol-core, 274872 - }: 275351 + { mkDerivation, gogol-core }: 274873 275352 mkDerivation { 274874 275353 pname = "gogol-containerbuilder"; 274875 - version = "0.5.0"; 274876 - sha256 = "04jrblg8z1sji9xg6qbypxkbwzidx76hwy2c9kdgchjj298xifcc"; 274877 - libraryHaskellDepends = [ 274878 - base 274879 - gogol-core 274880 - ]; 275354 + version = "1.0.0"; 275355 + sha256 = "12mmiza1sd4fryy86kzy88adw8nkswxpf1r2sryndjkyk9a47knx"; 275356 + libraryHaskellDepends = [ gogol-core ]; 274881 275357 description = "Google Cloud Build SDK"; 274882 - license = "unknown"; 275358 + license = lib.licenses.mpl20; 274883 275359 } 274884 275360 ) { }; 274885 275361 ··· 274889 275365 aeson, 274890 275366 attoparsec, 274891 275367 base, 274892 - bifunctors, 275368 + base64, 274893 275369 bytestring, 274894 275370 case-insensitive, 274895 275371 conduit, ··· 274911 275387 }: 274912 275388 mkDerivation { 274913 275389 pname = "gogol-core"; 274914 - version = "0.5.0"; 274915 - sha256 = "0xvlrx4hzhwp3slinh8apnxlgxmispjjnmwsfbpi4p9n451ilx93"; 274916 - revision = "1"; 274917 - editedCabalFile = "0k6nhsl0jh233ym25fh03nc2gja6q27hcav1kbs9lfpyf0qdvvyl"; 275390 + version = "1.0.0.0"; 275391 + sha256 = "0gspq5vniaw4k1gcsk4fjjq6wy4akdibfkvmxkmxrcqg9jmvlja2"; 274918 275392 libraryHaskellDepends = [ 274919 275393 aeson 274920 275394 attoparsec 274921 275395 base 274922 - bifunctors 275396 + base64 274923 275397 bytestring 274924 275398 case-insensitive 274925 275399 conduit ··· 274943 275417 tasty 274944 275418 ]; 274945 275419 description = "Core data types and functionality for Gogol libraries"; 274946 - license = "unknown"; 275420 + license = lib.licenses.mpl20; 274947 275421 } 274948 275422 ) { }; 274949 275423 274950 275424 "gogol-customsearch" = callPackage ( 274951 - { 274952 - mkDerivation, 274953 - base, 274954 - gogol-core, 274955 - }: 275425 + { mkDerivation, gogol-core }: 274956 275426 mkDerivation { 274957 275427 pname = "gogol-customsearch"; 274958 - version = "0.5.0"; 274959 - sha256 = "1rfc932v4pwffry7864in7q9g68xzqz2sharzwfn8ql04la88fg7"; 274960 - libraryHaskellDepends = [ 274961 - base 274962 - gogol-core 274963 - ]; 274964 - description = "Google CustomSearch SDK"; 274965 - license = "unknown"; 275428 + version = "1.0.0"; 275429 + sha256 = "04yvwb12qpf57p82a7j5h7z0ckxmfircxzyl1a9h8qwmkf2h9g9n"; 275430 + libraryHaskellDepends = [ gogol-core ]; 275431 + description = "Google Custom Search SDK"; 275432 + license = lib.licenses.mpl20; 274966 275433 } 274967 275434 ) { }; 274968 275435 274969 275436 "gogol-dataflow" = callPackage ( 274970 - { 274971 - mkDerivation, 274972 - base, 274973 - gogol-core, 274974 - }: 275437 + { mkDerivation, gogol-core }: 274975 275438 mkDerivation { 274976 275439 pname = "gogol-dataflow"; 274977 - version = "0.5.0"; 274978 - sha256 = "0k27idpz6n8gilpm5cb1yz6x6x89qlnpqg7jzpp4ipld1h4m6xp1"; 274979 - libraryHaskellDepends = [ 274980 - base 274981 - gogol-core 274982 - ]; 275440 + version = "1.0.0"; 275441 + sha256 = "0qi91p8x8jx3rnz4vpk7mkcms1hqjhwlmrvpjzxx489bazllsz66"; 275442 + libraryHaskellDepends = [ gogol-core ]; 274983 275443 description = "Google Dataflow SDK"; 274984 - license = "unknown"; 275444 + license = lib.licenses.mpl20; 274985 275445 } 274986 275446 ) { }; 274987 275447 274988 275448 "gogol-datafusion" = callPackage ( 274989 - { 274990 - mkDerivation, 274991 - base, 274992 - gogol-core, 274993 - }: 275449 + { mkDerivation, gogol-core }: 274994 275450 mkDerivation { 274995 275451 pname = "gogol-datafusion"; 274996 - version = "0.5.0"; 274997 - sha256 = "0g90fa6mdicv4fyv999vild0accvsd4kr7mj9b008b5f4x286wpn"; 274998 - libraryHaskellDepends = [ 274999 - base 275000 - gogol-core 275001 - ]; 275452 + version = "1.0.0"; 275453 + sha256 = "0r28ccchciw067w1gsm9pcfhnmr6ggk0m5p27i3rhwz1v3mhspnf"; 275454 + libraryHaskellDepends = [ gogol-core ]; 275002 275455 description = "Google Cloud Data Fusion SDK"; 275003 - license = "unknown"; 275456 + license = lib.licenses.mpl20; 275004 275457 } 275005 275458 ) { }; 275006 275459 275007 275460 "gogol-dataproc" = callPackage ( 275008 - { 275009 - mkDerivation, 275010 - base, 275011 - gogol-core, 275012 - }: 275461 + { mkDerivation, gogol-core }: 275013 275462 mkDerivation { 275014 275463 pname = "gogol-dataproc"; 275015 - version = "0.5.0"; 275016 - sha256 = "0v1h6621v0aj415c8d11rfgri40vh3d1h3wl5i40nnz81qa11d5j"; 275017 - libraryHaskellDepends = [ 275018 - base 275019 - gogol-core 275020 - ]; 275464 + version = "1.0.0"; 275465 + sha256 = "1gls8g771b7d90a57zz30cwpg0sr9vjmjwkb2sn1syr3q82vz8ba"; 275466 + libraryHaskellDepends = [ gogol-core ]; 275021 275467 description = "Google Cloud Dataproc SDK"; 275022 - license = "unknown"; 275468 + license = lib.licenses.mpl20; 275023 275469 } 275024 275470 ) { }; 275025 275471 275026 275472 "gogol-datastore" = callPackage ( 275027 - { 275028 - mkDerivation, 275029 - base, 275030 - gogol-core, 275031 - }: 275473 + { mkDerivation, gogol-core }: 275032 275474 mkDerivation { 275033 275475 pname = "gogol-datastore"; 275034 - version = "0.5.0"; 275035 - sha256 = "17raqp9la38r2jbx5438hxi12blkckzfdgmfvnw05isdwnz1azjl"; 275036 - libraryHaskellDepends = [ 275037 - base 275038 - gogol-core 275039 - ]; 275476 + version = "1.0.0"; 275477 + sha256 = "0d727wn1yr4w5svvzsfyvn8ybl6l0ijr1mq86zwpz041709llbfg"; 275478 + libraryHaskellDepends = [ gogol-core ]; 275040 275479 description = "Google Cloud Datastore SDK"; 275041 - license = "unknown"; 275480 + license = lib.licenses.mpl20; 275042 275481 } 275043 275482 ) { }; 275044 275483 275045 275484 "gogol-debugger" = callPackage ( 275046 - { 275047 - mkDerivation, 275048 - base, 275049 - gogol-core, 275050 - }: 275485 + { mkDerivation, gogol-core }: 275051 275486 mkDerivation { 275052 275487 pname = "gogol-debugger"; 275053 - version = "0.5.0"; 275054 - sha256 = "0a29kcihp90s6zvc8f9733rylsnf6098vkvqx7nsrg78x7qcz48p"; 275055 - libraryHaskellDepends = [ 275056 - base 275057 - gogol-core 275058 - ]; 275059 - description = "Google Stackdriver Debugger SDK"; 275060 - license = "unknown"; 275488 + version = "1.0.0"; 275489 + sha256 = "0m71pa6ilqy5s20vmn8q4gn1vikr2fjxvhz8h54qswn5sanjpiz8"; 275490 + libraryHaskellDepends = [ gogol-core ]; 275491 + description = "Google Cloud Debugger API (Deprecated) SDK"; 275492 + license = lib.licenses.mpl20; 275061 275493 } 275062 275494 ) { }; 275063 275495 275064 275496 "gogol-deploymentmanager" = callPackage ( 275065 - { 275066 - mkDerivation, 275067 - base, 275068 - gogol-core, 275069 - }: 275497 + { mkDerivation, gogol-core }: 275070 275498 mkDerivation { 275071 275499 pname = "gogol-deploymentmanager"; 275072 - version = "0.5.0"; 275073 - sha256 = "0l52j1vlnhm5dnz9jfld2rixs511l567gw7dbd2ylnx77632fvsw"; 275074 - libraryHaskellDepends = [ 275075 - base 275076 - gogol-core 275077 - ]; 275078 - description = "Google Cloud Deployment Manager SDK"; 275079 - license = "unknown"; 275500 + version = "1.0.0"; 275501 + sha256 = "143k175i32i4nw54r1w7490wqj9g703a5787aw86r468xfagwmdy"; 275502 + libraryHaskellDepends = [ gogol-core ]; 275503 + description = "Google Cloud Deployment Manager V2 SDK"; 275504 + license = lib.licenses.mpl20; 275080 275505 } 275081 275506 ) { }; 275082 275507 275083 275508 "gogol-dfareporting" = callPackage ( 275084 - { 275085 - mkDerivation, 275086 - base, 275087 - gogol-core, 275088 - }: 275509 + { mkDerivation, gogol-core }: 275089 275510 mkDerivation { 275090 275511 pname = "gogol-dfareporting"; 275091 - version = "0.5.0"; 275092 - sha256 = "0s7s5cm7kdigx1212abzyv69p4gzpx4dkxvycip60p27chsiv47p"; 275093 - libraryHaskellDepends = [ 275094 - base 275095 - gogol-core 275096 - ]; 275097 - description = "Google DCM/DFA Reporting And Trafficking SDK"; 275098 - license = "unknown"; 275512 + version = "1.0.0"; 275513 + sha256 = "1vhc4fx78h26hcxhmgijfprsvshqgh8v6q9dialckh7rq226g0mn"; 275514 + libraryHaskellDepends = [ gogol-core ]; 275515 + description = "Google Campaign Manager 360 SDK"; 275516 + license = lib.licenses.mpl20; 275099 275517 } 275100 275518 ) { }; 275101 275519 275102 275520 "gogol-dialogflow" = callPackage ( 275103 - { 275104 - mkDerivation, 275105 - base, 275106 - gogol-core, 275107 - }: 275521 + { mkDerivation, gogol-core }: 275108 275522 mkDerivation { 275109 275523 pname = "gogol-dialogflow"; 275110 - version = "0.5.0"; 275111 - sha256 = "02q9qj713gz75gzdvqlladddniyk0waf2gbfqnh7dyirn8l67k6a"; 275112 - libraryHaskellDepends = [ 275113 - base 275114 - gogol-core 275115 - ]; 275524 + version = "1.0.0"; 275525 + sha256 = "1gijb69hmba7dh493zifv5809zri33fmi7fi8wmf3973qaylp7g6"; 275526 + libraryHaskellDepends = [ gogol-core ]; 275116 275527 description = "Google Dialogflow SDK"; 275117 - license = "unknown"; 275528 + license = lib.licenses.mpl20; 275118 275529 } 275119 275530 ) { }; 275120 275531 275121 275532 "gogol-digitalassetlinks" = callPackage ( 275122 - { 275123 - mkDerivation, 275124 - base, 275125 - gogol-core, 275126 - }: 275533 + { mkDerivation, gogol-core }: 275127 275534 mkDerivation { 275128 275535 pname = "gogol-digitalassetlinks"; 275129 - version = "0.5.0"; 275130 - sha256 = "04mfan610hzi9ar7rpmdwn4hw2m4v4n5hfz00si648vx6grn3835"; 275131 - libraryHaskellDepends = [ 275132 - base 275133 - gogol-core 275134 - ]; 275536 + version = "1.0.0"; 275537 + sha256 = "1a6r481sxp50x5mpw8inp4904jm0a21m1rcya2wijwrj8xblynpp"; 275538 + libraryHaskellDepends = [ gogol-core ]; 275135 275539 description = "Google Digital Asset Links SDK"; 275136 - license = "unknown"; 275540 + license = lib.licenses.mpl20; 275137 275541 } 275138 275542 ) { }; 275139 275543 275140 275544 "gogol-discovery" = callPackage ( 275141 - { 275142 - mkDerivation, 275143 - base, 275144 - gogol-core, 275145 - }: 275545 + { mkDerivation, gogol-core }: 275146 275546 mkDerivation { 275147 275547 pname = "gogol-discovery"; 275148 - version = "0.5.0"; 275149 - sha256 = "14igx8cs86v88vfvdw3fr090yk3f5dnpiggai1w2xnshbvg3gfdd"; 275150 - libraryHaskellDepends = [ 275151 - base 275152 - gogol-core 275153 - ]; 275548 + version = "1.0.0"; 275549 + sha256 = "1gyh5fbiv98j74p3bkg0kv1clszdpy8ksb47k4bnpjg8livfgzf4"; 275550 + libraryHaskellDepends = [ gogol-core ]; 275154 275551 description = "Google API Discovery Service SDK"; 275155 - license = "unknown"; 275552 + license = lib.licenses.mpl20; 275156 275553 } 275157 275554 ) { }; 275158 275555 275159 275556 "gogol-dlp" = callPackage ( 275160 - { 275161 - mkDerivation, 275162 - base, 275163 - gogol-core, 275164 - }: 275557 + { mkDerivation, gogol-core }: 275165 275558 mkDerivation { 275166 275559 pname = "gogol-dlp"; 275167 - version = "0.5.0"; 275168 - sha256 = "0wd5l1bjiaw5cp78ppz81ab3cb9dpgjw5iy3hz9cg0y6y8x6smm5"; 275169 - libraryHaskellDepends = [ 275170 - base 275171 - gogol-core 275172 - ]; 275173 - description = "Google Cloud Data Loss Prevention (DLP) SDK"; 275174 - license = "unknown"; 275560 + version = "1.0.0"; 275561 + sha256 = "15q8fr1y21zacz30kjvpxsn2irnzqjl5r2xvhkd2mbcpplyvcbcz"; 275562 + libraryHaskellDepends = [ gogol-core ]; 275563 + description = "Google Sensitive Data Protection (DLP) SDK"; 275564 + license = lib.licenses.mpl20; 275175 275565 } 275176 275566 ) { }; 275177 275567 275178 275568 "gogol-dns" = callPackage ( 275179 - { 275180 - mkDerivation, 275181 - base, 275182 - gogol-core, 275183 - }: 275569 + { mkDerivation, gogol-core }: 275184 275570 mkDerivation { 275185 275571 pname = "gogol-dns"; 275186 - version = "0.5.0"; 275187 - sha256 = "0wzlbpkaqd94dkgbg5nqss9kbyx2lqk0jbd97l9jmka1pmm0c30a"; 275188 - libraryHaskellDepends = [ 275189 - base 275190 - gogol-core 275191 - ]; 275572 + version = "1.0.0"; 275573 + sha256 = "1igqrn1w1jda0xplbslwib2mdv9mzhfb4dpqgymlmp5g1ps9qy28"; 275574 + libraryHaskellDepends = [ gogol-core ]; 275192 275575 description = "Google Cloud DNS SDK"; 275193 - license = "unknown"; 275576 + license = lib.licenses.mpl20; 275194 275577 } 275195 275578 ) { }; 275196 275579 275197 275580 "gogol-docs" = callPackage ( 275198 - { 275199 - mkDerivation, 275200 - base, 275201 - gogol-core, 275202 - }: 275581 + { mkDerivation, gogol-core }: 275203 275582 mkDerivation { 275204 275583 pname = "gogol-docs"; 275205 - version = "0.5.0"; 275206 - sha256 = "1ig79q8iwfmyrjy7jb27fcdd05zjgpi0aikw597gkjj9vga5jzms"; 275207 - libraryHaskellDepends = [ 275208 - base 275209 - gogol-core 275210 - ]; 275584 + version = "1.0.0"; 275585 + sha256 = "1chxs5a1wlql6vb9wqr9navijis7khbpndy0grwzfcdafcyz71jm"; 275586 + libraryHaskellDepends = [ gogol-core ]; 275211 275587 description = "Google Docs SDK"; 275212 - license = "unknown"; 275588 + license = lib.licenses.mpl20; 275213 275589 } 275214 275590 ) { }; 275215 275591 275216 275592 "gogol-doubleclick-bids" = callPackage ( 275217 - { 275218 - mkDerivation, 275219 - base, 275220 - gogol-core, 275221 - }: 275593 + { mkDerivation, gogol-core }: 275222 275594 mkDerivation { 275223 275595 pname = "gogol-doubleclick-bids"; 275224 - version = "0.5.0"; 275225 - sha256 = "1jk725c2viyvbi4i12zlvwnz855jnpjjfc9qp5rbbfkkyf8904n3"; 275226 - libraryHaskellDepends = [ 275227 - base 275228 - gogol-core 275229 - ]; 275596 + version = "1.0.0"; 275597 + sha256 = "01955ainvq9fmmjvkwpgbarmnplw30ilf05shsnjskdhp6b1hqvc"; 275598 + libraryHaskellDepends = [ gogol-core ]; 275230 275599 description = "Google DoubleClick Bid Manager SDK"; 275231 - license = "unknown"; 275600 + license = lib.licenses.mpl20; 275232 275601 } 275233 275602 ) { }; 275234 275603 275235 275604 "gogol-doubleclick-search" = callPackage ( 275236 - { 275237 - mkDerivation, 275238 - base, 275239 - gogol-core, 275240 - }: 275605 + { mkDerivation, gogol-core }: 275241 275606 mkDerivation { 275242 275607 pname = "gogol-doubleclick-search"; 275243 - version = "0.5.0"; 275244 - sha256 = "1kd0x3xb365r30gaz74wksny20dp96ynr9xvds2z4jnmabhlc1fx"; 275245 - libraryHaskellDepends = [ 275246 - base 275247 - gogol-core 275248 - ]; 275249 - description = "Google DoubleClick Search SDK"; 275250 - license = "unknown"; 275608 + version = "1.0.0"; 275609 + sha256 = "1l70nmx86wvixyr84zjhns69l58z1v65aiycmqi3i441c5hjrax2"; 275610 + libraryHaskellDepends = [ gogol-core ]; 275611 + description = "Google Search Ads 360 SDK"; 275612 + license = lib.licenses.mpl20; 275251 275613 } 275252 275614 ) { }; 275253 275615 275254 275616 "gogol-drive" = callPackage ( 275255 - { 275256 - mkDerivation, 275257 - base, 275258 - gogol-core, 275259 - }: 275617 + { mkDerivation, gogol-core }: 275260 275618 mkDerivation { 275261 275619 pname = "gogol-drive"; 275262 - version = "0.5.0"; 275263 - sha256 = "0qbdchfni89h0l28db37dl5ysjlzckby59ng7026xhjkk5c8iyrl"; 275264 - libraryHaskellDepends = [ 275265 - base 275266 - gogol-core 275267 - ]; 275620 + version = "1.0.0"; 275621 + sha256 = "0alf3jahdmkjxjzqj2bs5wlrvx7d3414kbhpi1pvdcy8s3fm2b49"; 275622 + libraryHaskellDepends = [ gogol-core ]; 275268 275623 description = "Google Drive SDK"; 275269 - license = "unknown"; 275624 + license = lib.licenses.mpl20; 275270 275625 } 275271 275626 ) { }; 275272 275627 275273 275628 "gogol-driveactivity" = callPackage ( 275274 - { 275275 - mkDerivation, 275276 - base, 275277 - gogol-core, 275278 - }: 275629 + { mkDerivation, gogol-core }: 275279 275630 mkDerivation { 275280 275631 pname = "gogol-driveactivity"; 275281 - version = "0.5.0"; 275282 - sha256 = "1n2frzhrz1rfbxm6lcxyd13q99wwlyp7c6n4pjy87skvd332xqsg"; 275283 - libraryHaskellDepends = [ 275284 - base 275285 - gogol-core 275286 - ]; 275632 + version = "1.0.0"; 275633 + sha256 = "06lnmdz833wvkh9h2q8q73mnqyp2klmfhg132zabwpcpkywlinvl"; 275634 + libraryHaskellDepends = [ gogol-core ]; 275287 275635 description = "Google Drive Activity SDK"; 275288 - license = "unknown"; 275636 + license = lib.licenses.mpl20; 275289 275637 } 275290 275638 ) { }; 275291 275639 275292 275640 "gogol-factchecktools" = callPackage ( 275293 - { 275294 - mkDerivation, 275295 - base, 275296 - gogol-core, 275297 - }: 275641 + { mkDerivation, gogol-core }: 275298 275642 mkDerivation { 275299 275643 pname = "gogol-factchecktools"; 275300 - version = "0.5.0"; 275301 - sha256 = "1bga1plk1v57v6lpyk292ia0fzxks6lj0jq9d5gqz7k22yaqwzl5"; 275302 - libraryHaskellDepends = [ 275303 - base 275304 - gogol-core 275305 - ]; 275644 + version = "1.0.0"; 275645 + sha256 = "1v2s3696i71z4pqclqc2x53c51n4llv6wbpvms1mr666zgmchvxr"; 275646 + libraryHaskellDepends = [ gogol-core ]; 275306 275647 description = "Google Fact Check Tools SDK"; 275307 - license = "unknown"; 275648 + license = lib.licenses.mpl20; 275308 275649 } 275309 275650 ) { }; 275310 275651 275311 275652 "gogol-file" = callPackage ( 275312 - { 275313 - mkDerivation, 275314 - base, 275315 - gogol-core, 275316 - }: 275653 + { mkDerivation, gogol-core }: 275317 275654 mkDerivation { 275318 275655 pname = "gogol-file"; 275319 - version = "0.5.0"; 275320 - sha256 = "1k0mc2vavnfpxx6h878iib3a15bp2h2mx7wq9pa3527syh5d424p"; 275321 - libraryHaskellDepends = [ 275322 - base 275323 - gogol-core 275324 - ]; 275656 + version = "1.0.0"; 275657 + sha256 = "0fd23xaqcqn6qq696i1dlrbdlk7yw15h8wq9jsy0l8sqa8f9ygn2"; 275658 + libraryHaskellDepends = [ gogol-core ]; 275325 275659 description = "Google Cloud Filestore SDK"; 275326 - license = "unknown"; 275660 + license = lib.licenses.mpl20; 275327 275661 } 275328 275662 ) { }; 275329 275663 275330 275664 "gogol-firebase-dynamiclinks" = callPackage ( 275331 - { 275332 - mkDerivation, 275333 - base, 275334 - gogol-core, 275335 - }: 275665 + { mkDerivation, gogol-core }: 275336 275666 mkDerivation { 275337 275667 pname = "gogol-firebase-dynamiclinks"; 275338 - version = "0.5.0"; 275339 - sha256 = "1hbknisl0358iznc45hhjixhdb3kh2b5chxiyq028ayl5w1p4rvn"; 275340 - libraryHaskellDepends = [ 275341 - base 275342 - gogol-core 275343 - ]; 275668 + version = "1.0.0"; 275669 + sha256 = "18ywm1xzr0sqj4pp6lsjw8pbhydimapnxa5xylybc1ii69jqq3xj"; 275670 + libraryHaskellDepends = [ gogol-core ]; 275344 275671 description = "Google Firebase Dynamic Links SDK"; 275345 - license = "unknown"; 275672 + license = lib.licenses.mpl20; 275346 275673 } 275347 275674 ) { }; 275348 275675 275349 275676 "gogol-firebase-rules" = callPackage ( 275350 - { 275351 - mkDerivation, 275352 - base, 275353 - gogol-core, 275354 - }: 275677 + { mkDerivation, gogol-core }: 275355 275678 mkDerivation { 275356 275679 pname = "gogol-firebase-rules"; 275357 - version = "0.5.0"; 275358 - sha256 = "06779qj9vjhvzw0d60ddxlzmij7sjjv67npav670xkgs3q71b655"; 275359 - libraryHaskellDepends = [ 275360 - base 275361 - gogol-core 275362 - ]; 275680 + version = "1.0.0"; 275681 + sha256 = "1znwn8xl2yfxarbf6gcmwlhrm7mn4xan89bd2sh1sd520155yw4q"; 275682 + libraryHaskellDepends = [ gogol-core ]; 275363 275683 description = "Google Firebase Rules SDK"; 275364 - license = "unknown"; 275684 + license = lib.licenses.mpl20; 275365 275685 } 275366 275686 ) { }; 275367 275687 275368 275688 "gogol-firebasehosting" = callPackage ( 275369 - { 275370 - mkDerivation, 275371 - base, 275372 - gogol-core, 275373 - }: 275689 + { mkDerivation, gogol-core }: 275374 275690 mkDerivation { 275375 275691 pname = "gogol-firebasehosting"; 275376 - version = "0.5.0"; 275377 - sha256 = "0h2k4ymqn0r5vpgqb1pzcydmcwx2s0x4yim5j47b963qqwrwb7yc"; 275378 - libraryHaskellDepends = [ 275379 - base 275380 - gogol-core 275381 - ]; 275692 + version = "1.0.0"; 275693 + sha256 = "0v0jbgffkxgk17qn79qjbcp3rnnfihcikb9709kwkz5vf246rzs7"; 275694 + libraryHaskellDepends = [ gogol-core ]; 275382 275695 description = "Google Firebase Hosting SDK"; 275383 - license = "unknown"; 275696 + license = lib.licenses.mpl20; 275384 275697 } 275385 275698 ) { }; 275386 275699 275387 275700 "gogol-firebaseremoteconfig" = callPackage ( 275388 - { 275389 - mkDerivation, 275390 - base, 275391 - gogol-core, 275392 - }: 275701 + { mkDerivation, gogol-core }: 275393 275702 mkDerivation { 275394 275703 pname = "gogol-firebaseremoteconfig"; 275395 - version = "0.5.0"; 275396 - sha256 = "1qpv689lrizcv308303ajzjvkh9z4hs256ibnmlk0835xzwcw1qc"; 275397 - libraryHaskellDepends = [ 275398 - base 275399 - gogol-core 275400 - ]; 275704 + version = "1.0.0"; 275705 + sha256 = "09n8bfaa9spara3yh5awjcfyxdwcag5qi7w01vk9m9snfzdypfrg"; 275706 + libraryHaskellDepends = [ gogol-core ]; 275401 275707 description = "Google Firebase Remote Config SDK"; 275402 - license = "unknown"; 275708 + license = lib.licenses.mpl20; 275403 275709 } 275404 275710 ) { }; 275405 275711 275406 275712 "gogol-firestore" = callPackage ( 275407 - { 275408 - mkDerivation, 275409 - base, 275410 - gogol-core, 275411 - }: 275713 + { mkDerivation, gogol-core }: 275412 275714 mkDerivation { 275413 275715 pname = "gogol-firestore"; 275414 - version = "0.5.0"; 275415 - sha256 = "13y9g4h21mis26x663pv9lhi9i3r4s6x4pcnnwsk20a0s83k8x2k"; 275416 - libraryHaskellDepends = [ 275417 - base 275418 - gogol-core 275419 - ]; 275716 + version = "1.0.0"; 275717 + sha256 = "0fillhmd5xdb45mfg62fr6vhki4gdc8mqvqzs56il3p70ykbrgby"; 275718 + libraryHaskellDepends = [ gogol-core ]; 275420 275719 description = "Google Cloud Firestore SDK"; 275421 - license = "unknown"; 275720 + license = lib.licenses.mpl20; 275422 275721 } 275423 275722 ) { }; 275424 275723 275425 275724 "gogol-fitness" = callPackage ( 275426 - { 275427 - mkDerivation, 275428 - base, 275429 - gogol-core, 275430 - }: 275725 + { mkDerivation, gogol-core }: 275431 275726 mkDerivation { 275432 275727 pname = "gogol-fitness"; 275433 - version = "0.5.0"; 275434 - sha256 = "0pbz6kjkrwcb1mz83gfmyf1mcdp6lsbdp450h79083xlpbwz0kwx"; 275435 - libraryHaskellDepends = [ 275436 - base 275437 - gogol-core 275438 - ]; 275728 + version = "1.0.0"; 275729 + sha256 = "19a63kbgf8r268ybj1dyd7z4bzaw2dd6ygp3pk4swabjjj1pfrvx"; 275730 + libraryHaskellDepends = [ gogol-core ]; 275439 275731 description = "Google Fitness SDK"; 275440 - license = "unknown"; 275732 + license = lib.licenses.mpl20; 275441 275733 } 275442 275734 ) { }; 275443 275735 275444 275736 "gogol-fonts" = callPackage ( 275445 - { 275446 - mkDerivation, 275447 - base, 275448 - gogol-core, 275449 - }: 275737 + { mkDerivation, gogol-core }: 275450 275738 mkDerivation { 275451 275739 pname = "gogol-fonts"; 275452 - version = "0.5.0"; 275453 - sha256 = "0cgkdgvs65znknf1dpdr2jxn3wan705i89bwfzfwavwykacsjqbk"; 275454 - libraryHaskellDepends = [ 275455 - base 275456 - gogol-core 275457 - ]; 275458 - description = "Google Fonts Developer SDK"; 275459 - license = "unknown"; 275740 + version = "1.0.0"; 275741 + sha256 = "15dsq67qnpnmninklr9pm5yy1xn8a459pvgmhaabbp2x31ghqjiv"; 275742 + libraryHaskellDepends = [ gogol-core ]; 275743 + description = "Google Web Fonts Developer SDK"; 275744 + license = lib.licenses.mpl20; 275460 275745 } 275461 275746 ) { }; 275462 275747 ··· 275482 275767 ) { }; 275483 275768 275484 275769 "gogol-fusiontables" = callPackage ( 275485 - { 275486 - mkDerivation, 275487 - base, 275488 - gogol-core, 275489 - }: 275770 + { mkDerivation, gogol-core }: 275490 275771 mkDerivation { 275491 275772 pname = "gogol-fusiontables"; 275492 - version = "0.5.0"; 275493 - sha256 = "1bi9cjm7xn5dq74a7r5y95snbfjwljmfjl5pxfh2cjshpjgdpd67"; 275494 - libraryHaskellDepends = [ 275495 - base 275496 - gogol-core 275497 - ]; 275773 + version = "1.0.0"; 275774 + sha256 = "18scbflas6w5avgsm5ndnj1qyn277mlj3v2fl71mrfjwr6171l5c"; 275775 + libraryHaskellDepends = [ gogol-core ]; 275498 275776 description = "Google Fusion Tables SDK"; 275499 - license = "unknown"; 275777 + license = lib.licenses.mpl20; 275500 275778 } 275501 275779 ) { }; 275502 275780 275503 275781 "gogol-games" = callPackage ( 275504 - { 275505 - mkDerivation, 275506 - base, 275507 - gogol-core, 275508 - }: 275782 + { mkDerivation, gogol-core }: 275509 275783 mkDerivation { 275510 275784 pname = "gogol-games"; 275511 - version = "0.5.0"; 275512 - sha256 = "0kdqw6l1fr37amhd830lyqrh87znbbbs2lxh7cbqr831gwj4qnpk"; 275513 - libraryHaskellDepends = [ 275514 - base 275515 - gogol-core 275516 - ]; 275785 + version = "1.0.0"; 275786 + sha256 = "0l73pqrsfnwxv3mbg6lxkzmbal1xb5gxcb3rnv16d60ng50xrpc3"; 275787 + libraryHaskellDepends = [ gogol-core ]; 275517 275788 description = "Google Play Game Services SDK"; 275518 - license = "unknown"; 275789 + license = lib.licenses.mpl20; 275519 275790 } 275520 275791 ) { }; 275521 275792 275522 275793 "gogol-games-configuration" = callPackage ( 275523 - { 275524 - mkDerivation, 275525 - base, 275526 - gogol-core, 275527 - }: 275794 + { mkDerivation, gogol-core }: 275528 275795 mkDerivation { 275529 275796 pname = "gogol-games-configuration"; 275530 - version = "0.5.0"; 275531 - sha256 = "0j2psg58f6ilvnvdq88vmq1b462dpfssij1pa6y5xmm62gvvv6i5"; 275532 - libraryHaskellDepends = [ 275533 - base 275534 - gogol-core 275535 - ]; 275797 + version = "1.0.0"; 275798 + sha256 = "1qfag0mqyp5fk7p225qlc2551hdyzpmflnx0i59b24vm2yym1y4a"; 275799 + libraryHaskellDepends = [ gogol-core ]; 275536 275800 description = "Google Play Game Services Publishing SDK"; 275537 - license = "unknown"; 275801 + license = lib.licenses.mpl20; 275538 275802 } 275539 275803 ) { }; 275540 275804 275541 275805 "gogol-games-management" = callPackage ( 275542 - { 275543 - mkDerivation, 275544 - base, 275545 - gogol-core, 275546 - }: 275806 + { mkDerivation, gogol-core }: 275547 275807 mkDerivation { 275548 275808 pname = "gogol-games-management"; 275549 - version = "0.5.0"; 275550 - sha256 = "0bnkv9vic8rly2ga4k73s8cnhvird3kv5nmy17560pw4q40a5d9n"; 275551 - libraryHaskellDepends = [ 275552 - base 275553 - gogol-core 275554 - ]; 275555 - description = "Google Play Game Services Management SDK"; 275556 - license = "unknown"; 275809 + version = "1.0.0"; 275810 + sha256 = "0zy5bqi8lsb6r19bb5sd8fjcqx9v4g0lphxj60p20p94k5vw7wcd"; 275811 + libraryHaskellDepends = [ gogol-core ]; 275812 + description = "Google Play Game Management SDK"; 275813 + license = lib.licenses.mpl20; 275557 275814 } 275558 275815 ) { }; 275559 275816 275560 275817 "gogol-genomics" = callPackage ( 275561 - { 275562 - mkDerivation, 275563 - base, 275564 - gogol-core, 275565 - }: 275818 + { mkDerivation, gogol-core }: 275566 275819 mkDerivation { 275567 275820 pname = "gogol-genomics"; 275568 - version = "0.5.0"; 275569 - sha256 = "0cygvkm388g0scmy51b2dmkj6kzpcdwpxd0w98dfmwhgvln3xgl2"; 275570 - libraryHaskellDepends = [ 275571 - base 275572 - gogol-core 275573 - ]; 275821 + version = "1.0.0"; 275822 + sha256 = "0ddyddxan844csb6mflrsq42ivvwrwcm6lhqy7wydysbf1wcfgmm"; 275823 + libraryHaskellDepends = [ gogol-core ]; 275574 275824 description = "Google Genomics SDK"; 275575 - license = "unknown"; 275825 + license = lib.licenses.mpl20; 275576 275826 } 275577 275827 ) { }; 275578 275828 275579 275829 "gogol-gmail" = callPackage ( 275580 - { 275581 - mkDerivation, 275582 - base, 275583 - gogol-core, 275584 - }: 275830 + { mkDerivation, gogol-core }: 275585 275831 mkDerivation { 275586 275832 pname = "gogol-gmail"; 275587 - version = "0.5.0"; 275588 - sha256 = "053l0k1h2wmwgqzywswhhmwh2275n6psiy8bk684dkzvdj1msbkz"; 275589 - libraryHaskellDepends = [ 275590 - base 275591 - gogol-core 275592 - ]; 275833 + version = "1.0.0"; 275834 + sha256 = "045hqcyypvi8c2d9lh6szp1crz1xk9ll2ll93w5viyvzz2fzlpza"; 275835 + libraryHaskellDepends = [ gogol-core ]; 275593 275836 description = "Google Gmail SDK"; 275594 - license = "unknown"; 275837 + license = lib.licenses.mpl20; 275595 275838 } 275596 275839 ) { }; 275597 275840 275598 275841 "gogol-groups-migration" = callPackage ( 275599 - { 275600 - mkDerivation, 275601 - base, 275602 - gogol-core, 275603 - }: 275842 + { mkDerivation, gogol-core }: 275604 275843 mkDerivation { 275605 275844 pname = "gogol-groups-migration"; 275606 - version = "0.5.0"; 275607 - sha256 = "1sbmnq1ivy8dcgngfprd7g5g08fvzgwhr5hrixg4gmw95hwplafi"; 275608 - libraryHaskellDepends = [ 275609 - base 275610 - gogol-core 275611 - ]; 275845 + version = "1.0.0"; 275846 + sha256 = "0gskbydkk39zs6aa8ss4y3ibnsdb69zmm7jbi6ijr56y7qv11fgm"; 275847 + libraryHaskellDepends = [ gogol-core ]; 275612 275848 description = "Google Groups Migration SDK"; 275613 - license = "unknown"; 275849 + license = lib.licenses.mpl20; 275614 275850 } 275615 275851 ) { }; 275616 275852 275617 275853 "gogol-groups-settings" = callPackage ( 275618 - { 275619 - mkDerivation, 275620 - base, 275621 - gogol-core, 275622 - }: 275854 + { mkDerivation, gogol-core }: 275623 275855 mkDerivation { 275624 275856 pname = "gogol-groups-settings"; 275625 - version = "0.5.0"; 275626 - sha256 = "0l1bwgwic8q252idfv8d6jamfqfghwxq4jkaan3dwwlgjc2b6b3a"; 275627 - libraryHaskellDepends = [ 275628 - base 275629 - gogol-core 275630 - ]; 275857 + version = "1.0.0"; 275858 + sha256 = "0n0j1m01y9k2q07mkrdm5n9pp3ahs9byhl0kpi8na30y4zhscxr8"; 275859 + libraryHaskellDepends = [ gogol-core ]; 275631 275860 description = "Google Groups Settings SDK"; 275632 - license = "unknown"; 275861 + license = lib.licenses.mpl20; 275633 275862 } 275634 275863 ) { }; 275635 275864 275636 275865 "gogol-healthcare" = callPackage ( 275637 - { 275638 - mkDerivation, 275639 - base, 275640 - gogol-core, 275641 - }: 275866 + { mkDerivation, gogol-core }: 275642 275867 mkDerivation { 275643 275868 pname = "gogol-healthcare"; 275644 - version = "0.5.0"; 275645 - sha256 = "1ny184rhkjs571ibnwznxhc8zxqc2bag7z0lj922v53js4bvbrld"; 275646 - libraryHaskellDepends = [ 275647 - base 275648 - gogol-core 275649 - ]; 275869 + version = "1.0.0"; 275870 + sha256 = "1dskfbpm1mv2dax64izj8sarkssajnbkinc4pwkvgfgjhf9l9sq9"; 275871 + libraryHaskellDepends = [ gogol-core ]; 275650 275872 description = "Google Cloud Healthcare SDK"; 275651 - license = "unknown"; 275873 + license = lib.licenses.mpl20; 275652 275874 } 275653 275875 ) { }; 275654 275876 275655 275877 "gogol-iam" = callPackage ( 275656 - { 275657 - mkDerivation, 275658 - base, 275659 - gogol-core, 275660 - }: 275878 + { mkDerivation, gogol-core }: 275661 275879 mkDerivation { 275662 275880 pname = "gogol-iam"; 275663 - version = "0.5.0"; 275664 - sha256 = "1hxzg3v9b8va2s76q3jizz84vfjnjrckv5ysy9193dv6yk68h48p"; 275665 - libraryHaskellDepends = [ 275666 - base 275667 - gogol-core 275668 - ]; 275881 + version = "1.0.0"; 275882 + sha256 = "0ylryxz1wa8v246mwzpvqkqmggj2gbd9mxmgf5cbnkibmnbcwswg"; 275883 + libraryHaskellDepends = [ gogol-core ]; 275669 275884 description = "Google Identity and Access Management (IAM) SDK"; 275670 - license = "unknown"; 275885 + license = lib.licenses.mpl20; 275671 275886 } 275672 275887 ) { }; 275673 275888 275674 275889 "gogol-iamcredentials" = callPackage ( 275675 - { 275676 - mkDerivation, 275677 - base, 275678 - gogol-core, 275679 - }: 275890 + { mkDerivation, gogol-core }: 275680 275891 mkDerivation { 275681 275892 pname = "gogol-iamcredentials"; 275682 - version = "0.5.0"; 275683 - sha256 = "021x1rgmws8r2mj1ji6wpj8lspn70m1pzal6zmj3j8cbgmvbzgra"; 275684 - libraryHaskellDepends = [ 275685 - base 275686 - gogol-core 275687 - ]; 275893 + version = "1.0.0"; 275894 + sha256 = "1jzqijf08jmmavgc5f7vpvs1ixiw6h9k4x8y7q8kwiayp57gcgfh"; 275895 + libraryHaskellDepends = [ gogol-core ]; 275688 275896 description = "Google IAM Service Account Credentials SDK"; 275689 - license = "unknown"; 275897 + license = lib.licenses.mpl20; 275690 275898 } 275691 275899 ) { }; 275692 275900 275693 275901 "gogol-iap" = callPackage ( 275694 - { 275695 - mkDerivation, 275696 - base, 275697 - gogol-core, 275698 - }: 275902 + { mkDerivation, gogol-core }: 275699 275903 mkDerivation { 275700 275904 pname = "gogol-iap"; 275701 - version = "0.5.0"; 275702 - sha256 = "04cph84f8h7qcg8jmz442qciq81ra2yw3jrffy8apyhy78x8zxlc"; 275703 - libraryHaskellDepends = [ 275704 - base 275705 - gogol-core 275706 - ]; 275905 + version = "1.0.0"; 275906 + sha256 = "0v7xm5qr5im2hcvq34s7c880f6yxnzwc4cax1cwm4f3zjq7galmb"; 275907 + libraryHaskellDepends = [ gogol-core ]; 275707 275908 description = "Google Cloud Identity-Aware Proxy SDK"; 275708 - license = "unknown"; 275909 + license = lib.licenses.mpl20; 275709 275910 } 275710 275911 ) { }; 275711 275912 275712 275913 "gogol-identity-toolkit" = callPackage ( 275713 - { 275714 - mkDerivation, 275715 - base, 275716 - gogol-core, 275717 - }: 275914 + { mkDerivation, gogol-core }: 275718 275915 mkDerivation { 275719 275916 pname = "gogol-identity-toolkit"; 275720 - version = "0.5.0"; 275721 - sha256 = "12yqcxcqvmlcrjla1qx6j78dk5qnfa8mia4nv1rr9y728w0k2ski"; 275722 - libraryHaskellDepends = [ 275723 - base 275724 - gogol-core 275725 - ]; 275917 + version = "1.0.0"; 275918 + sha256 = "1wdm8w4z4iicbla6139501v7ri9k9w6f0b131li0578dxqw411m0"; 275919 + libraryHaskellDepends = [ gogol-core ]; 275726 275920 description = "Google Identity Toolkit SDK"; 275727 - license = "unknown"; 275921 + license = lib.licenses.mpl20; 275728 275922 } 275729 275923 ) { }; 275730 275924 275731 275925 "gogol-indexing" = callPackage ( 275732 - { 275733 - mkDerivation, 275734 - base, 275735 - gogol-core, 275736 - }: 275926 + { mkDerivation, gogol-core }: 275737 275927 mkDerivation { 275738 275928 pname = "gogol-indexing"; 275739 - version = "0.5.0"; 275740 - sha256 = "1vyxrl7abwkz1mc08id08ncm9f1qgpkwc9mriyx3hlr9cvdj2fb0"; 275741 - libraryHaskellDepends = [ 275742 - base 275743 - gogol-core 275744 - ]; 275745 - description = "Google Indexing SDK"; 275746 - license = "unknown"; 275929 + version = "1.0.0"; 275930 + sha256 = "1hxk0gzk183vjljj57qkgyi5y4j1rigvjxkivxzvzlqyvpbirdrs"; 275931 + libraryHaskellDepends = [ gogol-core ]; 275932 + description = "Google Web Search Indexing SDK"; 275933 + license = lib.licenses.mpl20; 275747 275934 } 275748 275935 ) { }; 275749 275936 275750 275937 "gogol-jobs" = callPackage ( 275751 - { 275752 - mkDerivation, 275753 - base, 275754 - gogol-core, 275755 - }: 275938 + { mkDerivation, gogol-core }: 275756 275939 mkDerivation { 275757 275940 pname = "gogol-jobs"; 275758 - version = "0.5.0"; 275759 - sha256 = "1azggfjas13dqhl9kzqpr8bvks1gbjg1q7ia64ssxdj19mx1d5ii"; 275760 - libraryHaskellDepends = [ 275761 - base 275762 - gogol-core 275763 - ]; 275941 + version = "1.0.0"; 275942 + sha256 = "0i9pi31vz2ngk8fpv16cizc2yjhs0pacnwf2c0fk9nylg9x4ms38"; 275943 + libraryHaskellDepends = [ gogol-core ]; 275764 275944 description = "Google Cloud Talent Solution SDK"; 275765 - license = "unknown"; 275945 + license = lib.licenses.mpl20; 275766 275946 } 275767 275947 ) { }; 275768 275948 275769 275949 "gogol-kgsearch" = callPackage ( 275770 - { 275771 - mkDerivation, 275772 - base, 275773 - gogol-core, 275774 - }: 275950 + { mkDerivation, gogol-core }: 275775 275951 mkDerivation { 275776 275952 pname = "gogol-kgsearch"; 275777 - version = "0.5.0"; 275778 - sha256 = "0ynll6mm551x0jbx6bar5p97hy29g6nfq9mshlapmv82n9i2qqk4"; 275779 - libraryHaskellDepends = [ 275780 - base 275781 - gogol-core 275782 - ]; 275953 + version = "1.0.0"; 275954 + sha256 = "02py8n5kk1lxmm7bkxag041rwzip4jxpdmldciq4vyq9fkkxvy57"; 275955 + libraryHaskellDepends = [ gogol-core ]; 275783 275956 description = "Google Knowledge Graph Search SDK"; 275784 - license = "unknown"; 275957 + license = lib.licenses.mpl20; 275785 275958 } 275786 275959 ) { }; 275787 275960 275788 275961 "gogol-language" = callPackage ( 275789 - { 275790 - mkDerivation, 275791 - base, 275792 - gogol-core, 275793 - }: 275962 + { mkDerivation, gogol-core }: 275794 275963 mkDerivation { 275795 275964 pname = "gogol-language"; 275796 - version = "0.5.0"; 275797 - sha256 = "0hw181ha949q97yyg35yvwwshign43wxb2xkg482g4fq86b2iy3h"; 275798 - libraryHaskellDepends = [ 275799 - base 275800 - gogol-core 275801 - ]; 275965 + version = "1.0.0"; 275966 + sha256 = "0y0r5c1kgzxmsply7zksh9dbzs2sd4fxwb4ps4w4lqzjkchdbj4x"; 275967 + libraryHaskellDepends = [ gogol-core ]; 275802 275968 description = "Google Cloud Natural Language SDK"; 275803 - license = "unknown"; 275969 + license = lib.licenses.mpl20; 275804 275970 } 275805 275971 ) { }; 275806 275972 ··· 275826 275992 ) { }; 275827 275993 275828 275994 "gogol-libraryagent" = callPackage ( 275829 - { 275830 - mkDerivation, 275831 - base, 275832 - gogol-core, 275833 - }: 275995 + { mkDerivation, gogol-core }: 275834 275996 mkDerivation { 275835 275997 pname = "gogol-libraryagent"; 275836 - version = "0.5.0"; 275837 - sha256 = "1jk46i3a9z5i1451gyjzmqahcjg3r1w03y2x64dfpc309zwivaar"; 275838 - libraryHaskellDepends = [ 275839 - base 275840 - gogol-core 275841 - ]; 275998 + version = "1.0.0"; 275999 + sha256 = "14s5hw0qby8acqmf9f3kh068iaglmf9lp6p802vf3bg3qqx43857"; 276000 + libraryHaskellDepends = [ gogol-core ]; 275842 276001 description = "Google Library Agent SDK"; 275843 - license = "unknown"; 276002 + license = lib.licenses.mpl20; 275844 276003 } 275845 276004 ) { }; 275846 276005 275847 276006 "gogol-logging" = callPackage ( 275848 - { 275849 - mkDerivation, 275850 - base, 275851 - gogol-core, 275852 - }: 276007 + { mkDerivation, gogol-core }: 275853 276008 mkDerivation { 275854 276009 pname = "gogol-logging"; 275855 - version = "0.5.0"; 275856 - sha256 = "0795dsyq28w3kgw3f96w99ax6v24lbahmr0mvyql1cx4z2slqp82"; 275857 - libraryHaskellDepends = [ 275858 - base 275859 - gogol-core 275860 - ]; 275861 - description = "Google Stackdriver Logging SDK"; 275862 - license = "unknown"; 276010 + version = "1.0.0"; 276011 + sha256 = "1a2w6dyb0h3dy9fxzsrmq81d7vr3z2nk7xc0wkb4jhsdvn3nwkzk"; 276012 + libraryHaskellDepends = [ gogol-core ]; 276013 + description = "Google Cloud Logging SDK"; 276014 + license = lib.licenses.mpl20; 275863 276015 } 275864 276016 ) { }; 275865 276017 275866 276018 "gogol-manufacturers" = callPackage ( 275867 - { 275868 - mkDerivation, 275869 - base, 275870 - gogol-core, 275871 - }: 276019 + { mkDerivation, gogol-core }: 275872 276020 mkDerivation { 275873 276021 pname = "gogol-manufacturers"; 275874 - version = "0.5.0"; 275875 - sha256 = "1l7dpp39yszay5aykiq81qi1f7l3fyz2s8zskyl37lvb46mv9ywr"; 275876 - libraryHaskellDepends = [ 275877 - base 275878 - gogol-core 275879 - ]; 276022 + version = "1.0.0"; 276023 + sha256 = "0ydxl3cxrw65bfp708im1mlqgf76bi8m0wl8x295mgzyyvi6q75g"; 276024 + libraryHaskellDepends = [ gogol-core ]; 275880 276025 description = "Google Manufacturer Center SDK"; 275881 - license = "unknown"; 276026 + license = lib.licenses.mpl20; 275882 276027 } 275883 276028 ) { }; 275884 276029 ··· 275925 276070 ) { }; 275926 276071 275927 276072 "gogol-mirror" = callPackage ( 275928 - { 275929 - mkDerivation, 275930 - base, 275931 - gogol-core, 275932 - }: 276073 + { mkDerivation, gogol-core }: 275933 276074 mkDerivation { 275934 276075 pname = "gogol-mirror"; 275935 - version = "0.5.0"; 275936 - sha256 = "1nb7wydv7z5ip7jnj1928kfk57sk67ng3dhz9hq136lajl0lqy4r"; 275937 - libraryHaskellDepends = [ 275938 - base 275939 - gogol-core 275940 - ]; 276076 + version = "1.0.0"; 276077 + sha256 = "0si4kk7da0mxgqddjamxa8cmci75rlpl2bivjyqx99awff788376"; 276078 + libraryHaskellDepends = [ gogol-core ]; 275941 276079 description = "Google Mirror SDK"; 275942 - license = "unknown"; 276080 + license = lib.licenses.mpl20; 275943 276081 } 275944 276082 ) { }; 275945 276083 275946 276084 "gogol-ml" = callPackage ( 275947 - { 275948 - mkDerivation, 275949 - base, 275950 - gogol-core, 275951 - }: 276085 + { mkDerivation, gogol-core }: 275952 276086 mkDerivation { 275953 276087 pname = "gogol-ml"; 275954 - version = "0.5.0"; 275955 - sha256 = "01n7jhi8p0db7dhbjm7ll3r6yqw0cfi6l48r1ms0kcrscdfij93v"; 275956 - libraryHaskellDepends = [ 275957 - base 275958 - gogol-core 275959 - ]; 275960 - description = "Google Cloud Machine Learning Engine SDK"; 275961 - license = "unknown"; 276088 + version = "1.0.0"; 276089 + sha256 = "1vr7kv86b1cz364a5mbcl8w14k3f0rdkya4dqc99j46rqa89hcjs"; 276090 + libraryHaskellDepends = [ gogol-core ]; 276091 + description = "Google AI Platform Training & Prediction SDK"; 276092 + license = lib.licenses.mpl20; 275962 276093 } 275963 276094 ) { }; 275964 276095 275965 276096 "gogol-monitoring" = callPackage ( 275966 - { 275967 - mkDerivation, 275968 - base, 275969 - gogol-core, 275970 - }: 276097 + { mkDerivation, gogol-core }: 275971 276098 mkDerivation { 275972 276099 pname = "gogol-monitoring"; 275973 - version = "0.5.0"; 275974 - sha256 = "1754cssjhcfxn6g71vvq7jspgbwqn2a1821lhhn2ybhq8ngiay8i"; 275975 - libraryHaskellDepends = [ 275976 - base 275977 - gogol-core 275978 - ]; 275979 - description = "Google Stackdriver Monitoring SDK"; 275980 - license = "unknown"; 276100 + version = "1.0.0"; 276101 + sha256 = "1psii00flwy8yh76ng1ixpzdix4i31gr9nlysvi20m962j2zb8x7"; 276102 + libraryHaskellDepends = [ gogol-core ]; 276103 + description = "Google Cloud Monitoring SDK"; 276104 + license = lib.licenses.mpl20; 275981 276105 } 275982 276106 ) { }; 275983 276107 275984 276108 "gogol-oauth2" = callPackage ( 275985 - { 275986 - mkDerivation, 275987 - base, 275988 - gogol-core, 275989 - }: 276109 + { mkDerivation, gogol-core }: 275990 276110 mkDerivation { 275991 276111 pname = "gogol-oauth2"; 275992 - version = "0.5.0"; 275993 - sha256 = "0pnwmm0vn0hcdnww13b65ii5wapy8638svkf3srh2ap161ijf443"; 275994 - libraryHaskellDepends = [ 275995 - base 275996 - gogol-core 275997 - ]; 276112 + version = "1.0.0"; 276113 + sha256 = "1yrzaa7wab67dw7yyz3kv78rka6vrmq4q53rrjda25y5mbzax08j"; 276114 + libraryHaskellDepends = [ gogol-core ]; 275998 276115 description = "Google OAuth2 SDK"; 275999 - license = "unknown"; 276116 + license = lib.licenses.mpl20; 276000 276117 } 276001 276118 ) { }; 276002 276119 276003 276120 "gogol-oslogin" = callPackage ( 276004 - { 276005 - mkDerivation, 276006 - base, 276007 - gogol-core, 276008 - }: 276121 + { mkDerivation, gogol-core }: 276009 276122 mkDerivation { 276010 276123 pname = "gogol-oslogin"; 276011 - version = "0.5.0"; 276012 - sha256 = "02gzg06qlli84wvq6cr1xch8qxk70r5kgs5hqaqfqsr7rg79vfvd"; 276013 - libraryHaskellDepends = [ 276014 - base 276015 - gogol-core 276016 - ]; 276124 + version = "1.0.0"; 276125 + sha256 = "0mwxzx6qqbcybanf8cvdrwi4q2y1rs9wlrs4ivsx5csjk07zrbpy"; 276126 + libraryHaskellDepends = [ gogol-core ]; 276017 276127 description = "Google Cloud OS Login SDK"; 276018 - license = "unknown"; 276128 + license = lib.licenses.mpl20; 276019 276129 } 276020 276130 ) { }; 276021 276131 276022 276132 "gogol-pagespeed" = callPackage ( 276023 - { 276024 - mkDerivation, 276025 - base, 276026 - gogol-core, 276027 - }: 276133 + { mkDerivation, gogol-core }: 276028 276134 mkDerivation { 276029 276135 pname = "gogol-pagespeed"; 276030 - version = "0.5.0"; 276031 - sha256 = "116diwib3xi34znhl9b2hx3y4m3nqyqfkry0zh2aqknrxx3mpyl7"; 276032 - libraryHaskellDepends = [ 276033 - base 276034 - gogol-core 276035 - ]; 276136 + version = "1.0.0"; 276137 + sha256 = "000p7lhs82fgw80x2g77bgk0ywhxcj22388a37xfdlvfwk7rxxhp"; 276138 + libraryHaskellDepends = [ gogol-core ]; 276036 276139 description = "Google PageSpeed Insights SDK"; 276037 - license = "unknown"; 276140 + license = lib.licenses.mpl20; 276038 276141 } 276039 276142 ) { }; 276040 276143 276041 276144 "gogol-partners" = callPackage ( 276042 - { 276043 - mkDerivation, 276044 - base, 276045 - gogol-core, 276046 - }: 276145 + { mkDerivation, gogol-core }: 276047 276146 mkDerivation { 276048 276147 pname = "gogol-partners"; 276049 - version = "0.5.0"; 276050 - sha256 = "12wfzjf3hvwba4ccnymxrqwk2hzi1zcw5h53iqk33yscx6s30jzm"; 276051 - libraryHaskellDepends = [ 276052 - base 276053 - gogol-core 276054 - ]; 276148 + version = "1.0.0"; 276149 + sha256 = "0jcqch35rw33fp3xc24x6063hfxfd6hkdhy8ns1b3ry0x59r42na"; 276150 + libraryHaskellDepends = [ gogol-core ]; 276055 276151 description = "Google Partners SDK"; 276056 - license = "unknown"; 276152 + license = lib.licenses.mpl20; 276057 276153 } 276058 276154 ) { }; 276059 276155 276060 276156 "gogol-people" = callPackage ( 276061 - { 276062 - mkDerivation, 276063 - base, 276064 - gogol-core, 276065 - }: 276157 + { mkDerivation, gogol-core }: 276066 276158 mkDerivation { 276067 276159 pname = "gogol-people"; 276068 - version = "0.5.0"; 276069 - sha256 = "01msa1r6p96kgz9isnnqy6ndsrh579c25m9sw43azsij8l1dd43j"; 276070 - libraryHaskellDepends = [ 276071 - base 276072 - gogol-core 276073 - ]; 276160 + version = "1.0.0"; 276161 + sha256 = "1qjr57q91kr6gf37y24z0hr4lwkqq5fk474mb53s6ipqiyqxsk1s"; 276162 + libraryHaskellDepends = [ gogol-core ]; 276074 276163 description = "Google People SDK"; 276075 - license = "unknown"; 276164 + license = lib.licenses.mpl20; 276076 276165 } 276077 276166 ) { }; 276078 276167 ··· 276098 276187 ) { }; 276099 276188 276100 276189 "gogol-play-moviespartner" = callPackage ( 276101 - { 276102 - mkDerivation, 276103 - base, 276104 - gogol-core, 276105 - }: 276190 + { mkDerivation, gogol-core }: 276106 276191 mkDerivation { 276107 276192 pname = "gogol-play-moviespartner"; 276108 - version = "0.5.0"; 276109 - sha256 = "0cjkikknkk4la3nlw8mn1r0xdq871sd9wakyvsznm9wjqrzysn97"; 276110 - libraryHaskellDepends = [ 276111 - base 276112 - gogol-core 276113 - ]; 276193 + version = "1.0.0"; 276194 + sha256 = "05nc0w5v5sgg2z1ldx8y6a06nqy81hsq1bln882gv5595mcz3134"; 276195 + libraryHaskellDepends = [ gogol-core ]; 276114 276196 description = "Google Play Movies Partner SDK"; 276115 - license = "unknown"; 276197 + license = lib.licenses.mpl20; 276116 276198 } 276117 276199 ) { }; 276118 276200 276119 276201 "gogol-playcustomapp" = callPackage ( 276120 - { 276121 - mkDerivation, 276122 - base, 276123 - gogol-core, 276124 - }: 276202 + { mkDerivation, gogol-core }: 276125 276203 mkDerivation { 276126 276204 pname = "gogol-playcustomapp"; 276127 - version = "0.5.0"; 276128 - sha256 = "0dfiwncjngfaj5i3sf38q3qkrlggvpiw9d08xpwr5rbcbi9qp43i"; 276129 - libraryHaskellDepends = [ 276130 - base 276131 - gogol-core 276132 - ]; 276205 + version = "1.0.0"; 276206 + sha256 = "1mga3ppvlzjw133g8li20hjacp8k280qwpcsrfh1a9srmkflnqpi"; 276207 + libraryHaskellDepends = [ gogol-core ]; 276133 276208 description = "Google Play Custom App Publishing SDK"; 276134 - license = "unknown"; 276209 + license = lib.licenses.mpl20; 276135 276210 } 276136 276211 ) { }; 276137 276212 276138 276213 "gogol-plus" = callPackage ( 276139 - { 276140 - mkDerivation, 276141 - base, 276142 - gogol-core, 276143 - }: 276214 + { mkDerivation, gogol-core }: 276144 276215 mkDerivation { 276145 276216 pname = "gogol-plus"; 276146 - version = "0.5.0"; 276147 - sha256 = "00njgd754pzyss5n3ilnaqr1qd1f4rfz1q9m4x1a3g73fja1yzgh"; 276148 - libraryHaskellDepends = [ 276149 - base 276150 - gogol-core 276151 - ]; 276217 + version = "1.0.0"; 276218 + sha256 = "1jy99vdjqhlhvgir9h7hfc4w27nql44gqv9bn7g6w77xrh5qbbgg"; 276219 + libraryHaskellDepends = [ gogol-core ]; 276152 276220 description = "Google + SDK"; 276153 - license = "unknown"; 276221 + license = lib.licenses.mpl20; 276154 276222 } 276155 276223 ) { }; 276156 276224 276157 276225 "gogol-plus-domains" = callPackage ( 276158 - { 276159 - mkDerivation, 276160 - base, 276161 - gogol-core, 276162 - }: 276226 + { mkDerivation, gogol-core }: 276163 276227 mkDerivation { 276164 276228 pname = "gogol-plus-domains"; 276165 - version = "0.5.0"; 276166 - sha256 = "1p3qdj0vjz01yrkdjxsikriy755028v4yhw1d27ypriqh7k5widk"; 276167 - libraryHaskellDepends = [ 276168 - base 276169 - gogol-core 276170 - ]; 276229 + version = "1.0.0"; 276230 + sha256 = "00nyww46c4fxqvzm8jdl8wnmv0a7inm4hcyp56vl336l5fzw6wid"; 276231 + libraryHaskellDepends = [ gogol-core ]; 276171 276232 description = "Google + Domains SDK"; 276172 - license = "unknown"; 276233 + license = lib.licenses.mpl20; 276173 276234 } 276174 276235 ) { }; 276175 276236 276176 276237 "gogol-poly" = callPackage ( 276177 - { 276178 - mkDerivation, 276179 - base, 276180 - gogol-core, 276181 - }: 276238 + { mkDerivation, gogol-core }: 276182 276239 mkDerivation { 276183 276240 pname = "gogol-poly"; 276184 - version = "0.5.0"; 276185 - sha256 = "1da600ahg4x5k8vsw37cr5wrqrz8sq3mhir874fk5xpf2kdqdmkp"; 276186 - libraryHaskellDepends = [ 276187 - base 276188 - gogol-core 276189 - ]; 276241 + version = "1.0.0"; 276242 + sha256 = "0i87jzs5vrd7zwmrpkbf0jpw7yhq0y9hhiyay18kl78jkwh8gp9v"; 276243 + libraryHaskellDepends = [ gogol-core ]; 276190 276244 description = "Google Poly SDK"; 276191 - license = "unknown"; 276245 + license = lib.licenses.mpl20; 276192 276246 } 276193 276247 ) { }; 276194 276248 ··· 276214 276268 ) { }; 276215 276269 276216 276270 "gogol-proximitybeacon" = callPackage ( 276217 - { 276218 - mkDerivation, 276219 - base, 276220 - gogol-core, 276221 - }: 276271 + { mkDerivation, gogol-core }: 276222 276272 mkDerivation { 276223 276273 pname = "gogol-proximitybeacon"; 276224 - version = "0.5.0"; 276225 - sha256 = "1n49i32isjx3iljj035yc4y1lv3d01mpf15ab4ji49x01a0qfs5a"; 276226 - libraryHaskellDepends = [ 276227 - base 276228 - gogol-core 276229 - ]; 276274 + version = "1.0.0"; 276275 + sha256 = "13yzm104viq54pddz321bh9fknr4i0pywsnmlayav82gy6q70fnn"; 276276 + libraryHaskellDepends = [ gogol-core ]; 276230 276277 description = "Google Proximity Beacon SDK"; 276231 - license = "unknown"; 276278 + license = lib.licenses.mpl20; 276232 276279 } 276233 276280 ) { }; 276234 276281 276235 276282 "gogol-pubsub" = callPackage ( 276236 - { 276237 - mkDerivation, 276238 - base, 276239 - gogol-core, 276240 - }: 276283 + { mkDerivation, gogol-core }: 276241 276284 mkDerivation { 276242 276285 pname = "gogol-pubsub"; 276243 - version = "0.5.0"; 276244 - sha256 = "1pfw3pz8yr7slbyhp9rf32brqck2l2a60lx3ysz4pjjmfc72rahz"; 276245 - libraryHaskellDepends = [ 276246 - base 276247 - gogol-core 276248 - ]; 276286 + version = "1.0.0"; 276287 + sha256 = "0ay6npsyzcq2m6dww8xdima8d19bqnrpi942hpmn5ny1rlxahvnj"; 276288 + libraryHaskellDepends = [ gogol-core ]; 276249 276289 description = "Google Cloud Pub/Sub SDK"; 276250 - license = "unknown"; 276290 + license = lib.licenses.mpl20; 276251 276291 } 276252 276292 ) { }; 276253 276293 276254 276294 "gogol-qpxexpress" = callPackage ( 276255 - { 276256 - mkDerivation, 276257 - base, 276258 - gogol-core, 276259 - }: 276295 + { mkDerivation, gogol-core }: 276260 276296 mkDerivation { 276261 276297 pname = "gogol-qpxexpress"; 276262 - version = "0.5.0"; 276263 - sha256 = "1xqlqv680w1rr3sqzq5k8kk1xcxagh8zk5g6rqs83xjr1j5lfmsr"; 276264 - libraryHaskellDepends = [ 276265 - base 276266 - gogol-core 276267 - ]; 276298 + version = "1.0.0"; 276299 + sha256 = "1nvn2c936ia0jzkc6lljcrnxp69y7wj8yk4n95y4wqmibi7v1pc6"; 276300 + libraryHaskellDepends = [ gogol-core ]; 276268 276301 description = "Google QPX Express SDK"; 276269 - license = "unknown"; 276302 + license = lib.licenses.mpl20; 276303 + } 276304 + ) { }; 276305 + 276306 + "gogol-recaptcha-enterprise" = callPackage ( 276307 + { mkDerivation, gogol-core }: 276308 + mkDerivation { 276309 + pname = "gogol-recaptcha-enterprise"; 276310 + version = "1.0.0"; 276311 + sha256 = "1xcgfz3d34iac66kld3fjszi6zn03hw6i51niyapnmgs7qwvw8xm"; 276312 + libraryHaskellDepends = [ gogol-core ]; 276313 + description = "Google reCAPTCHA Enterprise SDK"; 276314 + license = lib.licenses.mpl20; 276270 276315 } 276271 276316 ) { }; 276272 276317 276273 276318 "gogol-redis" = callPackage ( 276274 - { 276275 - mkDerivation, 276276 - base, 276277 - gogol-core, 276278 - }: 276319 + { mkDerivation, gogol-core }: 276279 276320 mkDerivation { 276280 276321 pname = "gogol-redis"; 276281 - version = "0.5.0"; 276282 - sha256 = "0x774h1pryr12s6ndcgdvbwqx1nw2sc8yln147hjf4mg3fva6gkc"; 276283 - libraryHaskellDepends = [ 276284 - base 276285 - gogol-core 276286 - ]; 276322 + version = "1.0.0"; 276323 + sha256 = "1fynpbfhnhpxki81wak3w6256rhb6yj2n6h605zpkmqb6zgdcraw"; 276324 + libraryHaskellDepends = [ gogol-core ]; 276287 276325 description = "Google Cloud Memorystore for Redis SDK"; 276288 - license = "unknown"; 276326 + license = lib.licenses.mpl20; 276289 276327 } 276290 276328 ) { }; 276291 276329 276292 276330 "gogol-remotebuildexecution" = callPackage ( 276293 - { 276294 - mkDerivation, 276295 - base, 276296 - gogol-core, 276297 - }: 276331 + { mkDerivation, gogol-core }: 276298 276332 mkDerivation { 276299 276333 pname = "gogol-remotebuildexecution"; 276300 - version = "0.5.0"; 276301 - sha256 = "037biha22xv1ayb3zxx5dc7a86sbmr5zwmg1m24f3bbsgjfnn5ms"; 276302 - libraryHaskellDepends = [ 276303 - base 276304 - gogol-core 276305 - ]; 276334 + version = "1.0.0"; 276335 + sha256 = "0316qcavy06s6lc77nd3kvkcivx99a29kybqk2v8gkm3d3hgnay6"; 276336 + libraryHaskellDepends = [ gogol-core ]; 276306 276337 description = "Google Remote Build Execution SDK"; 276307 - license = "unknown"; 276338 + license = lib.licenses.mpl20; 276308 276339 } 276309 276340 ) { }; 276310 276341 276311 276342 "gogol-replicapool" = callPackage ( 276312 - { 276313 - mkDerivation, 276314 - base, 276315 - gogol-core, 276316 - }: 276343 + { mkDerivation, gogol-core }: 276317 276344 mkDerivation { 276318 276345 pname = "gogol-replicapool"; 276319 - version = "0.5.0"; 276320 - sha256 = "173ywr9vc69jf5s5vncwjby75mgfbfxw3m42jyi7dcyrxc4jbg68"; 276321 - libraryHaskellDepends = [ 276322 - base 276323 - gogol-core 276324 - ]; 276346 + version = "1.0.0"; 276347 + sha256 = "1nx55xgghprwzs81x4xvald37xvjzwrsfq5lrrarig5gsz3crb8h"; 276348 + libraryHaskellDepends = [ gogol-core ]; 276325 276349 description = "Google Replica Pool SDK"; 276326 - license = "unknown"; 276350 + license = lib.licenses.mpl20; 276327 276351 } 276328 276352 ) { }; 276329 276353 276330 276354 "gogol-replicapool-updater" = callPackage ( 276331 - { 276332 - mkDerivation, 276333 - base, 276334 - gogol-core, 276335 - }: 276355 + { mkDerivation, gogol-core }: 276336 276356 mkDerivation { 276337 276357 pname = "gogol-replicapool-updater"; 276338 - version = "0.5.0"; 276339 - sha256 = "1wi8x5zj61daln96dqlhq8ki57kl2k6jjz4sm1lbqffcgq66743d"; 276340 - libraryHaskellDepends = [ 276341 - base 276342 - gogol-core 276343 - ]; 276358 + version = "1.0.0"; 276359 + sha256 = "14cwrx4qw002464i913n6hxq7rw962w2kcrw3bzng74ndhaaswd2"; 276360 + libraryHaskellDepends = [ gogol-core ]; 276344 276361 description = "Google Compute Engine Instance Group Updater SDK"; 276345 - license = "unknown"; 276362 + license = lib.licenses.mpl20; 276346 276363 } 276347 276364 ) { }; 276348 276365 276349 276366 "gogol-resourcemanager" = callPackage ( 276350 - { 276351 - mkDerivation, 276352 - base, 276353 - gogol-core, 276354 - }: 276367 + { mkDerivation, gogol-core }: 276355 276368 mkDerivation { 276356 276369 pname = "gogol-resourcemanager"; 276357 - version = "0.5.0"; 276358 - sha256 = "1sd8zaigvpbq591nwsjyxf9jf9hxc00mjhwfc0i6mahbgax73764"; 276359 - libraryHaskellDepends = [ 276360 - base 276361 - gogol-core 276362 - ]; 276370 + version = "1.0.0"; 276371 + sha256 = "12mhxjw4x9cb5sgpy2z4sk9qkmarhwv8mb8q88qigx4d1abqj5gm"; 276372 + libraryHaskellDepends = [ gogol-core ]; 276363 276373 description = "Google Cloud Resource Manager SDK"; 276364 - license = "unknown"; 276374 + license = lib.licenses.mpl20; 276365 276375 } 276366 276376 ) { }; 276367 276377 ··· 276387 276397 ) { }; 276388 276398 276389 276399 "gogol-run" = callPackage ( 276390 - { 276391 - mkDerivation, 276392 - base, 276393 - gogol-core, 276394 - }: 276400 + { mkDerivation, gogol-core }: 276395 276401 mkDerivation { 276396 276402 pname = "gogol-run"; 276397 - version = "0.5.0"; 276398 - sha256 = "0219vjrlpq16akzwsbk8kfh7p8gc8kkczcvg5a3l6lssxjp87lfg"; 276399 - libraryHaskellDepends = [ 276400 - base 276401 - gogol-core 276402 - ]; 276403 - description = "Google Cloud Run SDK"; 276404 - license = "unknown"; 276403 + version = "1.0.0"; 276404 + sha256 = "07wqy2cp62d8gs4izqzqv50yaj7b37jfhq5qm67j9dr3s56kzz6q"; 276405 + libraryHaskellDepends = [ gogol-core ]; 276406 + description = "Google Cloud Run Admin SDK"; 276407 + license = lib.licenses.mpl20; 276405 276408 } 276406 276409 ) { }; 276407 276410 276408 276411 "gogol-runtimeconfig" = callPackage ( 276409 - { 276410 - mkDerivation, 276411 - base, 276412 - gogol-core, 276413 - }: 276412 + { mkDerivation, gogol-core }: 276414 276413 mkDerivation { 276415 276414 pname = "gogol-runtimeconfig"; 276416 - version = "0.5.0"; 276417 - sha256 = "057qlad1mipdyif8n6wmhwinknnf0qgb65wbw0484b2yzcdj3zd1"; 276418 - libraryHaskellDepends = [ 276419 - base 276420 - gogol-core 276421 - ]; 276415 + version = "1.0.0"; 276416 + sha256 = "0hrjl2vcbmk3hx38c0alh2lgz10xnsvb90lb5x9fkls2n6l0q3lm"; 276417 + libraryHaskellDepends = [ gogol-core ]; 276422 276418 description = "Google Cloud Runtime Configuration SDK"; 276423 - license = "unknown"; 276419 + license = lib.licenses.mpl20; 276424 276420 } 276425 276421 ) { }; 276426 276422 276427 276423 "gogol-safebrowsing" = callPackage ( 276428 - { 276429 - mkDerivation, 276430 - base, 276431 - gogol-core, 276432 - }: 276424 + { mkDerivation, gogol-core }: 276433 276425 mkDerivation { 276434 276426 pname = "gogol-safebrowsing"; 276435 - version = "0.5.0"; 276436 - sha256 = "0690xz81mz8gn0qgkg11y5sx57kjmvd4lryqw8rblrh7ixypn8wb"; 276437 - libraryHaskellDepends = [ 276438 - base 276439 - gogol-core 276440 - ]; 276427 + version = "1.0.0"; 276428 + sha256 = "13yyab714dpd42j6683p4c6v97apc2qy4ihyhrsjr7yn6ysyc4jy"; 276429 + libraryHaskellDepends = [ gogol-core ]; 276441 276430 description = "Google Safe Browsing SDK"; 276442 - license = "unknown"; 276431 + license = lib.licenses.mpl20; 276443 276432 } 276444 276433 ) { }; 276445 276434 276446 276435 "gogol-script" = callPackage ( 276447 - { 276448 - mkDerivation, 276449 - base, 276450 - gogol-core, 276451 - }: 276436 + { mkDerivation, gogol-core }: 276452 276437 mkDerivation { 276453 276438 pname = "gogol-script"; 276454 - version = "0.5.0"; 276455 - sha256 = "1ckjj9i8fqd3igz7bnjmri5pgj3risqarcivrr3nmd1d045rx1zx"; 276456 - libraryHaskellDepends = [ 276457 - base 276458 - gogol-core 276459 - ]; 276439 + version = "1.0.0"; 276440 + sha256 = "1a2ppyk9869bkwzfhaznqkja5pkdwjwal276k4mzn0ba7jrq47hs"; 276441 + libraryHaskellDepends = [ gogol-core ]; 276460 276442 description = "Google Apps Script SDK"; 276461 - license = "unknown"; 276443 + license = lib.licenses.mpl20; 276462 276444 } 276463 276445 ) { }; 276464 276446 276465 276447 "gogol-searchconsole" = callPackage ( 276466 - { 276467 - mkDerivation, 276468 - base, 276469 - gogol-core, 276470 - }: 276448 + { mkDerivation, gogol-core }: 276471 276449 mkDerivation { 276472 276450 pname = "gogol-searchconsole"; 276473 - version = "0.5.0"; 276474 - sha256 = "0k971p9c4yhscnxxfhxlb5wnkzjxd2k9q8qnxlbnvp7ch7z1yv00"; 276475 - libraryHaskellDepends = [ 276476 - base 276477 - gogol-core 276478 - ]; 276479 - description = "Google Search Console URL Testing Tools SDK"; 276480 - license = "unknown"; 276451 + version = "1.0.0"; 276452 + sha256 = "0l5q9zj6scj72zg4sd1hkn5jwm4hh4q85wq6y5pm8s1sbqk3wsqz"; 276453 + libraryHaskellDepends = [ gogol-core ]; 276454 + description = "Google Search Console SDK"; 276455 + license = lib.licenses.mpl20; 276481 276456 } 276482 276457 ) { }; 276483 276458 276484 276459 "gogol-securitycenter" = callPackage ( 276485 - { 276486 - mkDerivation, 276487 - base, 276488 - gogol-core, 276489 - }: 276460 + { mkDerivation, gogol-core }: 276490 276461 mkDerivation { 276491 276462 pname = "gogol-securitycenter"; 276492 - version = "0.5.0"; 276493 - sha256 = "1axvvz60vdvjpd9bd0516fhbqnk8cjb3x52sgf42fq00dhwxy3mj"; 276494 - libraryHaskellDepends = [ 276495 - base 276496 - gogol-core 276497 - ]; 276498 - description = "Google Cloud Security Command Center SDK"; 276499 - license = "unknown"; 276463 + version = "1.0.0"; 276464 + sha256 = "0vkipvyapjimizikzfgk4q2cdn0my5j85agnnz79hvlkqb412ggp"; 276465 + libraryHaskellDepends = [ gogol-core ]; 276466 + description = "Google Security Command Center SDK"; 276467 + license = lib.licenses.mpl20; 276500 276468 } 276501 276469 ) { }; 276502 276470 276503 276471 "gogol-servicebroker" = callPackage ( 276504 - { 276505 - mkDerivation, 276506 - base, 276507 - gogol-core, 276508 - }: 276472 + { mkDerivation, gogol-core }: 276509 276473 mkDerivation { 276510 276474 pname = "gogol-servicebroker"; 276511 - version = "0.5.0"; 276512 - sha256 = "13726hq8c3g7gqwz2zrzx0k6vywv5ggd6bl90kkw09118zvyc13a"; 276513 - libraryHaskellDepends = [ 276514 - base 276515 - gogol-core 276516 - ]; 276475 + version = "1.0.0"; 276476 + sha256 = "0z5mfig3k7k90r5khcs8is4c278dsp9y6qa5fljfkljkd4bniyv4"; 276477 + libraryHaskellDepends = [ gogol-core ]; 276517 276478 description = "Google Service Broker SDK"; 276518 - license = "unknown"; 276479 + license = lib.licenses.mpl20; 276519 276480 } 276520 276481 ) { }; 276521 276482 276522 276483 "gogol-serviceconsumermanagement" = callPackage ( 276523 - { 276524 - mkDerivation, 276525 - base, 276526 - gogol-core, 276527 - }: 276484 + { mkDerivation, gogol-core }: 276528 276485 mkDerivation { 276529 276486 pname = "gogol-serviceconsumermanagement"; 276530 - version = "0.5.0"; 276531 - sha256 = "1pln47lpr1wb9w84z8lmskbn49456k9h4awi67mdfg10jzh4n46j"; 276532 - libraryHaskellDepends = [ 276533 - base 276534 - gogol-core 276535 - ]; 276487 + version = "1.0.0"; 276488 + sha256 = "17g49aqdgml3w16mj8qf3m0lz7wa6qhmvz1m7s5q2dly8i7klb9q"; 276489 + libraryHaskellDepends = [ gogol-core ]; 276536 276490 description = "Google Service Consumer Management SDK"; 276537 - license = "unknown"; 276491 + license = lib.licenses.mpl20; 276538 276492 } 276539 276493 ) { }; 276540 276494 276541 276495 "gogol-servicecontrol" = callPackage ( 276542 - { 276543 - mkDerivation, 276544 - base, 276545 - gogol-core, 276546 - }: 276496 + { mkDerivation, gogol-core }: 276547 276497 mkDerivation { 276548 276498 pname = "gogol-servicecontrol"; 276549 - version = "0.5.0"; 276550 - sha256 = "01vfjg16x6vpabvb1q2ipnv04j7r7fxxvcbjgq08phq0fnnk8sd1"; 276551 - libraryHaskellDepends = [ 276552 - base 276553 - gogol-core 276554 - ]; 276499 + version = "1.0.0"; 276500 + sha256 = "0zw9a5q6nsyar5210ryh3svzv8jgjwjmn6mm1kpiqx32bi0gcb53"; 276501 + libraryHaskellDepends = [ gogol-core ]; 276555 276502 description = "Google Service Control SDK"; 276556 - license = "unknown"; 276503 + license = lib.licenses.mpl20; 276557 276504 } 276558 276505 ) { }; 276559 276506 276560 276507 "gogol-servicemanagement" = callPackage ( 276561 - { 276562 - mkDerivation, 276563 - base, 276564 - gogol-core, 276565 - }: 276508 + { mkDerivation, gogol-core }: 276566 276509 mkDerivation { 276567 276510 pname = "gogol-servicemanagement"; 276568 - version = "0.5.0"; 276569 - sha256 = "0bzcv7z5n2ykkydq4wc5ka11cc82y17x4rb26k3hbsak62qx67j2"; 276570 - libraryHaskellDepends = [ 276571 - base 276572 - gogol-core 276573 - ]; 276511 + version = "1.0.0"; 276512 + sha256 = "0i3v8ryswaz84d27v867v5f3rpa6wa518k9y9sim87l4yvqdd72s"; 276513 + libraryHaskellDepends = [ gogol-core ]; 276574 276514 description = "Google Service Management SDK"; 276575 - license = "unknown"; 276515 + license = lib.licenses.mpl20; 276576 276516 } 276577 276517 ) { }; 276578 276518 276579 276519 "gogol-servicenetworking" = callPackage ( 276580 - { 276581 - mkDerivation, 276582 - base, 276583 - gogol-core, 276584 - }: 276520 + { mkDerivation, gogol-core }: 276585 276521 mkDerivation { 276586 276522 pname = "gogol-servicenetworking"; 276587 - version = "0.5.0"; 276588 - sha256 = "1aja2maxgjhxgqf6agngbx37w02ifb1b5ypnqdwwpi1615qxvrsh"; 276589 - libraryHaskellDepends = [ 276590 - base 276591 - gogol-core 276592 - ]; 276523 + version = "1.0.0"; 276524 + sha256 = "0180yqdgrbsf7zazvdsbi1hwy671qc4m80chv458fgnhl6irqzsj"; 276525 + libraryHaskellDepends = [ gogol-core ]; 276593 276526 description = "Google Service Networking SDK"; 276594 - license = "unknown"; 276527 + license = lib.licenses.mpl20; 276595 276528 } 276596 276529 ) { }; 276597 276530 276598 276531 "gogol-serviceusage" = callPackage ( 276599 - { 276600 - mkDerivation, 276601 - base, 276602 - gogol-core, 276603 - }: 276532 + { mkDerivation, gogol-core }: 276604 276533 mkDerivation { 276605 276534 pname = "gogol-serviceusage"; 276606 - version = "0.5.0"; 276607 - sha256 = "0zvnd7pl5q73kzdx2x19zrw0rk334l8xlqawlbl5p1zimvvsbpkl"; 276608 - libraryHaskellDepends = [ 276609 - base 276610 - gogol-core 276611 - ]; 276535 + version = "1.0.0"; 276536 + sha256 = "0mc44gczmh6acgfp3x0lhd7kv7agqdqskv91bvnrk9lmrhcqchr6"; 276537 + libraryHaskellDepends = [ gogol-core ]; 276612 276538 description = "Google Service Usage SDK"; 276613 - license = "unknown"; 276539 + license = lib.licenses.mpl20; 276614 276540 } 276615 276541 ) { }; 276616 276542 276617 276543 "gogol-serviceuser" = callPackage ( 276618 - { 276619 - mkDerivation, 276620 - base, 276621 - gogol-core, 276622 - }: 276544 + { mkDerivation, gogol-core }: 276623 276545 mkDerivation { 276624 276546 pname = "gogol-serviceuser"; 276625 - version = "0.5.0"; 276626 - sha256 = "1xfgp5nm23c8hjzkjamk4qc6qs5j4q3z5pxrlsbnir7lqv73jnwf"; 276627 - libraryHaskellDepends = [ 276628 - base 276629 - gogol-core 276630 - ]; 276547 + version = "1.0.0"; 276548 + sha256 = "0gh7flld3vai2fwx9gqw3gcrjwwdk3nkahdxdzrixk96lrvfd2lb"; 276549 + libraryHaskellDepends = [ gogol-core ]; 276631 276550 description = "Google Service User SDK"; 276632 - license = "unknown"; 276551 + license = lib.licenses.mpl20; 276633 276552 } 276634 276553 ) { }; 276635 276554 276636 276555 "gogol-sheets" = callPackage ( 276637 - { 276638 - mkDerivation, 276639 - base, 276640 - gogol-core, 276641 - }: 276556 + { mkDerivation, gogol-core }: 276642 276557 mkDerivation { 276643 276558 pname = "gogol-sheets"; 276644 - version = "0.5.0"; 276645 - sha256 = "0wl00f6p5qylbffhm3jw0123aqfc3acls91150nj3ncfl55q0g28"; 276646 - libraryHaskellDepends = [ 276647 - base 276648 - gogol-core 276649 - ]; 276559 + version = "1.0.0"; 276560 + sha256 = "0jx155xaa053mp7sdrrjng28vdvls51bqg374bp8015dqx8pq388"; 276561 + libraryHaskellDepends = [ gogol-core ]; 276650 276562 description = "Google Sheets SDK"; 276651 - license = "unknown"; 276563 + license = lib.licenses.mpl20; 276652 276564 } 276653 276565 ) { }; 276654 276566 276655 276567 "gogol-shopping-content" = callPackage ( 276656 - { 276657 - mkDerivation, 276658 - base, 276659 - gogol-core, 276660 - }: 276568 + { mkDerivation, gogol-core }: 276661 276569 mkDerivation { 276662 276570 pname = "gogol-shopping-content"; 276663 - version = "0.5.0"; 276664 - sha256 = "0b7i6vc5cw1sigvkpn8k1q8k06alx36h7fw520swhyk2p3v5shmh"; 276665 - libraryHaskellDepends = [ 276666 - base 276667 - gogol-core 276668 - ]; 276571 + version = "1.0.0"; 276572 + sha256 = "09j3a7scawkxq81mghnypwhxi5jfx1w8nircmmhpm6a9543ikbgl"; 276573 + libraryHaskellDepends = [ gogol-core ]; 276669 276574 description = "Google Content API for Shopping SDK"; 276670 - license = "unknown"; 276575 + license = lib.licenses.mpl20; 276671 276576 } 276672 276577 ) { }; 276673 276578 276674 276579 "gogol-siteverification" = callPackage ( 276675 - { 276676 - mkDerivation, 276677 - base, 276678 - gogol-core, 276679 - }: 276580 + { mkDerivation, gogol-core }: 276680 276581 mkDerivation { 276681 276582 pname = "gogol-siteverification"; 276682 - version = "0.5.0"; 276683 - sha256 = "0lapqji0cwf0gqp4855wqg8h1xd61bncya5b7b25lnqlld7gnp9w"; 276684 - libraryHaskellDepends = [ 276685 - base 276686 - gogol-core 276687 - ]; 276583 + version = "1.0.0"; 276584 + sha256 = "04nn9382mwi4x83whhp66x99mml2djf97nlvpq0n5d6vs5nl65vf"; 276585 + libraryHaskellDepends = [ gogol-core ]; 276688 276586 description = "Google Site Verification SDK"; 276689 - license = "unknown"; 276587 + license = lib.licenses.mpl20; 276690 276588 } 276691 276589 ) { }; 276692 276590 276693 276591 "gogol-slides" = callPackage ( 276694 - { 276695 - mkDerivation, 276696 - base, 276697 - gogol-core, 276698 - }: 276592 + { mkDerivation, gogol-core }: 276699 276593 mkDerivation { 276700 276594 pname = "gogol-slides"; 276701 - version = "0.5.0"; 276702 - sha256 = "0b76hx0bllbpb25d59pqlz0clcv34pkw8rpd7g7g1916sqrsd7dx"; 276703 - libraryHaskellDepends = [ 276704 - base 276705 - gogol-core 276706 - ]; 276595 + version = "1.0.0"; 276596 + sha256 = "06cc335zva6qdqr3mmhgsmhzyg09lipzmcsffwvngmbbk6adqfag"; 276597 + libraryHaskellDepends = [ gogol-core ]; 276707 276598 description = "Google Slides SDK"; 276708 - license = "unknown"; 276599 + license = lib.licenses.mpl20; 276709 276600 } 276710 276601 ) { }; 276711 276602 276712 276603 "gogol-sourcerepo" = callPackage ( 276713 - { 276714 - mkDerivation, 276715 - base, 276716 - gogol-core, 276717 - }: 276604 + { mkDerivation, gogol-core }: 276718 276605 mkDerivation { 276719 276606 pname = "gogol-sourcerepo"; 276720 - version = "0.5.0"; 276721 - sha256 = "0j3hcc9fq2aksx1nrvrb0g6xwv86a4n8l2vfgyyzji3gknbqx9ff"; 276722 - libraryHaskellDepends = [ 276723 - base 276724 - gogol-core 276725 - ]; 276607 + version = "1.0.0"; 276608 + sha256 = "1v5wl66rl9kj7ckzvmy65a23s9d3ajfrxc4rsmpx6zzg3xmxjlw0"; 276609 + libraryHaskellDepends = [ gogol-core ]; 276726 276610 description = "Google Cloud Source Repositories SDK"; 276727 - license = "unknown"; 276611 + license = lib.licenses.mpl20; 276728 276612 } 276729 276613 ) { }; 276730 276614 276731 276615 "gogol-spanner" = callPackage ( 276732 - { 276733 - mkDerivation, 276734 - base, 276735 - gogol-core, 276736 - }: 276616 + { mkDerivation, gogol-core }: 276737 276617 mkDerivation { 276738 276618 pname = "gogol-spanner"; 276739 - version = "0.5.0"; 276740 - sha256 = "0z9aycaqp3rb798mcrmrni9jfa8r9j2gjgmlxjx9icg9wh4bs5h4"; 276741 - libraryHaskellDepends = [ 276742 - base 276743 - gogol-core 276744 - ]; 276619 + version = "1.0.0"; 276620 + sha256 = "0wbkqr2f2dha298n3sz007y9jg9c4yxn69m5ln7ffxa135yan6l8"; 276621 + libraryHaskellDepends = [ gogol-core ]; 276745 276622 description = "Google Cloud Spanner SDK"; 276746 - license = "unknown"; 276623 + license = lib.licenses.mpl20; 276747 276624 } 276748 276625 ) { }; 276749 276626 276750 276627 "gogol-spectrum" = callPackage ( 276751 - { 276752 - mkDerivation, 276753 - base, 276754 - gogol-core, 276755 - }: 276628 + { mkDerivation, gogol-core }: 276756 276629 mkDerivation { 276757 276630 pname = "gogol-spectrum"; 276758 - version = "0.5.0"; 276759 - sha256 = "12h0rgnldgjf6qkvjbjsjcbw9vn3wlbs02baybyf70hmp58n8f0k"; 276760 - libraryHaskellDepends = [ 276761 - base 276762 - gogol-core 276763 - ]; 276631 + version = "1.0.0"; 276632 + sha256 = "0z1la9nan5dfdksgkajh1a2smlj4vjqk3r2586cshyn4lf1iswsa"; 276633 + libraryHaskellDepends = [ gogol-core ]; 276764 276634 description = "Google Spectrum Database SDK"; 276765 - license = "unknown"; 276635 + license = lib.licenses.mpl20; 276766 276636 } 276767 276637 ) { }; 276768 276638 276769 276639 "gogol-speech" = callPackage ( 276770 - { 276771 - mkDerivation, 276772 - base, 276773 - gogol-core, 276774 - }: 276640 + { mkDerivation, gogol-core }: 276775 276641 mkDerivation { 276776 276642 pname = "gogol-speech"; 276777 - version = "0.5.0"; 276778 - sha256 = "1snmajsca1fdq1c98f1pqvghlwgff6vsmz47wvwsjjjqz15nx9j1"; 276779 - libraryHaskellDepends = [ 276780 - base 276781 - gogol-core 276782 - ]; 276643 + version = "1.0.0"; 276644 + sha256 = "1bg6kqxjgwj5qrkrvl7gk9h9r60z41k9h7zf6y7a74arw1ycnfcs"; 276645 + libraryHaskellDepends = [ gogol-core ]; 276783 276646 description = "Google Cloud Speech-to-Text SDK"; 276784 - license = "unknown"; 276647 + license = lib.licenses.mpl20; 276785 276648 } 276786 276649 ) { }; 276787 276650 276788 276651 "gogol-sqladmin" = callPackage ( 276789 - { 276790 - mkDerivation, 276791 - base, 276792 - gogol-core, 276793 - }: 276652 + { mkDerivation, gogol-core }: 276794 276653 mkDerivation { 276795 276654 pname = "gogol-sqladmin"; 276796 - version = "0.5.0"; 276797 - sha256 = "0yyamr3mgwg1gxy1w258gg6gvzcymmqmknkabgxp2p5kkqsyqgv1"; 276798 - libraryHaskellDepends = [ 276799 - base 276800 - gogol-core 276801 - ]; 276655 + version = "1.0.0"; 276656 + sha256 = "0aamc6i0l1ad9x4fnw1psq37fr8iq4pflmi7r9zpqpqh61225qic"; 276657 + libraryHaskellDepends = [ gogol-core ]; 276802 276658 description = "Google Cloud SQL Admin SDK"; 276803 - license = "unknown"; 276659 + license = lib.licenses.mpl20; 276804 276660 } 276805 276661 ) { }; 276806 276662 276807 276663 "gogol-storage" = callPackage ( 276808 - { 276809 - mkDerivation, 276810 - base, 276811 - gogol-core, 276812 - }: 276664 + { mkDerivation, gogol-core }: 276813 276665 mkDerivation { 276814 276666 pname = "gogol-storage"; 276815 - version = "0.5.0"; 276816 - sha256 = "0jsmgb311iinbmj12chbch3z0d56k9vqqvhjzfcilx05m1pm9xan"; 276817 - libraryHaskellDepends = [ 276818 - base 276819 - gogol-core 276820 - ]; 276667 + version = "1.0.0"; 276668 + sha256 = "1sdmnkaclgi1n9kip5v3791dbvl992sbf95kp967261cwdm00mw5"; 276669 + libraryHaskellDepends = [ gogol-core ]; 276821 276670 description = "Google Cloud Storage JSON SDK"; 276822 - license = "unknown"; 276671 + license = lib.licenses.mpl20; 276823 276672 } 276824 276673 ) { }; 276825 276674 276826 276675 "gogol-storage-transfer" = callPackage ( 276827 - { 276828 - mkDerivation, 276829 - base, 276830 - gogol-core, 276831 - }: 276676 + { mkDerivation, gogol-core }: 276832 276677 mkDerivation { 276833 276678 pname = "gogol-storage-transfer"; 276834 - version = "0.5.0"; 276835 - sha256 = "1zlfszkh59p4pca2n2scxa02ln4va6k5vjz41186350lfxqwba4r"; 276836 - libraryHaskellDepends = [ 276837 - base 276838 - gogol-core 276839 - ]; 276679 + version = "1.0.0"; 276680 + sha256 = "14v3gk3pp3cn1r27dc9j6f0a8ska2mdpyarx54607x3y23bl1xc5"; 276681 + libraryHaskellDepends = [ gogol-core ]; 276840 276682 description = "Google Storage Transfer SDK"; 276841 - license = "unknown"; 276683 + license = lib.licenses.mpl20; 276842 276684 } 276843 276685 ) { }; 276844 276686 276845 276687 "gogol-streetviewpublish" = callPackage ( 276846 - { 276847 - mkDerivation, 276848 - base, 276849 - gogol-core, 276850 - }: 276688 + { mkDerivation, gogol-core }: 276851 276689 mkDerivation { 276852 276690 pname = "gogol-streetviewpublish"; 276853 - version = "0.5.0"; 276854 - sha256 = "07w3s049sglcvh8s94kbhj8l3irscji9s14bl493p7bwj1n3dbsb"; 276855 - libraryHaskellDepends = [ 276856 - base 276857 - gogol-core 276858 - ]; 276691 + version = "1.0.0"; 276692 + sha256 = "03zd6hk87fchc2v7wch7s2jjlp6kk2pdadd3vqapnfai5b4nmi0c"; 276693 + libraryHaskellDepends = [ gogol-core ]; 276859 276694 description = "Google Street View Publish SDK"; 276860 - license = "unknown"; 276695 + license = lib.licenses.mpl20; 276861 276696 } 276862 276697 ) { }; 276863 276698 276864 276699 "gogol-surveys" = callPackage ( 276865 - { 276866 - mkDerivation, 276867 - base, 276868 - gogol-core, 276869 - }: 276700 + { mkDerivation, gogol-core }: 276870 276701 mkDerivation { 276871 276702 pname = "gogol-surveys"; 276872 - version = "0.5.0"; 276873 - sha256 = "0p9qkqxddgv8m24h2g58hiwhcpwndxl9r9gifjgpbh4mlcsx42q1"; 276874 - libraryHaskellDepends = [ 276875 - base 276876 - gogol-core 276877 - ]; 276703 + version = "1.0.0"; 276704 + sha256 = "1bpybiarlh030k825ikf4sc3wm54qn8jxn9wcycfchz311rahci1"; 276705 + libraryHaskellDepends = [ gogol-core ]; 276878 276706 description = "Google Surveys SDK"; 276879 - license = "unknown"; 276707 + license = lib.licenses.mpl20; 276880 276708 } 276881 276709 ) { }; 276882 276710 276883 276711 "gogol-tagmanager" = callPackage ( 276884 - { 276885 - mkDerivation, 276886 - base, 276887 - gogol-core, 276888 - }: 276712 + { mkDerivation, gogol-core }: 276889 276713 mkDerivation { 276890 276714 pname = "gogol-tagmanager"; 276891 - version = "0.5.0"; 276892 - sha256 = "116wc01i63q519bbqdi7ln12cvbfdsf6jdfbxrmz7zrzj4zw27l5"; 276893 - libraryHaskellDepends = [ 276894 - base 276895 - gogol-core 276896 - ]; 276715 + version = "1.0.0"; 276716 + sha256 = "1lfadp570iampv44s8kjykimll2h3jrm7kmg696lc4gvr45ps9iz"; 276717 + libraryHaskellDepends = [ gogol-core ]; 276897 276718 description = "Google Tag Manager SDK"; 276898 - license = "unknown"; 276719 + license = lib.licenses.mpl20; 276899 276720 } 276900 276721 ) { }; 276901 276722 ··· 276921 276742 ) { }; 276922 276743 276923 276744 "gogol-testing" = callPackage ( 276924 - { 276925 - mkDerivation, 276926 - base, 276927 - gogol-core, 276928 - }: 276745 + { mkDerivation, gogol-core }: 276929 276746 mkDerivation { 276930 276747 pname = "gogol-testing"; 276931 - version = "0.5.0"; 276932 - sha256 = "1fawwvbcy51ri9szfiknkrqvhapdhfw2qpbvdf10mjn5jpiqmj39"; 276933 - libraryHaskellDepends = [ 276934 - base 276935 - gogol-core 276936 - ]; 276748 + version = "1.0.0"; 276749 + sha256 = "0spim4pb7l582ydp4p5fz24bdqdl2d3jl75sw90g39fkdhx8b36s"; 276750 + libraryHaskellDepends = [ gogol-core ]; 276937 276751 description = "Google Cloud Testing SDK"; 276938 - license = "unknown"; 276752 + license = lib.licenses.mpl20; 276939 276753 } 276940 276754 ) { }; 276941 276755 276942 276756 "gogol-texttospeech" = callPackage ( 276943 - { 276944 - mkDerivation, 276945 - base, 276946 - gogol-core, 276947 - }: 276757 + { mkDerivation, gogol-core }: 276948 276758 mkDerivation { 276949 276759 pname = "gogol-texttospeech"; 276950 - version = "0.5.0"; 276951 - sha256 = "0na9qf1307lg9bf23pd20wic530hy8hdqy95g65gdjz9g2969flk"; 276952 - libraryHaskellDepends = [ 276953 - base 276954 - gogol-core 276955 - ]; 276760 + version = "1.0.0"; 276761 + sha256 = "0dal449bcdlr04mllfam1m9n0qz8p3ddlv8vm1xpxzw52090jq3m"; 276762 + libraryHaskellDepends = [ gogol-core ]; 276956 276763 description = "Google Cloud Text-to-Speech SDK"; 276957 - license = "unknown"; 276764 + license = lib.licenses.mpl20; 276958 276765 } 276959 276766 ) { }; 276960 276767 276961 276768 "gogol-toolresults" = callPackage ( 276962 - { 276963 - mkDerivation, 276964 - base, 276965 - gogol-core, 276966 - }: 276769 + { mkDerivation, gogol-core }: 276967 276770 mkDerivation { 276968 276771 pname = "gogol-toolresults"; 276969 - version = "0.5.0"; 276970 - sha256 = "1m84mv6nbbf142ss1dgk91qhciy9wlfshf3hybb364wxqf4bkq93"; 276971 - libraryHaskellDepends = [ 276972 - base 276973 - gogol-core 276974 - ]; 276772 + version = "1.0.0"; 276773 + sha256 = "108x732f9bxsqwj1wnmp3sb19v2hc0amjq3hjpw8f2iciyy4l5ia"; 276774 + libraryHaskellDepends = [ gogol-core ]; 276975 276775 description = "Google Cloud Tool Results SDK"; 276976 - license = "unknown"; 276776 + license = lib.licenses.mpl20; 276977 276777 } 276978 276778 ) { }; 276979 276779 276980 276780 "gogol-tpu" = callPackage ( 276981 - { 276982 - mkDerivation, 276983 - base, 276984 - gogol-core, 276985 - }: 276781 + { mkDerivation, gogol-core }: 276986 276782 mkDerivation { 276987 276783 pname = "gogol-tpu"; 276988 - version = "0.5.0"; 276989 - sha256 = "1w6qcqz13sgk05i49nkx6pkxgsyc8pxy0rjyqlbribiwy30isxv3"; 276990 - libraryHaskellDepends = [ 276991 - base 276992 - gogol-core 276993 - ]; 276784 + version = "1.0.0"; 276785 + sha256 = "09hbn03scg5axmfy15d29v5nmqxgsc8289x95rahcy00vjcx0aip"; 276786 + libraryHaskellDepends = [ gogol-core ]; 276994 276787 description = "Google Cloud TPU SDK"; 276995 - license = "unknown"; 276788 + license = lib.licenses.mpl20; 276996 276789 } 276997 276790 ) { }; 276998 276791 276999 276792 "gogol-tracing" = callPackage ( 277000 - { 277001 - mkDerivation, 277002 - base, 277003 - gogol-core, 277004 - }: 276793 + { mkDerivation, gogol-core }: 277005 276794 mkDerivation { 277006 276795 pname = "gogol-tracing"; 277007 - version = "0.5.0"; 277008 - sha256 = "12f84mhfyckic7kq92xyry4xfipic50znzm4q37vphjfsv9m9r4i"; 277009 - libraryHaskellDepends = [ 277010 - base 277011 - gogol-core 277012 - ]; 276796 + version = "1.0.0"; 276797 + sha256 = "0a98hq71pl3hiv8axaqibs7i5vx9h36zcp4lhj1ckca9mbqps87g"; 276798 + libraryHaskellDepends = [ gogol-core ]; 277013 276799 description = "Google Tracing SDK"; 277014 - license = "unknown"; 276800 + license = lib.licenses.mpl20; 277015 276801 } 277016 276802 ) { }; 277017 276803 277018 276804 "gogol-translate" = callPackage ( 277019 - { 277020 - mkDerivation, 277021 - base, 277022 - gogol-core, 277023 - }: 276805 + { mkDerivation, gogol-core }: 277024 276806 mkDerivation { 277025 276807 pname = "gogol-translate"; 277026 - version = "0.5.0"; 277027 - sha256 = "1ida8wkwp0fqvzsnbd99c842b6a3bcg5nw84aicffn95vwbl9rma"; 277028 - libraryHaskellDepends = [ 277029 - base 277030 - gogol-core 277031 - ]; 276808 + version = "1.0.0"; 276809 + sha256 = "15ai2f66bi5hvfpfqx3kpr7pb9nw5sw13p6igs9a2vmdaqf57mkg"; 276810 + libraryHaskellDepends = [ gogol-core ]; 277032 276811 description = "Google Cloud Translation SDK"; 277033 - license = "unknown"; 276812 + license = lib.licenses.mpl20; 277034 276813 } 277035 276814 ) { }; 277036 276815 277037 276816 "gogol-urlshortener" = callPackage ( 277038 - { 277039 - mkDerivation, 277040 - base, 277041 - gogol-core, 277042 - }: 276817 + { mkDerivation, gogol-core }: 277043 276818 mkDerivation { 277044 276819 pname = "gogol-urlshortener"; 277045 - version = "0.5.0"; 277046 - sha256 = "0a5fxcrmwjncxz6l9mhgj44i8lk8rnbgqacvkdmmhylc0yh3al2l"; 277047 - libraryHaskellDepends = [ 277048 - base 277049 - gogol-core 277050 - ]; 276820 + version = "1.0.0"; 276821 + sha256 = "0j846nnb5w2lki10wnvdslds4bi387hxcfrr3m8q156n0dvgzz5q"; 276822 + libraryHaskellDepends = [ gogol-core ]; 277051 276823 description = "Google URL Shortener SDK"; 277052 - license = "unknown"; 276824 + license = lib.licenses.mpl20; 277053 276825 } 277054 276826 ) { }; 277055 276827 ··· 277075 276847 ) { }; 277076 276848 277077 276849 "gogol-vault" = callPackage ( 277078 - { 277079 - mkDerivation, 277080 - base, 277081 - gogol-core, 277082 - }: 276850 + { mkDerivation, gogol-core }: 277083 276851 mkDerivation { 277084 276852 pname = "gogol-vault"; 277085 - version = "0.5.0"; 277086 - sha256 = "1dzk79y10396qq6l3y7zs9jm5rga02yxvdhp8dm7af9lb3izmjnc"; 277087 - libraryHaskellDepends = [ 277088 - base 277089 - gogol-core 277090 - ]; 277091 - description = "Google G Suite Vault SDK"; 277092 - license = "unknown"; 276853 + version = "1.0.0"; 276854 + sha256 = "08dyv38d0ga4dc6zlxz41dgba84ylxc336xv0c33jqxhrzdq6654"; 276855 + libraryHaskellDepends = [ gogol-core ]; 276856 + description = "Google Vault SDK"; 276857 + license = lib.licenses.mpl20; 277093 276858 } 277094 276859 ) { }; 277095 276860 277096 276861 "gogol-videointelligence" = callPackage ( 277097 - { 277098 - mkDerivation, 277099 - base, 277100 - gogol-core, 277101 - }: 276862 + { mkDerivation, gogol-core }: 277102 276863 mkDerivation { 277103 276864 pname = "gogol-videointelligence"; 277104 - version = "0.5.0"; 277105 - sha256 = "16jczzbvk4ww8li0yyk6clx4l2b28g48pxsckic9sdsqy5xj709c"; 277106 - libraryHaskellDepends = [ 277107 - base 277108 - gogol-core 277109 - ]; 276865 + version = "1.0.0"; 276866 + sha256 = "1303p25mdzvk79rhy942f1v27n476cqj1sclycq3mnflf661sbwa"; 276867 + libraryHaskellDepends = [ gogol-core ]; 277110 276868 description = "Google Cloud Video Intelligence SDK"; 277111 - license = "unknown"; 276869 + license = lib.licenses.mpl20; 277112 276870 } 277113 276871 ) { }; 277114 276872 277115 276873 "gogol-vision" = callPackage ( 277116 - { 277117 - mkDerivation, 277118 - base, 277119 - gogol-core, 277120 - }: 276874 + { mkDerivation, gogol-core }: 277121 276875 mkDerivation { 277122 276876 pname = "gogol-vision"; 277123 - version = "0.5.0"; 277124 - sha256 = "1h71p2a35lwj3p8zw6mvzxas9yyw5diss0lyg2w2nqsx8cynh7rb"; 277125 - libraryHaskellDepends = [ 277126 - base 277127 - gogol-core 277128 - ]; 276877 + version = "1.0.0"; 276878 + sha256 = "13llhpsj0lzd4r6mbgzlcqgj8m14i0qk3il3pynxwhzvn1nccjps"; 276879 + libraryHaskellDepends = [ gogol-core ]; 277129 276880 description = "Google Cloud Vision SDK"; 277130 - license = "unknown"; 276881 + license = lib.licenses.mpl20; 277131 276882 } 277132 276883 ) { }; 277133 276884 277134 276885 "gogol-webmaster-tools" = callPackage ( 277135 - { 277136 - mkDerivation, 277137 - base, 277138 - gogol-core, 277139 - }: 276886 + { mkDerivation, gogol-core }: 277140 276887 mkDerivation { 277141 276888 pname = "gogol-webmaster-tools"; 277142 - version = "0.5.0"; 277143 - sha256 = "029kbgzsbqyd8mbflkca8djmavmphddcldkjf8ds5jkp1qpqnnha"; 277144 - libraryHaskellDepends = [ 277145 - base 277146 - gogol-core 277147 - ]; 276889 + version = "1.0.0"; 276890 + sha256 = "1da7zap20g3s8n8pail5sh7wy4i7m718qr1h3dmqpd4413p9ybcn"; 276891 + libraryHaskellDepends = [ gogol-core ]; 277148 276892 description = "Google Search Console SDK"; 277149 - license = "unknown"; 276893 + license = lib.licenses.mpl20; 277150 276894 } 277151 276895 ) { }; 277152 276896 277153 276897 "gogol-websecurityscanner" = callPackage ( 277154 - { 277155 - mkDerivation, 277156 - base, 277157 - gogol-core, 277158 - }: 276898 + { mkDerivation, gogol-core }: 277159 276899 mkDerivation { 277160 276900 pname = "gogol-websecurityscanner"; 277161 - version = "0.5.0"; 277162 - sha256 = "1mcr0cs8pnlbwwsmlwjmkclvcwdwzhg2zqw9bqljw3iism43m9dq"; 277163 - libraryHaskellDepends = [ 277164 - base 277165 - gogol-core 277166 - ]; 276901 + version = "1.0.0"; 276902 + sha256 = "0asdbgv7n7vcc7z2qxr4aqva0w75wzxba2niyq10648ya1dxrx5d"; 276903 + libraryHaskellDepends = [ gogol-core ]; 277167 276904 description = "Google Web Security Scanner SDK"; 277168 - license = "unknown"; 276905 + license = lib.licenses.mpl20; 277169 276906 } 277170 276907 ) { }; 277171 276908 277172 276909 "gogol-youtube" = callPackage ( 277173 - { 277174 - mkDerivation, 277175 - base, 277176 - gogol-core, 277177 - }: 276910 + { mkDerivation, gogol-core }: 277178 276911 mkDerivation { 277179 276912 pname = "gogol-youtube"; 277180 - version = "0.5.0"; 277181 - sha256 = "0gamhcnhvxkybsnikwrlmin0fkf1h3fcflk4vg1zcm1sg7sk9xlj"; 277182 - libraryHaskellDepends = [ 277183 - base 277184 - gogol-core 277185 - ]; 277186 - description = "Google YouTube Data SDK"; 277187 - license = "unknown"; 276913 + version = "1.0.0"; 276914 + sha256 = "1zgfx51z3wxmjkyzg876kfmwb516n5dhaygg1bmjhqc6xwzzp2si"; 276915 + libraryHaskellDepends = [ gogol-core ]; 276916 + description = "Google YouTube Data API v3 SDK"; 276917 + license = lib.licenses.mpl20; 277188 276918 } 277189 276919 ) { }; 277190 276920 277191 276921 "gogol-youtube-analytics" = callPackage ( 277192 - { 277193 - mkDerivation, 277194 - base, 277195 - gogol-core, 277196 - }: 276922 + { mkDerivation, gogol-core }: 277197 276923 mkDerivation { 277198 276924 pname = "gogol-youtube-analytics"; 277199 - version = "0.5.0"; 277200 - sha256 = "0fnrmabcw5kfl8s5nam6wl8qr6ri693wk6wlhvynj1skc54v6l4s"; 277201 - libraryHaskellDepends = [ 277202 - base 277203 - gogol-core 277204 - ]; 276925 + version = "1.0.0"; 276926 + sha256 = "01rcrcj83smzhz9bzdhwrnd799w2gg62ypvkffyd1n06frs6jlaf"; 276927 + libraryHaskellDepends = [ gogol-core ]; 277205 276928 description = "Google YouTube Analytics SDK"; 277206 - license = "unknown"; 276929 + license = lib.licenses.mpl20; 277207 276930 } 277208 276931 ) { }; 277209 276932 277210 276933 "gogol-youtube-reporting" = callPackage ( 277211 - { 277212 - mkDerivation, 277213 - base, 277214 - gogol-core, 277215 - }: 276934 + { mkDerivation, gogol-core }: 277216 276935 mkDerivation { 277217 276936 pname = "gogol-youtube-reporting"; 277218 - version = "0.5.0"; 277219 - sha256 = "0cb88q2g67cx9zndf40a0c62cw7r32g1ps12a2ks0gz863bq53vn"; 277220 - libraryHaskellDepends = [ 277221 - base 277222 - gogol-core 277223 - ]; 276937 + version = "1.0.0"; 276938 + sha256 = "14p05jzz2vpxhgr2gb8pp5i8ni46zy3j5vjhlq3gb2ri7cz76asz"; 276939 + libraryHaskellDepends = [ gogol-core ]; 277224 276940 description = "Google YouTube Reporting SDK"; 277225 - license = "unknown"; 276941 + license = lib.licenses.mpl20; 277226 276942 } 277227 276943 ) { }; 277228 276944 ··· 289925 289641 base, 289926 289642 bytestring, 289927 289643 Cabal, 289928 - cabal-install-parsers, 289644 + cabal-install, 289645 + Cabal-syntax, 289929 289646 containers, 289930 289647 filepath, 289931 289648 optparse-applicative, ··· 289935 289652 }: 289936 289653 mkDerivation { 289937 289654 pname = "hackage-revdeps"; 289938 - version = "0.1"; 289939 - sha256 = "1rc6k7cjcc581cx7nx7q0p5qdfzpc010bacx4w524j6bw1qb2kp1"; 289940 - revision = "1"; 289941 - editedCabalFile = "1x0rslnwk818wv37qxjfk8nmv1ld5an6ca402zhgmq0i94gd39h3"; 289655 + version = "0.1.1"; 289656 + sha256 = "0ckkcp2ndzv219hpl42vfzw0hvb5vblsx2bvdsa98wikkxnmn47j"; 289942 289657 isLibrary = true; 289943 289658 isExecutable = true; 289944 289659 libraryHaskellDepends = [ ··· 289957 289672 base 289958 289673 bytestring 289959 289674 Cabal 289960 - cabal-install-parsers 289675 + cabal-install 289676 + Cabal-syntax 289961 289677 containers 289678 + filepath 289962 289679 optparse-applicative 289963 289680 time 289964 289681 ]; ··· 289983 289700 ed25519, 289984 289701 filepath, 289985 289702 ghc-prim, 289986 - lukko, 289987 289703 mtl, 289988 289704 network, 289989 289705 network-uri, ··· 290005 289721 }: 290006 289722 mkDerivation { 290007 289723 pname = "hackage-security"; 290008 - version = "0.6.2.6"; 290009 - sha256 = "0sfvd5y9v01bjsxsrf446ldcqf56arzr94jk2zsvj49yddbn2hif"; 290010 - revision = "5"; 290011 - editedCabalFile = "1aa020az04a459zx8xy8apdsxmvgndnlfz1cbxwr27sxylg6ypzq"; 289724 + version = "0.6.3.0"; 289725 + sha256 = "0w0d94gbqpi8b3ddkb32px8xj0qxaaxwdbl8x45y55331b23a7a0"; 290012 289726 libraryHaskellDepends = [ 290013 289727 base 290014 289728 base16-bytestring ··· 290022 289736 ed25519 290023 289737 filepath 290024 289738 ghc-prim 290025 - lukko 290026 289739 mtl 290027 289740 network 290028 289741 network-uri ··· 292381 292094 pname = "hakyll"; 292382 292095 version = "4.16.6.0"; 292383 292096 sha256 = "1933k6aiawa0kdws7ajm9picjchnfrkkd0qd8xb9l2yv1fvcywg2"; 292097 + revision = "1"; 292098 + editedCabalFile = "0w6z4dq378aai39n9samlfahqr5s1p0fz1xl6kgfp9z8bvq9daa7"; 292384 292099 isLibrary = true; 292385 292100 isExecutable = true; 292386 292101 enableSeparateDataOutput = true; ··· 298916 298631 }: 298917 298632 mkDerivation { 298918 298633 pname = "hash-string"; 298919 - version = "0.1.0.0"; 298920 - sha256 = "154iqs3pnxypsj5xj35gncmc4cvzfsx9x28iyh2i3dwdyks33rj5"; 298634 + version = "0.1.0.1"; 298635 + sha256 = "136a5pkygam99fx52r1dhrxydkzk1v83n0ip5iaczdx99cwki0gb"; 298921 298636 libraryHaskellDepends = [ 298922 298637 base 298923 298638 bytestring ··· 302181 301896 } 302182 301897 ) { }; 302183 301898 301899 + "haskell-halogen-core" = callPackage ( 301900 + { 301901 + mkDerivation, 301902 + async, 301903 + base, 301904 + bytestring, 301905 + clay, 301906 + containers, 301907 + data-default, 301908 + deepseq, 301909 + free, 301910 + hashable, 301911 + hspec, 301912 + kan-extensions, 301913 + mtl, 301914 + protolude, 301915 + random, 301916 + row-types, 301917 + safe-exceptions, 301918 + stm, 301919 + text, 301920 + time, 301921 + transformers, 301922 + unliftio, 301923 + unordered-containers, 301924 + uuid-types, 301925 + }: 301926 + mkDerivation { 301927 + pname = "haskell-halogen-core"; 301928 + version = "0.9.0"; 301929 + sha256 = "0c48150a29rssnzxvqmvq7ivdgb9yh47hhfzy0c56jqh2dy8gx0z"; 301930 + isLibrary = true; 301931 + isExecutable = true; 301932 + libraryHaskellDepends = [ 301933 + async 301934 + base 301935 + bytestring 301936 + clay 301937 + containers 301938 + data-default 301939 + deepseq 301940 + free 301941 + hashable 301942 + kan-extensions 301943 + mtl 301944 + protolude 301945 + random 301946 + row-types 301947 + safe-exceptions 301948 + stm 301949 + text 301950 + time 301951 + transformers 301952 + unliftio 301953 + unordered-containers 301954 + uuid-types 301955 + ]; 301956 + executableHaskellDepends = [ 301957 + async 301958 + base 301959 + bytestring 301960 + clay 301961 + containers 301962 + data-default 301963 + deepseq 301964 + free 301965 + hashable 301966 + kan-extensions 301967 + mtl 301968 + protolude 301969 + random 301970 + row-types 301971 + safe-exceptions 301972 + stm 301973 + text 301974 + time 301975 + transformers 301976 + unliftio 301977 + unordered-containers 301978 + uuid-types 301979 + ]; 301980 + testHaskellDepends = [ 301981 + async 301982 + base 301983 + bytestring 301984 + clay 301985 + containers 301986 + data-default 301987 + deepseq 301988 + free 301989 + hashable 301990 + hspec 301991 + kan-extensions 301992 + mtl 301993 + protolude 301994 + random 301995 + row-types 301996 + safe-exceptions 301997 + stm 301998 + text 301999 + time 302000 + transformers 302001 + unliftio 302002 + unordered-containers 302003 + uuid-types 302004 + ]; 302005 + description = "Haskell port of purescript-halogen library"; 302006 + license = lib.licenses.asl20; 302007 + hydraPlatforms = lib.platforms.none; 302008 + mainProgram = "halogen-core-prototype"; 302009 + broken = true; 302010 + } 302011 + ) { }; 302012 + 302184 302013 "haskell-holes-th" = callPackage ( 302185 302014 { 302186 302015 mkDerivation, ··· 302428 302257 lsp-types, 302429 302258 megaparsec, 302430 302259 mod, 302431 - monoid-subclasses, 302432 302260 mtl, 302433 302261 network-uri, 302434 302262 optparse-applicative, ··· 302477 302305 }: 302478 302306 mkDerivation { 302479 302307 pname = "haskell-language-server"; 302480 - version = "2.10.0.0"; 302481 - sha256 = "1h1w40y03lwkwzhl4bz0xvk2fdvzxq3gzx0xjkqv0bghmnkmz3fn"; 302308 + version = "2.11.0.0"; 302309 + sha256 = "1acd42sqa76nkrwkb6jcrimbf8va6ikkynv9ssbbamyy4vmx1aa4"; 302482 302310 isLibrary = true; 302483 302311 isExecutable = true; 302484 302312 libraryHaskellDepends = [ ··· 302605 302433 enummapset 302606 302434 extra 302607 302435 filepath 302608 - fuzzy 302609 302436 ghcide 302610 302437 hashable 302611 302438 hls-plugin-api ··· 302615 302442 lsp 302616 302443 lsp-test 302617 302444 lsp-types 302618 - monoid-subclasses 302619 302445 mtl 302620 302446 network-uri 302621 302447 ormolu ··· 307313 307139 } 307314 307140 ) { }; 307315 307141 307142 + "haskoin-core_1_2_2" = callPackage ( 307143 + { 307144 + mkDerivation, 307145 + aeson, 307146 + array, 307147 + base, 307148 + base16, 307149 + base64, 307150 + binary, 307151 + bytes, 307152 + bytestring, 307153 + cereal, 307154 + conduit, 307155 + containers, 307156 + crypton, 307157 + data-default, 307158 + deepseq, 307159 + entropy, 307160 + hashable, 307161 + hspec, 307162 + hspec-discover, 307163 + HUnit, 307164 + lens, 307165 + lens-aeson, 307166 + memory, 307167 + mtl, 307168 + murmur3, 307169 + network, 307170 + QuickCheck, 307171 + safe, 307172 + scientific, 307173 + secp256k1-haskell, 307174 + split, 307175 + string-conversions, 307176 + text, 307177 + time, 307178 + transformers, 307179 + unordered-containers, 307180 + vector, 307181 + }: 307182 + mkDerivation { 307183 + pname = "haskoin-core"; 307184 + version = "1.2.2"; 307185 + sha256 = "0zv2mjxixp059jd8gz0kr45wsi682wlpbzvik7lj62xq70qfffgx"; 307186 + libraryHaskellDepends = [ 307187 + aeson 307188 + array 307189 + base 307190 + base16 307191 + binary 307192 + bytes 307193 + bytestring 307194 + cereal 307195 + conduit 307196 + containers 307197 + crypton 307198 + data-default 307199 + deepseq 307200 + entropy 307201 + hashable 307202 + hspec 307203 + memory 307204 + mtl 307205 + murmur3 307206 + network 307207 + QuickCheck 307208 + safe 307209 + scientific 307210 + secp256k1-haskell 307211 + split 307212 + string-conversions 307213 + text 307214 + time 307215 + transformers 307216 + unordered-containers 307217 + vector 307218 + ]; 307219 + testHaskellDepends = [ 307220 + aeson 307221 + array 307222 + base 307223 + base16 307224 + base64 307225 + binary 307226 + bytes 307227 + bytestring 307228 + cereal 307229 + conduit 307230 + containers 307231 + crypton 307232 + data-default 307233 + deepseq 307234 + entropy 307235 + hashable 307236 + hspec 307237 + HUnit 307238 + lens 307239 + lens-aeson 307240 + memory 307241 + mtl 307242 + murmur3 307243 + network 307244 + QuickCheck 307245 + safe 307246 + scientific 307247 + secp256k1-haskell 307248 + split 307249 + string-conversions 307250 + text 307251 + time 307252 + transformers 307253 + unordered-containers 307254 + vector 307255 + ]; 307256 + testToolDepends = [ hspec-discover ]; 307257 + description = "Bitcoin & Bitcoin Cash library for Haskell"; 307258 + license = lib.licenses.mit; 307259 + hydraPlatforms = lib.platforms.none; 307260 + } 307261 + ) { }; 307262 + 307316 307263 "haskoin-crypto" = callPackage ( 307317 307264 { 307318 307265 mkDerivation, ··· 307400 307347 }: 307401 307348 mkDerivation { 307402 307349 pname = "haskoin-node"; 307403 - version = "1.1.3"; 307404 - sha256 = "1bsbnfyk7abcgm9czcn0r2fiimiy7r6h9mxqbv464dpchgnnp9iy"; 307350 + version = "1.1.4"; 307351 + sha256 = "1ghi2k8hmfpxnzajpz4f2wa2679qbh1ajd91hs7jyg3fyx341hp2"; 307405 307352 libraryHaskellDepends = [ 307406 307353 base 307407 307354 bytestring ··· 307614 307561 }: 307615 307562 mkDerivation { 307616 307563 pname = "haskoin-store"; 307617 - version = "1.5.14"; 307618 - sha256 = "1829p5mzgi6zq19h88dcs2cbsafvp7bg7hm3syf444yra9x9brps"; 307564 + version = "1.5.16"; 307565 + sha256 = "1ksqxbng1c2zsl2pvw1iy53z5skidpnar10rk145lna96mw9wsqk"; 307619 307566 isLibrary = true; 307620 307567 isExecutable = true; 307621 307568 libraryHaskellDepends = [ ··· 307758 307705 testToolDepends = [ hspec-discover ]; 307759 307706 description = "Storage and index for Bitcoin and Bitcoin Cash"; 307760 307707 license = lib.licenses.mit; 307708 + hydraPlatforms = lib.platforms.none; 307761 307709 mainProgram = "haskoin-store"; 307710 + broken = true; 307762 307711 } 307763 307712 ) { }; 307764 307713 ··· 307854 307803 } 307855 307804 ) { }; 307856 307805 307806 + "haskoin-store-data_1_5_16" = callPackage ( 307807 + { 307808 + mkDerivation, 307809 + aeson, 307810 + base, 307811 + binary, 307812 + bytes, 307813 + bytestring, 307814 + cereal, 307815 + containers, 307816 + data-default, 307817 + deepseq, 307818 + hashable, 307819 + haskoin-core, 307820 + hspec, 307821 + hspec-discover, 307822 + http-client, 307823 + http-types, 307824 + lens, 307825 + mtl, 307826 + network, 307827 + QuickCheck, 307828 + scotty, 307829 + string-conversions, 307830 + text, 307831 + time, 307832 + unordered-containers, 307833 + vector, 307834 + wreq, 307835 + }: 307836 + mkDerivation { 307837 + pname = "haskoin-store-data"; 307838 + version = "1.5.16"; 307839 + sha256 = "0qbka5arcr32vrw08hx0xwfi2nmy5hm078j3r2x41cg7d7mvbhvi"; 307840 + libraryHaskellDepends = [ 307841 + aeson 307842 + base 307843 + binary 307844 + bytes 307845 + bytestring 307846 + cereal 307847 + containers 307848 + data-default 307849 + deepseq 307850 + hashable 307851 + haskoin-core 307852 + http-client 307853 + http-types 307854 + lens 307855 + mtl 307856 + network 307857 + scotty 307858 + string-conversions 307859 + text 307860 + time 307861 + unordered-containers 307862 + vector 307863 + wreq 307864 + ]; 307865 + testHaskellDepends = [ 307866 + aeson 307867 + base 307868 + binary 307869 + bytes 307870 + bytestring 307871 + cereal 307872 + containers 307873 + data-default 307874 + deepseq 307875 + hashable 307876 + haskoin-core 307877 + hspec 307878 + http-client 307879 + http-types 307880 + lens 307881 + mtl 307882 + network 307883 + QuickCheck 307884 + scotty 307885 + string-conversions 307886 + text 307887 + time 307888 + unordered-containers 307889 + vector 307890 + wreq 307891 + ]; 307892 + testToolDepends = [ hspec-discover ]; 307893 + description = "Data for Haskoin Store"; 307894 + license = lib.licenses.mit; 307895 + hydraPlatforms = lib.platforms.none; 307896 + } 307897 + ) { }; 307898 + 307857 307899 "haskoin-util" = callPackage ( 307858 307900 { 307859 307901 mkDerivation, ··· 307908 307950 mkDerivation, 307909 307951 aeson, 307910 307952 aeson-pretty, 307953 + ansi-terminal, 307911 307954 base, 307955 + base16-bytestring, 307956 + base64-bytestring, 307912 307957 bytestring, 307913 307958 cereal, 307914 307959 conduit, 307915 307960 containers, 307916 - daemons, 307917 307961 data-default, 307918 - deepseq, 307962 + Decimal, 307919 307963 directory, 307964 + entropy, 307920 307965 esqueleto, 307921 - exceptions, 307922 - file-embed, 307923 - filepath, 307924 307966 haskeline, 307925 307967 haskoin-core, 307926 - haskoin-node, 307968 + haskoin-store-data, 307969 + hspec, 307970 + hspec-discover, 307971 + http-types, 307927 307972 HUnit, 307928 - lifted-async, 307929 - lifted-base, 307930 - monad-control, 307973 + lens, 307974 + lens-aeson, 307931 307975 monad-logger, 307932 307976 mtl, 307977 + optparse-applicative, 307933 307978 persistent, 307934 307979 persistent-sqlite, 307935 - persistent-template, 307980 + pretty, 307936 307981 QuickCheck, 307937 - resourcet, 307938 - semigroups, 307982 + random, 307983 + raw-strings-qq, 307984 + secp256k1-haskell, 307939 307985 split, 307940 - stm, 307941 - stm-chans, 307942 - stm-conduit, 307943 307986 string-conversions, 307944 - test-framework, 307945 - test-framework-hunit, 307946 - test-framework-quickcheck2, 307947 307987 text, 307948 307988 time, 307949 - transformers-base, 307950 - unix, 307989 + transformers, 307951 307990 unordered-containers, 307952 - yaml, 307953 - zeromq4-haskell, 307991 + wreq, 307954 307992 }: 307955 307993 mkDerivation { 307956 307994 pname = "haskoin-wallet"; 307957 - version = "0.4.2"; 307958 - sha256 = "0ykjz5qy69mpz4gnwd25lv0jqb3vamk5z6i4pw1zcm5c413fqdm5"; 307995 + version = "0.9.4"; 307996 + sha256 = "06z1rr9lbak48jir8xwp5yy92iaraffd187b8a1g1dx00za5pmf3"; 307959 307997 isLibrary = true; 307960 307998 isExecutable = true; 307961 307999 libraryHaskellDepends = [ 307962 308000 aeson 307963 308001 aeson-pretty 308002 + ansi-terminal 307964 308003 base 308004 + base16-bytestring 308005 + base64-bytestring 307965 308006 bytestring 307966 308007 cereal 307967 308008 conduit 307968 308009 containers 307969 - daemons 307970 308010 data-default 307971 - deepseq 308011 + Decimal 307972 308012 directory 308013 + entropy 307973 308014 esqueleto 307974 - exceptions 307975 - file-embed 307976 - filepath 307977 308015 haskeline 307978 308016 haskoin-core 307979 - haskoin-node 307980 - lifted-async 307981 - lifted-base 307982 - monad-control 308017 + haskoin-store-data 308018 + http-types 308019 + lens 308020 + lens-aeson 307983 308021 monad-logger 307984 308022 mtl 308023 + optparse-applicative 307985 308024 persistent 307986 308025 persistent-sqlite 307987 - persistent-template 307988 - resourcet 307989 - semigroups 308026 + pretty 308027 + random 308028 + raw-strings-qq 308029 + secp256k1-haskell 307990 308030 split 307991 - stm 307992 - stm-chans 307993 - stm-conduit 307994 308031 string-conversions 307995 308032 text 307996 308033 time 307997 - transformers-base 307998 - unix 308034 + transformers 307999 308035 unordered-containers 308000 - yaml 308001 - zeromq4-haskell 308036 + wreq 308002 308037 ]; 308003 308038 executableHaskellDepends = [ 308004 308039 aeson 308005 308040 aeson-pretty 308041 + ansi-terminal 308006 308042 base 308007 - haskoin-node 308043 + base16-bytestring 308044 + base64-bytestring 308045 + bytestring 308046 + cereal 308047 + conduit 308048 + containers 308049 + data-default 308050 + Decimal 308051 + directory 308052 + entropy 308053 + esqueleto 308054 + haskeline 308055 + haskoin-core 308056 + haskoin-store-data 308057 + http-types 308058 + lens 308059 + lens-aeson 308008 308060 monad-logger 308061 + mtl 308062 + optparse-applicative 308063 + persistent 308009 308064 persistent-sqlite 308010 - resourcet 308065 + pretty 308066 + random 308067 + raw-strings-qq 308068 + secp256k1-haskell 308069 + split 308011 308070 string-conversions 308071 + text 308072 + time 308073 + transformers 308012 308074 unordered-containers 308013 - zeromq4-haskell 308075 + wreq 308014 308076 ]; 308015 308077 testHaskellDepends = [ 308016 308078 aeson 308079 + aeson-pretty 308080 + ansi-terminal 308017 308081 base 308082 + base16-bytestring 308083 + base64-bytestring 308018 308084 bytestring 308085 + cereal 308086 + conduit 308019 308087 containers 308088 + data-default 308089 + Decimal 308020 308090 directory 308091 + entropy 308092 + esqueleto 308093 + haskeline 308021 308094 haskoin-core 308022 - haskoin-node 308095 + haskoin-store-data 308096 + hspec 308097 + http-types 308023 308098 HUnit 308099 + lens 308100 + lens-aeson 308024 308101 monad-logger 308025 308102 mtl 308103 + optparse-applicative 308026 308104 persistent 308027 308105 persistent-sqlite 308106 + pretty 308028 308107 QuickCheck 308029 - resourcet 308030 - stm 308031 - stm-chans 308108 + random 308109 + raw-strings-qq 308110 + secp256k1-haskell 308111 + split 308032 308112 string-conversions 308033 - test-framework 308034 - test-framework-hunit 308035 - test-framework-quickcheck2 308036 308113 text 308114 + time 308115 + transformers 308037 308116 unordered-containers 308117 + wreq 308038 308118 ]; 308039 - description = "Implementation of a Bitcoin SPV Wallet with BIP32 and multisig support"; 308119 + testToolDepends = [ hspec-discover ]; 308120 + description = "Lightweight CLI wallet for Bitcoin and Bitcoin Cash"; 308040 308121 license = lib.licenses.publicDomain; 308041 308122 hydraPlatforms = lib.platforms.none; 308123 + mainProgram = "hw"; 308042 308124 broken = true; 308043 308125 } 308044 308126 ) { }; ··· 308229 308311 ]; 308230 308312 description = "The Haskore Computer Music System"; 308231 308313 license = "GPL"; 308232 - hydraPlatforms = lib.platforms.none; 308233 - broken = true; 308234 308314 } 308235 308315 ) { }; 308236 308316 ··· 308273 308353 description = "Routines for realtime playback of Haskore songs"; 308274 308354 license = "GPL"; 308275 308355 hydraPlatforms = lib.platforms.none; 308356 + broken = true; 308276 308357 } 308277 308358 ) { }; 308278 308359 ··· 310984 311065 } 310985 311066 ) { }; 310986 311067 310987 - "hasql-pool_1_3_0_1" = callPackage ( 311068 + "hasql-pool_1_3_0_2" = callPackage ( 310988 311069 { 310989 311070 mkDerivation, 310990 311071 async, ··· 311001 311082 }: 311002 311083 mkDerivation { 311003 311084 pname = "hasql-pool"; 311004 - version = "1.3.0.1"; 311005 - sha256 = "0rvj241z6adnkrkr5yfr0k8ngxqylsl85kjcka6mn05m4swplsfz"; 311085 + version = "1.3.0.2"; 311086 + sha256 = "1adx703q4vx2qpmp2hl3zaa48h79px2py9p04ikwixd1aq300wrh"; 311006 311087 libraryHaskellDepends = [ 311007 311088 base 311008 311089 bytestring ··· 311276 311357 hasql, 311277 311358 hspec, 311278 311359 resource-pool, 311360 + text, 311279 311361 time, 311280 311362 }: 311281 311363 mkDerivation { 311282 311364 pname = "hasql-resource-pool"; 311283 - version = "0.6.0.0"; 311284 - sha256 = "05xvmcrlxp8gksizsx916awsxhbh4a9svnirhnibn9cp1bqcr11i"; 311365 + version = "1.9.1.2"; 311366 + sha256 = "1cg1wgrb7xbnqqqzy31y5lskcb66vmsr6ifmv0xi1qy0kb0c2y7i"; 311285 311367 libraryHaskellDepends = [ 311286 311368 base-prelude 311287 311369 clock 311288 311370 hasql 311289 311371 resource-pool 311372 + text 311290 311373 time 311291 311374 ]; 311292 311375 testHaskellDepends = [ ··· 316769 316852 } 316770 316853 ) { }; 316771 316854 316855 + "heck" = callPackage ( 316856 + { mkDerivation, base }: 316857 + mkDerivation { 316858 + pname = "heck"; 316859 + version = "0.2025.5.22"; 316860 + sha256 = "01lxh37sw8sjcmss34nh97im4l3vpdxy1wp7qxgdwynzgz6lf4s9"; 316861 + libraryHaskellDepends = [ base ]; 316862 + description = "Abstract unit test interface"; 316863 + license = lib.licenses.bsd0; 316864 + } 316865 + ) { }; 316866 + 316772 316867 "heckin" = callPackage ( 316773 316868 { 316774 316869 mkDerivation, ··· 322670 322765 ]; 322671 322766 description = "Fast and safe representation of a hex string"; 322672 322767 license = lib.licenses.mit; 322673 - hydraPlatforms = lib.platforms.none; 322674 - broken = true; 322675 322768 } 322676 322769 ) { }; 322677 322770 ··· 325093 325186 pname = "hie-bios"; 325094 325187 version = "0.15.0"; 325095 325188 sha256 = "1lih0gab4r33vyjmrfd7dq6fzwy6bzgkr2xw4cf3yxvxk3m1czaj"; 325189 + revision = "1"; 325190 + editedCabalFile = "1rcvcsz97y4b242mdjxlxmgv05bhb56hss1sqf4w07i9a6bjhnba"; 325096 325191 isLibrary = true; 325097 325192 isExecutable = true; 325098 325193 libraryHaskellDepends = [ ··· 329316 329411 }: 329317 329412 mkDerivation { 329318 329413 pname = "hkgr"; 329319 - version = "0.4.7"; 329320 - sha256 = "0r01jbmbswldz9dld3k9wdsda352z9g9yls6l60r6dcxa1pah9p0"; 329414 + version = "0.4.8"; 329415 + sha256 = "09p5x379k150kly8q0v9w14b8gxr6mr4klivkfd9nnbsclscasqg"; 329321 329416 isLibrary = false; 329322 329417 isExecutable = true; 329323 329418 enableSeparateDataOutput = true; ··· 329710 329805 } 329711 329806 ) { }; 329712 329807 329713 - "hledger_1_42_1" = callPackage ( 329808 + "hledger_1_42_2" = callPackage ( 329714 329809 { 329715 329810 mkDerivation, 329716 329811 aeson, ··· 329755 329850 }: 329756 329851 mkDerivation { 329757 329852 pname = "hledger"; 329758 - version = "1.42.1"; 329759 - sha256 = "0cw2v3ckg3b90d7xkq7mjwb1pr7z5js9qb3bm2i9mz7284aqzn3q"; 329760 - revision = "1"; 329761 - editedCabalFile = "1i422nwlp4pab9c4pi0vrdmnc52znxwd7pyd1173gk6jkkkvqg7n"; 329853 + version = "1.42.2"; 329854 + sha256 = "0c6g90xdwavp23azv4b1k9sn309j96150adc5ihm4lhijvldphcr"; 329762 329855 isLibrary = true; 329763 329856 isExecutable = true; 329764 329857 libraryHaskellDepends = [ ··· 330413 330506 } 330414 330507 ) { }; 330415 330508 330416 - "hledger-lib_1_42_1" = callPackage ( 330509 + "hledger-lib_1_42_2" = callPackage ( 330417 330510 { 330418 330511 mkDerivation, 330419 330512 aeson, ··· 330468 330561 }: 330469 330562 mkDerivation { 330470 330563 pname = "hledger-lib"; 330471 - version = "1.42.1"; 330472 - sha256 = "0c59vxi9w809vhw0gzpkl8iv0qbd6wv5xq6lvllxz0y7axkw7vnl"; 330473 - revision = "1"; 330474 - editedCabalFile = "1lpnp61hfscjx01krypqlm08zsjgxgwd400wphg70yk7ay4zg981"; 330564 + version = "1.42.2"; 330565 + sha256 = "0m0z70m4bm7bhrhjczdhwgz8afvjc1lrxwdr8kzgg0yyq2xrmxxx"; 330475 330566 libraryHaskellDepends = [ 330476 330567 aeson 330477 330568 aeson-pretty ··· 330783 330874 } 330784 330875 ) { }; 330785 330876 330786 - "hledger-ui_1_42_1" = callPackage ( 330877 + "hledger-ui_1_42_2" = callPackage ( 330787 330878 { 330788 330879 mkDerivation, 330789 330880 ansi-terminal, ··· 330819 330910 }: 330820 330911 mkDerivation { 330821 330912 pname = "hledger-ui"; 330822 - version = "1.42.1"; 330823 - sha256 = "1grj5j2lndyxzbfbr9mp29qy2l4gs7pcqgbmrkdb2l8qcdm83nwm"; 330913 + version = "1.42.2"; 330914 + sha256 = "17jmjphvrxcmg69b3p82sapf8x14w5xw10crbpcs6ws0wmlmmq71"; 330824 330915 revision = "1"; 330825 - editedCabalFile = "0db3yzr818m458ddlfkhbypsyjfkgmlbqyl9vyqdmvklxlnap0j5"; 330916 + editedCabalFile = "0lh28f9pxx6zxn91wna6ywj50igraqb6dyg797qqm2q3zz0kapif"; 330826 330917 isLibrary = true; 330827 330918 isExecutable = true; 330828 330919 libraryHaskellDepends = [ ··· 331021 331112 } 331022 331113 ) { }; 331023 331114 331024 - "hledger-web_1_42_1" = callPackage ( 331115 + "hledger-web_1_42_2" = callPackage ( 331025 331116 { 331026 331117 mkDerivation, 331027 331118 aeson, ··· 331076 331167 }: 331077 331168 mkDerivation { 331078 331169 pname = "hledger-web"; 331079 - version = "1.42.1"; 331080 - sha256 = "13z1fzvfdacdcaabhc68ic93rbh2kw983nhcm7jzkipnp559lvnj"; 331081 - revision = "1"; 331082 - editedCabalFile = "1mf2g5j8jqfdnvs1qnq58bb2d6yzi9bc3kh0zz00f0wbqhwiih30"; 331170 + version = "1.42.2"; 331171 + sha256 = "0ciz1y97aw7493avj8i9hnzjinc1fwj20wns036qa6yxglsj0qkm"; 331083 331172 isLibrary = true; 331084 331173 isExecutable = true; 331085 331174 libraryHaskellDepends = [ ··· 332691 332780 }: 332692 332781 mkDerivation { 332693 332782 pname = "hls-graph"; 332694 - version = "2.10.0.0"; 332695 - sha256 = "1q2ix901k3b0a05nax5lcrqnjllm6zvv63lh027mmrhg976vl0l2"; 332783 + version = "2.11.0.0"; 332784 + sha256 = "1mpf9vfnvxd03xhsywzb77g8rkvzj012jn6mz0rfmgvcls7kbgiw"; 332696 332785 enableSeparateDataOutput = true; 332697 332786 libraryHaskellDepends = [ 332698 332787 aeson ··· 332977 333066 }: 332978 333067 mkDerivation { 332979 333068 pname = "hls-plugin-api"; 332980 - version = "2.10.0.0"; 332981 - sha256 = "1xl2vh9jsydjsw6faij5w5amplz6qmgjadc5rp9ffl4lnd1fvvl6"; 333069 + version = "2.11.0.0"; 333070 + sha256 = "1jn75zq4nqaml6rzzilaszqy0z4nj6bz5y9svddpl276qw1mcbm8"; 332982 333071 libraryHaskellDepends = [ 332983 333072 aeson 332984 333073 base ··· 333510 333599 }: 333511 333600 mkDerivation { 333512 333601 pname = "hls-test-utils"; 333513 - version = "2.10.0.0"; 333514 - sha256 = "0kzqri1xslvi699gm2nasvs3zygk0y06w3x9mppksrgfs5961p0z"; 333602 + version = "2.11.0.0"; 333603 + sha256 = "11rswiw1zlsgjjfs78hl73axrwr9lmd334iyla4k98ak6gxllqr6"; 333515 333604 libraryHaskellDepends = [ 333516 333605 aeson 333517 333606 async ··· 334702 334791 pname = "hmm-lapack"; 334703 334792 version = "0.5.0.1"; 334704 334793 sha256 = "0im754fgqzi28snwf9bxkj4i1g69c0q8knzjvpmbrs79d5rncpxk"; 334705 - revision = "2"; 334706 - editedCabalFile = "1jg5qpdwi186vm87b0dm5gzqivlpc1q2lwi9vangxah1lfhd898r"; 334794 + revision = "3"; 334795 + editedCabalFile = "0gqmrl8raa38rnrdbh4nyfrl5csb9l5rgk0w1i1laazxqd8wl49y"; 334707 334796 libraryHaskellDepends = [ 334708 334797 base 334709 334798 comfort-array ··· 346181 346270 aeson, 346182 346271 attoparsec, 346183 346272 base, 346273 + binary, 346184 346274 bytestring, 346185 346275 conduit, 346276 + conduit-extra, 346186 346277 directory, 346187 - filesystem-conduit, 346188 346278 old-locale, 346189 346279 random, 346280 + resourcet, 346281 + scientific, 346282 + shakespeare, 346190 346283 shakespeare-text, 346191 346284 shelly, 346192 346285 system-filepath, ··· 346199 346292 }: 346200 346293 mkDerivation { 346201 346294 pname = "hs-pkpass"; 346202 - version = "0.4"; 346203 - sha256 = "01jcl2ia8p29gg5yazpxm6cdxyskl6z895lmgh888qkf9jlzf5mf"; 346295 + version = "0.6"; 346296 + sha256 = "1yq8mm2j3p3fc7siqbglz8fdlyvpkgp3svklnbyw09gaq3mwall0"; 346204 346297 libraryHaskellDepends = [ 346205 346298 aeson 346206 346299 attoparsec 346207 346300 base 346301 + binary 346208 346302 bytestring 346209 346303 conduit 346304 + conduit-extra 346210 346305 directory 346211 - filesystem-conduit 346212 346306 old-locale 346213 346307 random 346308 + resourcet 346309 + scientific 346310 + shakespeare 346214 346311 shakespeare-text 346215 346312 shelly 346216 346313 system-filepath ··· 346223 346320 ]; 346224 346321 description = "A library for Passbook pass creation & signing"; 346225 346322 license = lib.licenses.bsd3; 346226 - hydraPlatforms = lib.platforms.none; 346227 346323 maintainers = [ lib.maintainers.mpscholten ]; 346228 346324 } 346229 346325 ) { }; ··· 350214 350310 ]; 350215 350311 description = "sendxmpp clone, sending XMPP messages via CLI"; 350216 350312 license = lib.licenses.agpl3Only; 350313 + hydraPlatforms = lib.platforms.none; 350217 350314 mainProgram = "hsendxmpp"; 350218 350315 } 350219 350316 ) { }; ··· 351855 351952 hslua-core, 351856 351953 hslua-marshalling, 351857 351954 hslua-packaging, 351955 + process, 351858 351956 tasty, 351859 351957 tasty-hunit, 351860 351958 tasty-lua, ··· 351863 351961 }: 351864 351962 mkDerivation { 351865 351963 pname = "hslua-module-system"; 351866 - version = "1.1.2"; 351867 - sha256 = "1pi1yp5ch83b74diimbrq09gd9wq8cjpxwjzv9jvchf2xrz8winl"; 351964 + version = "1.1.3"; 351965 + sha256 = "0skdgb21x2zdyv1m3ai4n8axnk85i3s08pvsrkjwwsfcr7v3r432"; 351868 351966 libraryHaskellDepends = [ 351869 351967 base 351870 351968 directory ··· 351872 351970 hslua-core 351873 351971 hslua-marshalling 351874 351972 hslua-packaging 351973 + process 351875 351974 temporary 351876 351975 text 351877 351976 ]; ··· 355465 355564 pname = "hsql"; 355466 355565 version = "1.8.2"; 355467 355566 sha256 = "0i53n42ynq22fzlz4kpmri4q4abmi4dz8bz0izn307is1pmk4bby"; 355567 + revision = "1"; 355568 + editedCabalFile = "1awgp83xxza0j9lillndsk6c2gm9paymk3mhphc9fcj6m0f6is7n"; 355468 355569 libraryHaskellDepends = [ 355469 355570 base 355470 355571 old-time ··· 361790 361891 }: 361791 361892 mkDerivation { 361792 361893 pname = "http2-tls"; 361793 - version = "0.4.5"; 361794 - sha256 = "0kc7g8ldgm40fsh73r881pxjb87x0m00xnjd0zsl0baaa85f7r4y"; 361894 + version = "0.4.6"; 361895 + sha256 = "1fi7mk5lkpgr194da9wcwwn7hwdj5cw9kzdiqr3w8dwixnddqrl9"; 361795 361896 isLibrary = true; 361796 361897 isExecutable = true; 361797 361898 libraryHaskellDepends = [ ··· 361847 361948 }: 361848 361949 mkDerivation { 361849 361950 pname = "http3"; 361850 - version = "0.0.23"; 361851 - sha256 = "1xqs4k81758cwpdr7r3qdhv7hscv8yy8vaikq2i4wdyaa85cda56"; 361951 + version = "0.0.24"; 361952 + sha256 = "1i7dzw9ib9h0i2zjnwsqxbs188p71ly1ad1vdnjnbhyr4gq6aw77"; 361852 361953 isLibrary = true; 361853 361954 isExecutable = true; 361854 361955 libraryHaskellDepends = [ ··· 366156 366257 }: 366157 366258 mkDerivation { 366158 366259 pname = "hw-prelude"; 366159 - version = "0.0.4.4"; 366160 - sha256 = "03lc5yx0ybqi1fz3x1fs9bvnn4j0w9zg54x2jlwl1lsf8jg63z3j"; 366260 + version = "0.0.5.0"; 366261 + sha256 = "1ikvmhfi57c96l9vnr3kfwxn2wq7nl8iphiayz4kc6nyg8185ar3"; 366161 366262 libraryHaskellDepends = [ 366162 366263 aeson 366163 366264 async ··· 373021 373122 testToolDepends = [ hspec-discover ]; 373022 373123 description = "IHaskell extension for making the use of Symtegration more seamless"; 373023 373124 license = lib.licenses.asl20; 373024 - hydraPlatforms = lib.platforms.none; 373025 373125 } 373026 373126 ) { }; 373027 373127 ··· 374294 374394 }: 374295 374395 mkDerivation { 374296 374396 pname = "imp"; 374297 - version = "1.0.3.1"; 374298 - sha256 = "0p427yii4z9sg0cdvi7lq4r0ilq6xxlicvw8h831ya0m4d60j417"; 374397 + version = "1.0.3.3"; 374398 + sha256 = "1ybhn2cyca928q8yshsf0yvwi7s2gqqwd0k542prdm2ip45hizmj"; 374299 374399 libraryHaskellDepends = [ 374300 374400 base 374301 374401 Cabal-syntax ··· 378271 378371 }: 378272 378372 mkDerivation { 378273 378373 pname = "insert-ordered-containers"; 378274 - version = "0.2.6"; 378275 - sha256 = "17y4s31v6l1330i8ga2phf28myh5h3i889w2wll0hjkf2x5yalpg"; 378374 + version = "0.2.7"; 378375 + sha256 = "05rncapknzx8yii2mzfbg0hvack4jx11jwgh0pmqlng6fqdvpvbp"; 378276 378376 libraryHaskellDepends = [ 378277 378377 aeson 378278 378378 base ··· 379191 379291 }: 379192 379292 mkDerivation { 379193 379293 pname = "int-like"; 379194 - version = "0.1.4"; 379195 - sha256 = "0djf0p2k0ayzxbabx0r2hwcm2rm7llfjhrd718c7n2zkqz297hfm"; 379294 + version = "0.3.0"; 379295 + sha256 = "0nyxhq5715cb5dpvs6ap6zkm08xai1ivhpvj6jsj3kiy0fxyscmw"; 379196 379296 libraryHaskellDepends = [ 379197 379297 algebraic-graphs 379198 379298 base ··· 380436 380536 pname = "interpolation"; 380437 380537 version = "0.1.1.2"; 380438 380538 sha256 = "0y61hwm4xfa1wna4xk61c5p3b3z8i589lz6cxkk2pbaifydccxy0"; 380439 - revision = "1"; 380440 - editedCabalFile = "179papjalxxl2nsmcv95xz9kjdha148ljyz4syr581f1fn5vklzd"; 380539 + revision = "2"; 380540 + editedCabalFile = "0m4rc3ybwljrc6wp0vqahrrl67n8m06rfw8kfqkyp3k11fy11rfn"; 380441 380541 isLibrary = true; 380442 380542 isExecutable = true; 380443 380543 libraryHaskellDepends = [ ··· 381625 381725 }: 381626 381726 mkDerivation { 381627 381727 pname = "io-classes"; 381628 - version = "1.7.0.0"; 381629 - sha256 = "1lnp09xmkl63zfy3ly5lmy1fsidngzksh35ws753s9287wc9fxbh"; 381630 - revision = "5"; 381631 - editedCabalFile = "0zd603cliv8hp739wwfijrwi8kw0phafiqjjxi8kg063pfjrdd88"; 381728 + version = "1.8.0.0"; 381729 + sha256 = "154bpq8w65xyy4slbd12d0r02gv5bz0q09rlpxyjwx63kpzy5xw1"; 381632 381730 libraryHaskellDepends = [ 381633 381731 array 381634 381732 async ··· 381828 381926 criterion, 381829 381927 deepseq, 381830 381928 exceptions, 381929 + hashable, 381831 381930 io-classes, 381832 381931 nothunks, 381833 381932 parallel, ··· 381842 381941 }: 381843 381942 mkDerivation { 381844 381943 pname = "io-sim"; 381845 - version = "1.6.0.0"; 381846 - sha256 = "0ripyhcmvvlqhb2v2gnbvbmb6bi7pqlcnly7cs7a5rxb9iww4qla"; 381847 - revision = "4"; 381848 - editedCabalFile = "105pab3q504r31wpbj54dwl0fwqvca5r81w4b0bxycxgffghcpqq"; 381944 + version = "1.8.0.0"; 381945 + sha256 = "00dmqfbq9j906f5ga1vqqmrvzdmwxwrw6gcigmdspwnpaq73yydr"; 381849 381946 libraryHaskellDepends = [ 381850 381947 base 381851 381948 containers 381852 381949 deepseq 381853 381950 exceptions 381951 + hashable 381854 381952 io-classes 381855 381953 nothunks 381856 381954 parallel ··· 381878 381976 ]; 381879 381977 description = "A pure simulator for monadic concurrency with STM"; 381880 381978 license = lib.licenses.asl20; 381881 - hydraPlatforms = lib.platforms.none; 381882 - broken = true; 381883 381979 } 381884 381980 ) { }; 381885 381981 ··· 386369 386465 }: 386370 386466 mkDerivation { 386371 386467 pname = "jacinda"; 386372 - version = "3.3.0.3"; 386373 - sha256 = "1r3niy2zppimx0gn603x7gxwng11rn37776ddaa4vn0bvcy5spji"; 386374 - revision = "1"; 386375 - editedCabalFile = "1h4hqvv8bwbksgzmz77q0a3zdv3hwb5z01i748kzcqp2015fs6dp"; 386468 + version = "3.3.0.4"; 386469 + sha256 = "1ma3aa4sx4ybqgkclfjh8yz0ql0av6qflddyfsp90jaky3ryw54h"; 386376 386470 isLibrary = false; 386377 386471 isExecutable = true; 386378 386472 enableSeparateDataOutput = true; ··· 386449 386543 pname = "jack"; 386450 386544 version = "0.7.2.2"; 386451 386545 sha256 = "0f47cyhsjw57k4cgbmwvawn02v9dvx4x1pn7k2z612srf5l1igb5"; 386452 - revision = "2"; 386453 - editedCabalFile = "1hjk165kmdryyr5j50dgk59sa6kqvhhp6g5i31b2kzif9glbmq3s"; 386546 + revision = "3"; 386547 + editedCabalFile = "18w4v7psxkfgfi5hzms9v2myia18nxm7vdrrirdrkfnjwkbqsh7f"; 386454 386548 isLibrary = true; 386455 386549 isExecutable = true; 386456 386550 libraryHaskellDepends = [ ··· 389596 389690 } 389597 389691 ) { }; 389598 389692 389693 + "jpeg-turbo" = callPackage ( 389694 + { 389695 + mkDerivation, 389696 + base, 389697 + bytestring, 389698 + tasty, 389699 + tasty-discover, 389700 + tasty-hunit, 389701 + }: 389702 + mkDerivation { 389703 + pname = "jpeg-turbo"; 389704 + version = "0.1.0.0"; 389705 + sha256 = "1rln3w7iia5rp5awh4pvqzq68bak5hy9s7dkdwlykrf97sxh9lla"; 389706 + libraryHaskellDepends = [ 389707 + base 389708 + bytestring 389709 + ]; 389710 + testHaskellDepends = [ 389711 + base 389712 + bytestring 389713 + tasty 389714 + tasty-discover 389715 + tasty-hunit 389716 + ]; 389717 + testToolDepends = [ tasty-discover ]; 389718 + description = "FFI bindings to libjpeg-turbo"; 389719 + license = lib.licenses.bsd3; 389720 + } 389721 + ) { }; 389722 + 389599 389723 sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 389600 389724 { 389601 389725 mkDerivation, ··· 389961 390085 }: 389962 390086 mkDerivation { 389963 390087 sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 389964 - sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 389965 - sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 390088 + version = "0.9.9.5"; 390089 + sha256 = "1w7i64aaqisvk25f7p1qgxk1krqdh8ii9phapw0wyk7jcn6ybar2"; 389966 390090 enableSeparateDataOutput = true; 389967 390091 libraryHaskellDepends = [ 389968 390092 aeson ··· 390880 391004 }: 390881 391005 mkDerivation { 390882 391006 sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 390883 - version = "2.0.0.13"; 390884 - sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 391007 + version = "2.0.0.15"; 391008 + sha256 = "0rkcwd61j4bfp4jmhjj34nsid6mwgzyf715cn9jrm0xsxwcx5bx9"; 390885 391009 libraryHaskellDepends = [ 390886 391010 aeson 390887 391011 base ··· 391360 391484 }: 391361 391485 mkDerivation { 391362 391486 sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 391363 - version = "1.1.1"; 391364 - sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 391487 + version = "1.1.2"; 391488 + sha256 = "0jsyyn5vnc7ks96skxqkppry5h0ss4axma47zsrrychh652qc2kc"; 391365 391489 isLibrary = true; 391366 391490 isExecutable = true; 391367 391491 libraryHaskellDepends = [ ··· 397857 397981 }: 397858 397982 mkDerivation { 397859 397983 sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 397860 - sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 397861 - sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 397984 + version = "0.1.10.0"; 397985 + sha256 = "1rq6fry1lwaqki4jr28nhvh27xfg3b3528dda4iahgvd8hq5zvpf"; 397862 397986 libraryHaskellDepends = [ 397863 397987 base 397864 397988 binary ··· 398099 398223 binary, 398100 398224 bytestring, 398101 398225 sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 398226 + geomancy, 398227 + sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 398102 398228 GLFW-b, 398103 398229 sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 398104 398230 resourcet, ··· 398112 398238 }: 398113 398239 mkDerivation { 398114 398240 sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 398115 - version = "0.1.3.1"; 398116 - sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 398241 + version = "0.1.3.2"; 398242 + sha256 = "0wahzr2sjnggafymfyqr1h16rlhs8f01rbz8fg00arqxbgqsvlph"; 398117 398243 libraryHaskellDepends = [ 398118 398244 base 398119 398245 binary 398120 398246 bytestring 398121 398247 sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 398248 + geomancy 398249 + sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 398122 398250 GLFW-b 398123 398251 sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 398124 398252 resourcet ··· 401576 401704 }: 401577 401705 mkDerivation { 401578 401706 sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 401579 - version = "0.6.0.0"; 401580 - sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 401707 + version = "0.6.0.1"; 401708 + sha256 = "0j1jldj300n2fnr6q7ciiszcp2p3gs33cjxpjk481rrz84xlgaf5"; 401581 401709 libraryHaskellDepends = [ 401582 401710 aeson 401583 401711 attoparsec ··· 402593 402721 }: 402594 402722 mkDerivation { 402595 402723 sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 402596 - sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 402597 - sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 402724 + version = "2.0.0.11"; 402725 + sha256 = "0k9mad0kdjbpi2i2i8vfmp6y2cfkk0fvh3iara4m6rrdn2vy0h27"; 402598 402726 libraryHaskellDepends = [ 402599 402727 base 402600 402728 sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; ··· 404373 404501 }: 404374 404502 mkDerivation { 404375 404503 sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 404376 - version = "1.2.0"; 404377 - sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 404504 + version = "1.2.1"; 404505 + sha256 = "08x2y7dd356w9sidvpl72zbp36qyzkgcmrfr3rmrvd0ds64fj0kk"; 404378 404506 isLibrary = true; 404379 404507 isExecutable = true; 404380 404508 libraryHaskellDepends = [ ··· 406226 406354 pname = "language-gemini"; 406227 406355 version = "0.1.0.1"; 406228 406356 sha256 = "1vnl280ld0wazffzx19an5d6gybx4396z57idcfvdvzkap97qbh9"; 406229 - revision = "2"; 406230 - editedCabalFile = "0z1i9i3w6ymlhaa4r8fs6iks94rwx25zwwrk1gkyczhv1ah1vaqi"; 406357 + revision = "3"; 406358 + editedCabalFile = "1r378bjzwdbki99lbm7gb6j5bhizps0nqdrmc4j3cyqwgddxjp2v"; 406231 406359 libraryHaskellDepends = [ 406232 406360 base 406233 406361 text ··· 406241 406369 ]; 406242 406370 description = "Datatypes and parsing/printing functions to represent the Gemini markup language"; 406243 406371 license = lib.licenses.bsd3; 406244 - hydraPlatforms = lib.platforms.none; 406245 - broken = true; 406246 406372 } 406247 406373 ) { }; 406248 406374 ··· 408206 408332 pname = "lapack"; 408207 408333 version = "0.5.2"; 408208 408334 sha256 = "02slhxbg0ijcx2msrf17ymh17h14j95ia0nhb5mfiqdsxi8rwnda"; 408335 + revision = "1"; 408336 + editedCabalFile = "1xqylv8569f320dm67lab4idrjdl18ymxfs1sci19bi44k2hnm8d"; 408209 408337 isLibrary = true; 408210 408338 isExecutable = true; 408211 408339 libraryHaskellDepends = [ ··· 408363 408491 pname = "lapack-ffi-tools"; 408364 408492 version = "0.1.3.2"; 408365 408493 sha256 = "0y30qwxzbggn3aqr437j3bi1yfa1fpdq96xq7vxbi1fnll8a9432"; 408494 + revision = "1"; 408495 + editedCabalFile = "0z8ahg1bxcphdyhjaxwmfhdhwwg1d2mhx3dvl6af3c9sql9r5xjw"; 408366 408496 isLibrary = false; 408367 408497 isExecutable = true; 408368 408498 enableSeparateDataOutput = true; ··· 408947 409077 pname = "latex"; 408948 409078 version = "0.1.0.4"; 408949 409079 sha256 = "10m0l0wlrkkl474sdmi7cl6w6kqyqzcp05h7jdacxhzbxyf8nahw"; 408950 - revision = "1"; 408951 - editedCabalFile = "0ryjw2rsw979b9i7i23b6qf4y192za09f1yhi49czgsf4184sccb"; 409080 + revision = "2"; 409081 + editedCabalFile = "0m1y5c7dlqnfrr0p36dp5jy0g50w3mqhmzv8sawk0l1qrpiznq1k"; 408952 409082 libraryHaskellDepends = [ 408953 409083 base 408954 409084 containers ··· 409679 409809 }: 409680 409810 mkDerivation { 409681 409811 pname = "lawful-conversions"; 409682 - version = "0.1.6.1"; 409683 - sha256 = "18dp73b63wvzznvk1v47jxalpbfc9zjh184p88pjrjq3y6m514dg"; 409812 + version = "0.1.7"; 409813 + sha256 = "0ly64ng1lqm1czfcmsdkvnljzbr6z7cxdn6yl2bxbi09826ha1i3"; 409684 409814 libraryHaskellDepends = [ 409685 409815 base 409686 409816 bytestring ··· 411178 411308 }: 411179 411309 mkDerivation { 411180 411310 pname = "leancheck-instances"; 411181 - version = "0.0.5"; 411182 - sha256 = "111dgr7ivd36v5fqcvnx2jq7iyn9akz5css6mzb5h72rc0sxwq6q"; 411311 + version = "0.0.8"; 411312 + sha256 = "0xgywj1hpzrxnyg2yx28mlx2ds59g8scdxfw4chm1clg8ljapp45"; 411183 411313 libraryHaskellDepends = [ 411184 411314 array 411185 411315 base ··· 414529 414659 }: 414530 414660 mkDerivation { 414531 414661 pname = "libfuse3"; 414532 - version = "0.2.0.1"; 414533 - sha256 = "1d9bn7hajkis2xh7q9v0w6y2a0bgr36qxkr30z9hnnvyihd6r01n"; 414662 + version = "0.2.1.0"; 414663 + sha256 = "1nnncas8z22cz2l1799wf1gg00awhkxff7xwhhfi2s56d3nmpqbj"; 414534 414664 isLibrary = true; 414535 414665 isExecutable = true; 414536 414666 libraryHaskellDepends = [ ··· 414561 414691 description = "A Haskell binding for libfuse-3.x"; 414562 414692 license = lib.licenses.mit; 414563 414693 platforms = lib.platforms.linux; 414564 - hydraPlatforms = lib.platforms.none; 414565 - broken = true; 414566 414694 } 414567 414695 ) { inherit (pkgs) fuse3; }; 414568 414696 ··· 416406 416534 }: 416407 416535 mkDerivation { 416408 416536 pname = "libsodium-bindings"; 416409 - version = "0.0.2.0"; 416410 - sha256 = "12zg8ckvv8qhdmw6pdwfyif23y6iw5hgwcyhb4hlhfk8q7qv2av3"; 416537 + version = "0.0.3.0"; 416538 + sha256 = "1m00bqk0ppbpm8vd2dkbnbb01gmy4h30sjkc5as2yamlldr4c9bw"; 416411 416539 libraryHaskellDepends = [ base ]; 416412 416540 librarySystemDepends = [ libsodium ]; 416413 416541 description = "FFI bindings to libsodium"; ··· 418907 419035 pname = "linear-circuit"; 418908 419036 version = "0.1.0.4"; 418909 419037 sha256 = "0pyja29w1vrsi8vi65qdbc3c1vajiqgf5gff2zqh368k3hd4zpi4"; 418910 - revision = "1"; 418911 - editedCabalFile = "0gcz827i0jd9cnswrai36isdrga0y8vdlyb4nn2xjcpzy6zz6bfd"; 419038 + revision = "2"; 419039 + editedCabalFile = "1k21ln97x5ix02773ww765z50yy6d5dla2qcmfqi086jsrcbkr54"; 418912 419040 libraryHaskellDepends = [ 418913 419041 base 418914 419042 comfort-array ··· 422858 422986 } 422859 422987 ) { }; 422860 422988 422989 + "llama-cpp-hs" = callPackage ( 422990 + { 422991 + mkDerivation, 422992 + base, 422993 + bytestring, 422994 + derive-storable, 422995 + llama, 422996 + tasty, 422997 + tasty-hunit, 422998 + }: 422999 + mkDerivation { 423000 + pname = "llama-cpp-hs"; 423001 + version = "0.1.0.0"; 423002 + sha256 = "1zm3zkjx1n58dzjac3iln63a1x0kz5k7b5sxa1x6ahndvzy142qj"; 423003 + libraryHaskellDepends = [ 423004 + base 423005 + bytestring 423006 + derive-storable 423007 + ]; 423008 + librarySystemDepends = [ llama ]; 423009 + testHaskellDepends = [ 423010 + base 423011 + bytestring 423012 + derive-storable 423013 + tasty 423014 + tasty-hunit 423015 + ]; 423016 + description = "Haskell FFI bindings to the llama.cpp LLM inference library"; 423017 + license = lib.licenses.mit; 423018 + hydraPlatforms = lib.platforms.none; 423019 + broken = true; 423020 + } 423021 + ) { llama = null; }; 423022 + 422861 423023 "llrbtree" = callPackage ( 422862 423024 { mkDerivation, base }: 422863 423025 mkDerivation { ··· 428357 428519 } 428358 428520 ) { }; 428359 428521 428522 + "lr-acts" = callPackage ( 428523 + { 428524 + mkDerivation, 428525 + base, 428526 + criterion, 428527 + data-default, 428528 + groups, 428529 + hspec, 428530 + QuickCheck, 428531 + }: 428532 + mkDerivation { 428533 + pname = "lr-acts"; 428534 + version = "0.0.1"; 428535 + sha256 = "0v9j5zkb5bxvrl7h27f3nibpd3bjiypjw8jxkx77jfjqq8nnmp86"; 428536 + libraryHaskellDepends = [ 428537 + base 428538 + data-default 428539 + groups 428540 + ]; 428541 + testHaskellDepends = [ 428542 + base 428543 + data-default 428544 + groups 428545 + hspec 428546 + QuickCheck 428547 + ]; 428548 + benchmarkHaskellDepends = [ 428549 + base 428550 + criterion 428551 + data-default 428552 + groups 428553 + ]; 428554 + description = "Left and right actions, semidirect products and torsors"; 428555 + license = lib.licenses.bsd3; 428556 + } 428557 + ) { }; 428558 + 428360 428559 "lrucache" = callPackage ( 428361 428560 { 428362 428561 mkDerivation, ··· 435465 435664 } 435466 435665 ) { }; 435467 435666 435667 + "mappings_0_3_2_0" = callPackage ( 435668 + { 435669 + mkDerivation, 435670 + base, 435671 + cond, 435672 + containers, 435673 + formatting, 435674 + hspec, 435675 + hspec-discover, 435676 + indexed-traversable, 435677 + partialord, 435678 + }: 435679 + mkDerivation { 435680 + pname = "mappings"; 435681 + version = "0.3.2.0"; 435682 + sha256 = "0xmdcrc3bs0lvlp9jia5bfvppj0zcgdaic1zr7p5c3gnlw16d739"; 435683 + isLibrary = true; 435684 + isExecutable = true; 435685 + libraryHaskellDepends = [ 435686 + base 435687 + cond 435688 + containers 435689 + formatting 435690 + indexed-traversable 435691 + partialord 435692 + ]; 435693 + executableHaskellDepends = [ 435694 + base 435695 + cond 435696 + containers 435697 + formatting 435698 + indexed-traversable 435699 + partialord 435700 + ]; 435701 + testHaskellDepends = [ 435702 + base 435703 + cond 435704 + containers 435705 + formatting 435706 + hspec 435707 + indexed-traversable 435708 + partialord 435709 + ]; 435710 + testToolDepends = [ hspec-discover ]; 435711 + description = "Types which represent functions k -> v"; 435712 + license = lib.licenses.bsd3; 435713 + hydraPlatforms = lib.platforms.none; 435714 + mainProgram = "view"; 435715 + } 435716 + ) { }; 435717 + 435468 435718 "mappy" = callPackage ( 435469 435719 { 435470 435720 mkDerivation, ··· 435965 436215 pname = "markov-chain"; 435966 436216 version = "0.0.3.4"; 435967 436217 sha256 = "1kcjgfdwca4arngbj7w2g8bpmk5p44dyzrwcw8xmja0s200bhlbf"; 435968 - revision = "1"; 435969 - editedCabalFile = "10qpqdpnkjw72hxkrbxxwwjaf4lxk3shhippwkpn6m5s80fgzlwg"; 436218 + revision = "2"; 436219 + editedCabalFile = "0rvycamhqvwbh1gqc9s037ijly5jz8z43n4m2wfmiswm6738a62i"; 435970 436220 libraryHaskellDepends = [ 435971 436221 base 435972 436222 containers ··· 436788 437038 } 436789 437039 ) { }; 436790 437040 437041 + "massiv_1_0_5_0" = callPackage ( 437042 + { 437043 + mkDerivation, 437044 + base, 437045 + bytestring, 437046 + deepseq, 437047 + doctest, 437048 + exceptions, 437049 + primitive, 437050 + random, 437051 + scheduler, 437052 + unliftio-core, 437053 + vector, 437054 + vector-stream, 437055 + }: 437056 + mkDerivation { 437057 + pname = "massiv"; 437058 + version = "1.0.5.0"; 437059 + sha256 = "138y8kk2qxprlwd8isb6h7wigiymmin1sip255060ql5gzjaawcw"; 437060 + libraryHaskellDepends = [ 437061 + base 437062 + bytestring 437063 + deepseq 437064 + exceptions 437065 + primitive 437066 + random 437067 + scheduler 437068 + unliftio-core 437069 + vector 437070 + vector-stream 437071 + ]; 437072 + testHaskellDepends = [ 437073 + base 437074 + doctest 437075 + ]; 437076 + description = "Massiv (Массив) is an Array Library"; 437077 + license = lib.licenses.bsd3; 437078 + hydraPlatforms = lib.platforms.none; 437079 + maintainers = [ lib.maintainers.sheepforce ]; 437080 + } 437081 + ) { }; 437082 + 436791 437083 "massiv-io" = callPackage ( 436792 437084 { 436793 437085 mkDerivation, ··· 445264 445556 pname = "midi-music-box"; 445265 445557 version = "0.0.1.2"; 445266 445558 sha256 = "0rnjwis6y0lnyfjxnxqk3zsh78ylccq5v21avb97vybmj0pld1l9"; 445267 - revision = "5"; 445268 - editedCabalFile = "0j0dcd8x75dgx0rgj70hxl5p4wnmhg2zdw1wm0lvg43mazclkw0z"; 445559 + revision = "6"; 445560 + editedCabalFile = "0b8039mw0wacjxxwx1ws2wczwdgxm4iiymdkykk7lp5ii75vvfww"; 445269 445561 isLibrary = false; 445270 445562 isExecutable = true; 445271 445563 executableHaskellDepends = [ ··· 445970 446262 ]; 445971 446263 description = "Semi-automatic database schema migrations"; 445972 446264 license = lib.licenses.bsd3; 445973 - hydraPlatforms = lib.platforms.none; 445974 - broken = true; 445975 446265 } 445976 446266 ) { }; 445977 446267 ··· 446017 446307 ]; 446018 446308 description = "Semi-automatic database schema migrations"; 446019 446309 license = lib.licenses.bsd3; 446020 - hydraPlatforms = lib.platforms.none; 446021 446310 } 446022 446311 ) { }; 446023 446312 ··· 446061 446350 ]; 446062 446351 description = "Semi-automatic database schema migrations"; 446063 446352 license = lib.licenses.bsd3; 446064 - hydraPlatforms = lib.platforms.none; 446065 - broken = true; 446066 446353 } 446067 446354 ) { }; 446068 446355 ··· 446102 446389 ]; 446103 446390 description = "Semi-automatic database schema migrations"; 446104 446391 license = lib.licenses.bsd3; 446105 - hydraPlatforms = lib.platforms.none; 446106 446392 } 446107 446393 ) { }; 446108 446394 ··· 446769 447055 "minici" = callPackage ( 446770 447056 { 446771 447057 mkDerivation, 447058 + ansi-terminal, 446772 447059 base, 446773 447060 bytestring, 446774 447061 containers, ··· 446790 447077 }: 446791 447078 mkDerivation { 446792 447079 pname = "minici"; 446793 - version = "0.1.6"; 446794 - sha256 = "0ljr1wx46ijxrw39cv34a07p642f7693lppnvwpnan9pfaibq670"; 447080 + version = "0.1.7"; 447081 + sha256 = "0kwlgsjn7ikddk59bksb4abb0dc262a61mh4694p8s7x3psjris1"; 446795 447082 isLibrary = false; 446796 447083 isExecutable = true; 446797 447084 executableHaskellDepends = [ 447085 + ansi-terminal 446798 447086 base 446799 447087 bytestring 446800 447088 containers ··· 455759 456047 } 455760 456048 ) { }; 455761 456049 456050 + "monoid-extras_0_7" = callPackage ( 456051 + { 456052 + mkDerivation, 456053 + base, 456054 + criterion, 456055 + groups, 456056 + semigroupoids, 456057 + semigroups, 456058 + }: 456059 + mkDerivation { 456060 + pname = "monoid-extras"; 456061 + version = "0.7"; 456062 + sha256 = "0c25hcvsw6xqdgy6p8q5jdgxmnqhiq7z2hm43cn0yh9nk2y294ws"; 456063 + libraryHaskellDepends = [ 456064 + base 456065 + groups 456066 + semigroupoids 456067 + ]; 456068 + benchmarkHaskellDepends = [ 456069 + base 456070 + criterion 456071 + semigroups 456072 + ]; 456073 + description = "Various extra monoid-related definitions and utilities"; 456074 + license = lib.licenses.bsd3; 456075 + hydraPlatforms = lib.platforms.none; 456076 + } 456077 + ) { }; 456078 + 455762 456079 "monoid-insertleft" = callPackage ( 455763 456080 { mkDerivation, base }: 455764 456081 mkDerivation { ··· 464373 464690 }: 464374 464691 mkDerivation { 464375 464692 pname = "murmur3"; 464376 - version = "1.0.5"; 464377 - sha256 = "0ldmhprzldcxdbv5cd7nm7dfaavns4iv4z6mi1prnx1yn41lp6d0"; 464693 + version = "1.0.6"; 464694 + sha256 = "1lw3h5mzi7g2mipc4czbsgn08cnvkv3p30i5x6klb7vzzy40wkhb"; 464378 464695 libraryHaskellDepends = [ 464379 464696 base 464380 464697 bytestring ··· 465287 465604 }: 465288 465605 mkDerivation { 465289 465606 pname = "mustache"; 465290 - version = "2.4.2"; 465291 - sha256 = "14hgfryg77ms5isqfz07w8p81jn1qzg0yp5myjq50pj5zqsw11i2"; 465607 + version = "2.4.3.1"; 465608 + sha256 = "0par311bk001jj00r7kiwv82v0s2lj6y4kvhrr9jfhnd22kzzl0g"; 465292 465609 isLibrary = true; 465293 465610 isExecutable = true; 465294 465611 libraryHaskellDepends = [ ··· 465530 465847 } 465531 465848 ) { }; 465532 465849 465850 + "mutable-fenwick" = callPackage ( 465851 + { 465852 + mkDerivation, 465853 + array, 465854 + base, 465855 + commutative-semigroups, 465856 + hspec, 465857 + monoid-subclasses, 465858 + vector, 465859 + }: 465860 + mkDerivation { 465861 + pname = "mutable-fenwick"; 465862 + version = "0.1.1.0"; 465863 + sha256 = "1c29azj3fs797la6cgnbkz9z5znpqqx9vf5ps9fxhrxp0rn6vj5r"; 465864 + libraryHaskellDepends = [ 465865 + array 465866 + base 465867 + commutative-semigroups 465868 + monoid-subclasses 465869 + vector 465870 + ]; 465871 + testHaskellDepends = [ 465872 + array 465873 + base 465874 + hspec 465875 + vector 465876 + ]; 465877 + description = "Mutable Fenwick trees"; 465878 + license = lib.licenses.mit; 465879 + } 465880 + ) { }; 465881 + 465533 465882 "mutable-iter" = callPackage ( 465534 465883 { 465535 465884 mkDerivation, ··· 466453 466802 }: 466454 466803 mkDerivation { 466455 466804 pname = "myers-diff"; 466456 - version = "0.3.0.0"; 466457 - sha256 = "1zkhax2wha1cv9zzw7hvk4dnnkd8p6iskd7lf8d7kmkjv88bxjsa"; 466805 + version = "0.3.0.2"; 466806 + sha256 = "0w0y53qnkja4dpzxsvydg6w5ymwdwwlm6x1yfij24inpycdhjhkw"; 466458 466807 libraryHaskellDepends = [ 466459 466808 base 466460 466809 containers ··· 466495 466844 weigh 466496 466845 ]; 466497 466846 license = lib.licenses.bsd3; 466498 - hydraPlatforms = lib.platforms.none; 466499 - broken = true; 466500 466847 } 466501 466848 ) { }; 466502 466849 ··· 472737 473084 } 472738 473085 ) { }; 472739 473086 473087 + "network-can" = callPackage ( 473088 + { 473089 + mkDerivation, 473090 + attoparsec, 473091 + base, 473092 + bytestring, 473093 + containers, 473094 + data-default-class, 473095 + hspec, 473096 + hspec-discover, 473097 + mtl, 473098 + network, 473099 + QuickCheck, 473100 + transformers, 473101 + unliftio, 473102 + }: 473103 + mkDerivation { 473104 + pname = "network-can"; 473105 + version = "0.1.0.0"; 473106 + sha256 = "1rx3xv0g7w9vq2jqhcfzdarykd6fnsixzyswiip08mmqn7jd0qca"; 473107 + isLibrary = true; 473108 + isExecutable = true; 473109 + libraryHaskellDepends = [ 473110 + attoparsec 473111 + base 473112 + bytestring 473113 + containers 473114 + data-default-class 473115 + mtl 473116 + network 473117 + QuickCheck 473118 + transformers 473119 + unliftio 473120 + ]; 473121 + testHaskellDepends = [ 473122 + base 473123 + hspec 473124 + ]; 473125 + testToolDepends = [ hspec-discover ]; 473126 + description = "CAN bus networking"; 473127 + license = lib.licenses.bsd3; 473128 + } 473129 + ) { }; 473130 + 472740 473131 "network-carbon" = callPackage ( 472741 473132 { 472742 473133 mkDerivation, ··· 472877 473268 }: 472878 473269 mkDerivation { 472879 473270 pname = "network-control"; 472880 - version = "0.1.6"; 472881 - sha256 = "18cgla6n1s773zzbk9h5lgx36bb52if44h8m3xs5w0b22jnql9gl"; 473271 + version = "0.1.7"; 473272 + sha256 = "042vg6v81m5s97c0xrl0535gnmxlfwlfidq9nbpvwwjw3qw0vm05"; 472882 473273 libraryHaskellDepends = [ 472883 473274 base 472884 473275 psqueues ··· 477087 477478 }: 477088 477479 mkDerivation { 477089 477480 pname = "nix-narinfo"; 477090 - version = "0.1.1.1"; 477091 - sha256 = "1hc4w1wdnzjynvyxschglssfhxpqcgfx56vwblv17y7fc2qqk3xc"; 477481 + version = "0.1.1.2"; 477482 + sha256 = "09mmkbq8g359f5myixcavz3fsjdxmsbasinix44hqbnhgppmizyn"; 477092 477483 isLibrary = true; 477093 477484 isExecutable = true; 477094 477485 libraryHaskellDepends = [ ··· 477419 477810 }: 477420 477811 mkDerivation { 477421 477812 pname = "nix-tree"; 477422 - version = "0.6.1"; 477423 - sha256 = "1bnfdymkqpjr19c64my9zzmiggh7jy1fhkx109aj2mkaz4m0w4gi"; 477813 + version = "0.6.3"; 477814 + sha256 = "06dzf87vckd11yiq2ng6l80rd17p920lajykn1vy2azyhivkp59j"; 477424 477815 isLibrary = false; 477425 477816 isExecutable = true; 477426 477817 executableHaskellDepends = [ ··· 479206 479597 }: 479207 479598 mkDerivation { 479208 479599 pname = "nonempty-containers"; 479209 - version = "0.3.4.5"; 479210 - sha256 = "0a241kdg3spbcj9ajwgwribh5pxfdix8ixp8nm4dik5wq1garskf"; 479600 + version = "0.3.5.0"; 479601 + sha256 = "1dpapwar5392222zr9hz78swk8x7514jmxsf58ak0a6ha9c3ir89"; 479211 479602 libraryHaskellDepends = [ 479212 479603 aeson 479213 479604 base ··· 480551 480942 }: 480552 480943 mkDerivation { 480553 480944 pname = "nqe"; 480554 - version = "0.6.5"; 480555 - sha256 = "0k8p8sgmw9xl9v76h817zi0dmqkf8wkh8g1h4p481f7psqj82x55"; 480945 + version = "0.6.6"; 480946 + sha256 = "192w1l3i3cnmxxv2zq02ky31q4vsk6cy5bxih8767gfccn9kgkgi"; 480556 480947 libraryHaskellDepends = [ 480557 480948 base 480558 480949 conduit ··· 482088 482479 pname = "numeric-prelude"; 482089 482480 version = "0.4.4"; 482090 482481 sha256 = "04x6ry2sxr5hsiz4098dn2gqyjqywiq2xk0anf6wc4xrvasgccjs"; 482091 - revision = "3"; 482092 - editedCabalFile = "0nr7jpr2rzi2w0ffn4nrvzb8s4281kdslshcgp3xwkiz9daij2vb"; 482482 + revision = "4"; 482483 + editedCabalFile = "0mlhgwq3wiknhvn1d4r7iv3g84vgrlknnhdp66l5wk4sgsw9bw9f"; 482093 482484 isLibrary = true; 482094 482485 isExecutable = true; 482095 482486 libraryHaskellDepends = [ ··· 486308 486699 }: 486309 486700 mkDerivation { 486310 486701 pname = "om-elm"; 486311 - version = "2.0.0.8"; 486312 - sha256 = "094yrsxv9fnag30azj0gm4vnb5s29516q35pgr7jyz13i06fjx5w"; 486313 - libraryHaskellDepends = [ 486314 - base 486315 - bytestring 486316 - Cabal 486317 - containers 486318 - directory 486319 - http-types 486320 - safe 486321 - safe-exceptions 486322 - template-haskell 486323 - text 486324 - unix 486325 - wai 486326 - ]; 486327 - description = "Haskell utilities for building embedded Elm programs"; 486328 - license = lib.licenses.mit; 486329 - } 486330 - ) { }; 486331 - 486332 - "om-elm_2_0_1_0" = callPackage ( 486333 - { 486334 - mkDerivation, 486335 - base, 486336 - bytestring, 486337 - Cabal, 486338 - containers, 486339 - directory, 486340 - http-types, 486341 - safe, 486342 - safe-exceptions, 486343 - template-haskell, 486344 - text, 486345 - unix, 486346 - wai, 486347 - }: 486348 - mkDerivation { 486349 - pname = "om-elm"; 486350 486702 version = "2.0.1.0"; 486351 486703 sha256 = "0gi6frmdlv2sqhy63jjvswiahppxmapsrf1z66y3hdxi8dwhv2gm"; 486352 486704 libraryHaskellDepends = [ ··· 486365 486717 ]; 486366 486718 description = "Haskell utilities for building embedded Elm programs"; 486367 486719 license = lib.licenses.mit; 486368 - hydraPlatforms = lib.platforms.none; 486369 486720 } 486370 486721 ) { }; 486371 486722 ··· 487275 487626 tasty-hunit, 487276 487627 tasty-quickcheck, 487277 487628 text, 487629 + text-builder-linear, 487278 487630 text-display, 487279 487631 torsor, 487280 487632 }: 487281 487633 mkDerivation { 487282 487634 pname = "one-time-password"; 487283 - version = "3.0.0.0"; 487284 - sha256 = "0yark6agy421mk7zblzy4vpccbd1i53gpiysa0a7s9sh0szy4bql"; 487285 - revision = "3"; 487286 - editedCabalFile = "0dbck4bw97w1ci6yjgvgzzgbpr9xlnc8kghndigipxxy77sx5nqg"; 487635 + version = "3.0.1.0"; 487636 + sha256 = "0f8gdw9gjpyyh1a4d4rcl5pdhmyn6nkzspsc1bcjvjzvvx9adfdq"; 487287 487637 isLibrary = true; 487288 487638 isExecutable = true; 487289 487639 libraryHaskellDepends = [ ··· 487295 487645 network-uri 487296 487646 sel 487297 487647 text 487648 + text-builder-linear 487298 487649 text-display 487299 487650 ]; 487300 487651 executableHaskellDepends = [ ··· 487324 487675 ]; 487325 487676 description = "HMAC-Based and Time-Based One-Time Passwords"; 487326 487677 license = lib.licenses.mit; 487327 - hydraPlatforms = lib.platforms.none; 487328 487678 mainProgram = "one-time-password"; 487329 487679 } 487330 487680 ) { }; ··· 488841 489191 pname = "openapi3"; 488842 489192 version = "3.2.4"; 488843 489193 sha256 = "182bl4z9npcci85771adg7iar1377b5clgzs6wya04j79d391jyv"; 488844 - revision = "2"; 488845 - editedCabalFile = "1y7is2q6jfq1k35swnw9yv2h122pd5f6zchxl8zah0laafkm03vq"; 489194 + revision = "3"; 489195 + editedCabalFile = "0ajcly73d6q8vvc5syds7qwqvgr6zd278izg455nbd2rk958c2bk"; 488846 489196 isLibrary = true; 488847 489197 isExecutable = true; 488848 489198 setupHaskellDepends = [ ··· 497790 498140 } 497791 498141 ) { }; 497792 498142 497793 - "pandoc_3_6_4" = callPackage ( 498143 + "pandoc_3_7_0_2" = callPackage ( 497794 498144 { 497795 498145 mkDerivation, 497796 498146 aeson, ··· 497875 498225 }: 497876 498226 mkDerivation { 497877 498227 pname = "pandoc"; 497878 - version = "3.6.4"; 497879 - sha256 = "1igqsbzvgkrwb8k9ycjha9cynz5j50gfsc050j93k4bg3yd9c0lp"; 498228 + version = "3.7.0.2"; 498229 + sha256 = "1l33amh5dkbxbgicvk4hh231b8x36fb90jlpxmgqwfqldk7j3lmz"; 497880 498230 configureFlags = [ "-f-trypandoc" ]; 497881 498231 enableSeparateDataOutput = true; 497882 498232 libraryHaskellDepends = [ ··· 498206 498556 } 498207 498557 ) { }; 498208 498558 498209 - "pandoc-cli_3_6_4" = callPackage ( 498559 + "pandoc-cli_3_7_0_2" = callPackage ( 498210 498560 { 498211 498561 mkDerivation, 498212 498562 base, ··· 498222 498572 }: 498223 498573 mkDerivation { 498224 498574 pname = "pandoc-cli"; 498225 - version = "3.6.4"; 498226 - sha256 = "046jdqg3ysgap89npr613zzccxhd2hga33d8i588fr8x9r1syvya"; 498575 + version = "3.7.0.2"; 498576 + sha256 = "0g9x7h2aimiffnv03pcvai64kpwxykz18kd126x92lpsdjwclkgz"; 498227 498577 isLibrary = false; 498228 498578 isExecutable = true; 498229 498579 executableHaskellDepends = [ ··· 498306 498656 }: 498307 498657 mkDerivation { 498308 498658 pname = "pandoc-crossref"; 498309 - version = "0.3.18.2"; 498310 - sha256 = "0ikgh6sdi2ny6yb65sx2zy6rs35q5qy2qpqiy8sz4b1j8i784w9g"; 498659 + version = "0.3.19"; 498660 + sha256 = "0zzdnv8prz1jkksrmfr3gz23483mkbj1vkjpxda97qld3n8zkdhb"; 498311 498661 isLibrary = true; 498312 498662 isExecutable = true; 498313 498663 enableSeparateDataOutput = true; ··· 498366 498716 description = "Pandoc filter for cross-references"; 498367 498717 license = lib.licenses.gpl2Only; 498368 498718 mainProgram = "pandoc-crossref"; 498369 - maintainers = [ lib.maintainers.maralorn ]; 498719 + } 498720 + ) { }; 498721 + 498722 + "pandoc-crossref_0_3_20" = callPackage ( 498723 + { 498724 + mkDerivation, 498725 + base, 498726 + containers, 498727 + criterion, 498728 + data-default, 498729 + deepseq, 498730 + directory, 498731 + filepath, 498732 + gitrev, 498733 + hspec, 498734 + microlens, 498735 + microlens-ghc, 498736 + microlens-mtl, 498737 + microlens-th, 498738 + mtl, 498739 + open-browser, 498740 + optparse-applicative, 498741 + pandoc, 498742 + pandoc-cli, 498743 + pandoc-types, 498744 + syb, 498745 + template-haskell, 498746 + temporary, 498747 + text, 498748 + utility-ht, 498749 + }: 498750 + mkDerivation { 498751 + pname = "pandoc-crossref"; 498752 + version = "0.3.20"; 498753 + sha256 = "10fgmddlyva8yyqh9m5c8d417bcyxvfqgw9l0q77lp6b161593ya"; 498754 + isLibrary = true; 498755 + isExecutable = true; 498756 + enableSeparateDataOutput = true; 498757 + libraryHaskellDepends = [ 498758 + base 498759 + containers 498760 + data-default 498761 + directory 498762 + filepath 498763 + microlens 498764 + microlens-ghc 498765 + microlens-mtl 498766 + microlens-th 498767 + mtl 498768 + pandoc 498769 + pandoc-types 498770 + syb 498771 + template-haskell 498772 + text 498773 + utility-ht 498774 + ]; 498775 + executableHaskellDepends = [ 498776 + base 498777 + deepseq 498778 + gitrev 498779 + open-browser 498780 + optparse-applicative 498781 + pandoc 498782 + pandoc-types 498783 + template-haskell 498784 + temporary 498785 + text 498786 + ]; 498787 + testHaskellDepends = [ 498788 + base 498789 + containers 498790 + data-default 498791 + directory 498792 + filepath 498793 + hspec 498794 + microlens 498795 + mtl 498796 + pandoc 498797 + pandoc-types 498798 + text 498799 + ]; 498800 + testToolDepends = [ pandoc-cli ]; 498801 + benchmarkHaskellDepends = [ 498802 + base 498803 + criterion 498804 + pandoc 498805 + pandoc-types 498806 + text 498807 + ]; 498808 + doHaddock = false; 498809 + description = "Pandoc filter for cross-references"; 498810 + license = lib.licenses.gpl2Only; 498811 + hydraPlatforms = lib.platforms.none; 498812 + mainProgram = "pandoc-crossref"; 498370 498813 } 498371 498814 ) { }; 498372 498815 ··· 499017 499460 } 499018 499461 ) { }; 499019 499462 499463 + "pandoc-lua-engine_0_4_3" = callPackage ( 499464 + { 499465 + mkDerivation, 499466 + aeson, 499467 + base, 499468 + bytestring, 499469 + citeproc, 499470 + containers, 499471 + crypton, 499472 + data-default, 499473 + directory, 499474 + doclayout, 499475 + doctemplates, 499476 + exceptions, 499477 + filepath, 499478 + hslua, 499479 + hslua-module-doclayout, 499480 + hslua-module-path, 499481 + hslua-module-system, 499482 + hslua-module-text, 499483 + hslua-module-version, 499484 + hslua-module-zip, 499485 + hslua-repl, 499486 + lpeg, 499487 + mtl, 499488 + pandoc, 499489 + pandoc-lua-marshal, 499490 + pandoc-types, 499491 + parsec, 499492 + tasty, 499493 + tasty-golden, 499494 + tasty-hunit, 499495 + tasty-lua, 499496 + text, 499497 + }: 499498 + mkDerivation { 499499 + pname = "pandoc-lua-engine"; 499500 + version = "0.4.3"; 499501 + sha256 = "1s5g1mvl13pa411kyd2jp5jz0lw8alxqpv984nnfnq17d2nj4mkw"; 499502 + libraryHaskellDepends = [ 499503 + aeson 499504 + base 499505 + bytestring 499506 + citeproc 499507 + containers 499508 + crypton 499509 + data-default 499510 + doclayout 499511 + doctemplates 499512 + exceptions 499513 + hslua 499514 + hslua-module-doclayout 499515 + hslua-module-path 499516 + hslua-module-system 499517 + hslua-module-text 499518 + hslua-module-version 499519 + hslua-module-zip 499520 + hslua-repl 499521 + lpeg 499522 + mtl 499523 + pandoc 499524 + pandoc-lua-marshal 499525 + pandoc-types 499526 + parsec 499527 + text 499528 + ]; 499529 + testHaskellDepends = [ 499530 + base 499531 + bytestring 499532 + data-default 499533 + directory 499534 + exceptions 499535 + filepath 499536 + hslua 499537 + pandoc 499538 + pandoc-types 499539 + tasty 499540 + tasty-golden 499541 + tasty-hunit 499542 + tasty-lua 499543 + text 499544 + ]; 499545 + description = "Lua engine to power custom pandoc conversions"; 499546 + license = lib.licenses.gpl2Plus; 499547 + hydraPlatforms = lib.platforms.none; 499548 + } 499549 + ) { }; 499550 + 499020 499551 "pandoc-lua-marshal" = callPackage ( 499021 499552 { 499022 499553 mkDerivation, ··· 499480 500011 }: 499481 500012 mkDerivation { 499482 500013 pname = "pandoc-server"; 499483 - version = "0.1.0.10"; 499484 - sha256 = "1rsrdx76llipa9xb624d953rinyhm7nfs53ps4qd343yqw8npjjl"; 500014 + version = "0.1.0.11"; 500015 + sha256 = "1686kl05pr6bqrmg5dda1d7m9dmk0c087fpg54r9v5iy1x732gws"; 499485 500016 libraryHaskellDepends = [ 499486 500017 aeson 499487 500018 base ··· 501611 502142 pname = "parallel-io"; 501612 502143 version = "0.3.5"; 501613 502144 sha256 = "0b67rjz80n58grz7hcb1lvk15lmww41967kv7f85vlpacfykng49"; 502145 + revision = "1"; 502146 + editedCabalFile = "0vl317jp2agpd1qjvmmmcqkbp2mrlbwcn5y4c2fzyxwwrr11azp6"; 501614 502147 isLibrary = true; 501615 502148 isExecutable = true; 501616 502149 libraryHaskellDepends = [ ··· 502187 502720 pname = "park-bench"; 502188 502721 version = "0.1.1.0"; 502189 502722 sha256 = "15vbhljsnqjm3hjqxlzifvkbcysmwz3fqw2hmdlwkzsyncz4p6j9"; 502190 - revision = "2"; 502191 - editedCabalFile = "0yqb96vd1dgid4fprny49zmn8p26k9m15n1qgp2nwm2bnv6a7mpx"; 502723 + revision = "3"; 502724 + editedCabalFile = "028bmgxn98jps3pmc18qhlsm1f4rsy27a8vx59kywpb7lj8x7faz"; 502192 502725 libraryHaskellDepends = [ 502193 502726 array 502194 502727 base ··· 503937 504470 } 503938 504471 ) { }; 503939 504472 503940 - "partialord_0_0_3" = callPackage ( 504473 + "partialord_0_1_1" = callPackage ( 503941 504474 { 503942 504475 mkDerivation, 503943 504476 base, ··· 503946 504479 }: 503947 504480 mkDerivation { 503948 504481 pname = "partialord"; 503949 - version = "0.0.3"; 503950 - sha256 = "08qgjqvkxj7xqm3v8n7g7j5cvd9489jhf7m2rrzp92xyqhshilli"; 504482 + version = "0.1.1"; 504483 + sha256 = "0ibbjsm2rwm3s9vmg87lp1rv9dg50nndrklg379p226fz0lr630d"; 503951 504484 libraryHaskellDepends = [ 503952 504485 base 503953 504486 containers ··· 505621 506154 }: 505622 506155 mkDerivation { 505623 506156 pname = "patrol"; 505624 - version = "1.0.0.9"; 505625 - sha256 = "177ir2a0c3cg0xawzi8frkdfpzfv7m8mi9l8rbn2pj6rv8m6s0mb"; 506157 + version = "1.0.0.11"; 506158 + sha256 = "0adci15r7mm0ddbg4zb10kngyl0c7ipaws7drd7idmzrb0gb82kd"; 505626 506159 libraryHaskellDepends = [ 505627 506160 aeson 505628 506161 base ··· 506589 507122 base, 506590 507123 base-compat, 506591 507124 bytestring, 506592 - doctest, 506593 - Glob, 506594 - pcre-light, 506595 - semigroups, 506596 - string-conversions, 506597 - template-haskell, 506598 - }: 506599 - mkDerivation { 506600 - pname = "pcre-heavy"; 506601 - version = "1.0.0.3"; 506602 - sha256 = "03wqr7q242j23g910l0qgagqyy8fi3b5gv7xsaym7m41zki1bw9y"; 506603 - revision = "1"; 506604 - editedCabalFile = "0wa517agsib2q658bfsb9fdm12yz3pqzj204v9jf9rz4fm4y8q81"; 506605 - libraryHaskellDepends = [ 506606 - base 506607 - base-compat 506608 - bytestring 506609 - pcre-light 506610 - semigroups 506611 - string-conversions 506612 - template-haskell 506613 - ]; 506614 - testHaskellDepends = [ 506615 - base 506616 - doctest 506617 - Glob 506618 - ]; 506619 - description = "A regexp (regex) library on top of pcre-light you can actually use"; 506620 - license = lib.licenses.publicDomain; 506621 - maintainers = [ lib.maintainers.mpscholten ]; 506622 - } 506623 - ) { }; 506624 - 506625 - "pcre-heavy_1_0_0_4" = callPackage ( 506626 - { 506627 - mkDerivation, 506628 - base, 506629 - base-compat, 506630 - bytestring, 506631 507125 pcre-light, 506632 507126 string-conversions, 506633 507127 template-haskell, ··· 506646 507140 ]; 506647 507141 description = "A regexp (regex) library on top of pcre-light you can actually use"; 506648 507142 license = lib.licenses.publicDomain; 506649 - hydraPlatforms = lib.platforms.none; 506650 507143 maintainers = [ lib.maintainers.mpscholten ]; 506651 507144 } 506652 507145 ) { }; ··· 509715 510208 } 509716 510209 ) { }; 509717 510210 509718 - "persistent_2_15_1_0" = callPackage ( 510211 + "persistent_2_17_0_0" = callPackage ( 509719 510212 { 509720 510213 mkDerivation, 509721 510214 aeson, ··· 509734 510227 hspec, 509735 510228 http-api-data, 509736 510229 lift-type, 510230 + megaparsec, 509737 510231 monad-logger, 509738 510232 mtl, 509739 510233 path-pieces, 509740 510234 QuickCheck, 509741 510235 quickcheck-instances, 510236 + replace-megaparsec, 509742 510237 resource-pool, 509743 510238 resourcet, 509744 510239 scientific, 510240 + semigroupoids, 509745 510241 shakespeare, 509746 510242 silently, 509747 510243 template-haskell, ··· 509757 510253 }: 509758 510254 mkDerivation { 509759 510255 pname = "persistent"; 509760 - version = "2.15.1.0"; 509761 - sha256 = "142c91xplnm9fbzm7gkd1dl3p5da74nxr4bv5a921hhpsrwm0p9g"; 510256 + version = "2.17.0.0"; 510257 + sha256 = "0y0rmg4xfqmkndckz2a8ndl8djmdc9zab36qb56g9as1zpm91wfn"; 509762 510258 libraryHaskellDepends = [ 509763 510259 aeson 509764 510260 attoparsec ··· 509773 510269 fast-logger 509774 510270 http-api-data 509775 510271 lift-type 510272 + megaparsec 509776 510273 monad-logger 509777 510274 mtl 509778 510275 path-pieces 510276 + replace-megaparsec 509779 510277 resource-pool 509780 510278 resourcet 509781 510279 scientific 510280 + semigroupoids 509782 510281 silently 509783 510282 template-haskell 509784 510283 text ··· 509804 510303 fast-logger 509805 510304 hspec 509806 510305 http-api-data 510306 + megaparsec 509807 510307 monad-logger 509808 510308 mtl 509809 510309 path-pieces ··· 510080 510580 testToolDepends = [ hspec-discover ]; 510081 510581 description = "Documentation DSL for persistent entities"; 510082 510582 license = lib.licenses.asl20; 510583 + } 510584 + ) { }; 510585 + 510586 + "persistent-documentation_0_1_0_6" = callPackage ( 510587 + { 510588 + mkDerivation, 510589 + base, 510590 + containers, 510591 + hspec, 510592 + hspec-discover, 510593 + mtl, 510594 + persistent, 510595 + persistent-template, 510596 + template-haskell, 510597 + text, 510598 + }: 510599 + mkDerivation { 510600 + pname = "persistent-documentation"; 510601 + version = "0.1.0.6"; 510602 + sha256 = "1v07vhjmim4bycl7ygg2my3qwqqz36ajm8x8gwqh0g0i83sjh5ks"; 510603 + libraryHaskellDepends = [ 510604 + base 510605 + containers 510606 + mtl 510607 + persistent 510608 + template-haskell 510609 + text 510610 + ]; 510611 + testHaskellDepends = [ 510612 + base 510613 + containers 510614 + hspec 510615 + hspec-discover 510616 + persistent 510617 + persistent-template 510618 + text 510619 + ]; 510620 + testToolDepends = [ hspec-discover ]; 510621 + description = "Documentation DSL for persistent entities"; 510622 + license = lib.licenses.asl20; 510623 + hydraPlatforms = lib.platforms.none; 510083 510624 } 510084 510625 ) { }; 510085 510626 ··· 511635 512176 } 511636 512177 ) { inherit (pkgs) sqlite; }; 511637 512178 512179 + "persistent-sqlite_2_13_3_1" = callPackage ( 512180 + { 512181 + mkDerivation, 512182 + aeson, 512183 + base, 512184 + bytestring, 512185 + conduit, 512186 + containers, 512187 + exceptions, 512188 + fast-logger, 512189 + hspec, 512190 + HUnit, 512191 + microlens, 512192 + microlens-th, 512193 + monad-logger, 512194 + mtl, 512195 + persistent, 512196 + persistent-test, 512197 + QuickCheck, 512198 + resource-pool, 512199 + resourcet, 512200 + sqlite, 512201 + system-fileio, 512202 + system-filepath, 512203 + temporary, 512204 + text, 512205 + time, 512206 + transformers, 512207 + unliftio-core, 512208 + unordered-containers, 512209 + }: 512210 + mkDerivation { 512211 + pname = "persistent-sqlite"; 512212 + version = "2.13.3.1"; 512213 + sha256 = "14yn3a5nqjq1b7ss6xl2455nwq92kbwc94q675jiyi4gzh85xfd0"; 512214 + configureFlags = [ "-fsystemlib" ]; 512215 + isLibrary = true; 512216 + isExecutable = true; 512217 + libraryHaskellDepends = [ 512218 + aeson 512219 + base 512220 + bytestring 512221 + conduit 512222 + containers 512223 + microlens-th 512224 + monad-logger 512225 + mtl 512226 + persistent 512227 + resource-pool 512228 + resourcet 512229 + text 512230 + time 512231 + transformers 512232 + unliftio-core 512233 + unordered-containers 512234 + ]; 512235 + librarySystemDepends = [ sqlite ]; 512236 + testHaskellDepends = [ 512237 + base 512238 + bytestring 512239 + conduit 512240 + containers 512241 + exceptions 512242 + fast-logger 512243 + hspec 512244 + HUnit 512245 + microlens 512246 + monad-logger 512247 + mtl 512248 + persistent 512249 + persistent-test 512250 + QuickCheck 512251 + resourcet 512252 + system-fileio 512253 + system-filepath 512254 + temporary 512255 + text 512256 + time 512257 + transformers 512258 + unliftio-core 512259 + ]; 512260 + description = "Backend for the persistent library using sqlite3"; 512261 + license = lib.licenses.mit; 512262 + hydraPlatforms = lib.platforms.none; 512263 + maintainers = [ lib.maintainers.psibi ]; 512264 + } 512265 + ) { inherit (pkgs) sqlite; }; 512266 + 511638 512267 "persistent-stm" = callPackage ( 511639 512268 { 511640 512269 mkDerivation, ··· 511736 512365 } 511737 512366 ) { }; 511738 512367 511739 - "persistent-test" = callPackage ( 512368 + "persistent-test_2_13_1_3" = callPackage ( 511740 512369 { 511741 512370 mkDerivation, 511742 512371 aeson, ··· 511802 512431 ]; 511803 512432 description = "Tests for Persistent"; 511804 512433 license = lib.licenses.mit; 512434 + hydraPlatforms = lib.platforms.none; 512435 + } 512436 + ) { }; 512437 + 512438 + "persistent-test" = callPackage ( 512439 + { 512440 + mkDerivation, 512441 + aeson, 512442 + base, 512443 + blaze-html, 512444 + bytestring, 512445 + conduit, 512446 + containers, 512447 + exceptions, 512448 + hspec, 512449 + hspec-expectations, 512450 + http-api-data, 512451 + HUnit, 512452 + monad-control, 512453 + monad-logger, 512454 + mtl, 512455 + path-pieces, 512456 + persistent, 512457 + QuickCheck, 512458 + quickcheck-instances, 512459 + random, 512460 + resourcet, 512461 + text, 512462 + time, 512463 + transformers, 512464 + transformers-base, 512465 + unliftio, 512466 + unliftio-core, 512467 + unordered-containers, 512468 + }: 512469 + mkDerivation { 512470 + pname = "persistent-test"; 512471 + version = "2.13.1.4"; 512472 + sha256 = "1k2wq6ag4jvqr1krdjfx84mmx0mg09hy38w569zxwdrd03ffcjpy"; 512473 + libraryHaskellDepends = [ 512474 + aeson 512475 + base 512476 + blaze-html 512477 + bytestring 512478 + conduit 512479 + containers 512480 + exceptions 512481 + hspec 512482 + hspec-expectations 512483 + http-api-data 512484 + HUnit 512485 + monad-control 512486 + monad-logger 512487 + mtl 512488 + path-pieces 512489 + persistent 512490 + QuickCheck 512491 + quickcheck-instances 512492 + random 512493 + resourcet 512494 + text 512495 + time 512496 + transformers 512497 + transformers-base 512498 + unliftio 512499 + unliftio-core 512500 + unordered-containers 512501 + ]; 512502 + description = "Tests for Persistent"; 512503 + license = lib.licenses.mit; 511805 512504 } 511806 512505 ) { }; 511807 512506 ··· 512351 513050 aeson, 512352 513051 base, 512353 513052 bytestring, 512354 - colourista, 512355 513053 containers, 512356 513054 envparse, 512357 513055 hedgehog, ··· 512375 513073 }: 512376 513074 mkDerivation { 512377 513075 pname = "pg-entity"; 512378 - version = "0.0.5.1"; 512379 - sha256 = "1cb3x7vl2g2wmhrvfm6ajyrhb6whfzndq5zqd9acay9i3l26m014"; 513076 + version = "0.0.6.0"; 513077 + sha256 = "0710ipshbpmkci944ms2gvd8mk6f9ikz5nmp1l6g19w6wq1ab72f"; 512380 513078 isLibrary = true; 512381 513079 isExecutable = true; 512382 513080 libraryHaskellDepends = [ 512383 513081 base 512384 - bytestring 512385 - colourista 512386 513082 parsec 512387 513083 pg-transact 512388 513084 postgresql-simple ··· 513280 513976 ]; 513281 513977 description = "FAT filesystem sort utility"; 513282 513978 license = lib.licenses.mit; 513979 + } 513980 + ) { }; 513981 + 513982 + "phino" = callPackage ( 513983 + { 513984 + mkDerivation, 513985 + aeson, 513986 + base, 513987 + binary-ieee754, 513988 + bytestring, 513989 + containers, 513990 + directory, 513991 + filepath, 513992 + hspec, 513993 + hspec-core, 513994 + hspec-discover, 513995 + megaparsec, 513996 + optparse-applicative, 513997 + prettyprinter, 513998 + scientific, 513999 + silently, 514000 + text, 514001 + utf8-string, 514002 + yaml, 514003 + }: 514004 + mkDerivation { 514005 + pname = "phino"; 514006 + version = "0.0.0.1"; 514007 + sha256 = "1sl4iqrcmmjn2gc294rz4yfj5k0hd7ngl9ax57k22h2qac90rrkc"; 514008 + isLibrary = true; 514009 + isExecutable = true; 514010 + libraryHaskellDepends = [ 514011 + aeson 514012 + base 514013 + binary-ieee754 514014 + bytestring 514015 + containers 514016 + directory 514017 + filepath 514018 + megaparsec 514019 + optparse-applicative 514020 + prettyprinter 514021 + scientific 514022 + text 514023 + utf8-string 514024 + yaml 514025 + ]; 514026 + executableHaskellDepends = [ base ]; 514027 + testHaskellDepends = [ 514028 + aeson 514029 + base 514030 + containers 514031 + directory 514032 + filepath 514033 + hspec 514034 + hspec-core 514035 + megaparsec 514036 + optparse-applicative 514037 + prettyprinter 514038 + silently 514039 + text 514040 + yaml 514041 + ]; 514042 + testToolDepends = [ hspec-discover ]; 514043 + description = "Command-Line Manipulator of 𝜑-Calculus Expressions"; 514044 + license = lib.licenses.mit; 514045 + hydraPlatforms = lib.platforms.none; 514046 + mainProgram = "phino"; 514047 + broken = true; 513283 514048 } 513284 514049 ) { }; 513285 514050 ··· 525730 526495 { 525731 526496 mkDerivation, 525732 526497 base, 525733 - data-default, 526498 + data-default-class, 525734 526499 pontarius-xmpp, 525735 526500 text, 525736 526501 time, ··· 525738 526503 }: 525739 526504 mkDerivation { 525740 526505 pname = "pontarius-xmpp-extras"; 525741 - version = "0.1.0.11"; 525742 - sha256 = "1dmayp87yjfxjvi1a2saiwinbks8vj14pydlsm2in552rs5wk6i1"; 526506 + version = "0.1.0.12"; 526507 + sha256 = "1a2a35zvs803qpxnvz4z2j667h9h8rhrlcrgm36vk5jb39m5n6w1"; 525743 526508 libraryHaskellDepends = [ 525744 526509 base 525745 - data-default 526510 + data-default-class 525746 526511 pontarius-xmpp 525747 526512 text 525748 526513 time ··· 525750 526515 ]; 525751 526516 description = "XEPs implementation on top of pontarius-xmpp"; 525752 526517 license = "unknown"; 526518 + hydraPlatforms = lib.platforms.none; 526519 + broken = true; 525753 526520 } 525754 526521 ) { }; 525755 526522 ··· 525898 526665 pname = "pooled-io"; 525899 526666 version = "0.0.2.3"; 525900 526667 sha256 = "0ysgfwlppilj21sqhbcq7xbyc5hnc26mzb58y7mm9rd5piw3v7mc"; 525901 - revision = "1"; 525902 - editedCabalFile = "1c2ggwlgr22zwc15x175hl08ql3fls278nwzdb3igqggdv5kx6cz"; 526668 + revision = "2"; 526669 + editedCabalFile = "17p76x90fz5bvn1y4mn7q00r2p6ssahmb84kycfkq0mhcjsdgch6"; 525903 526670 isLibrary = true; 525904 526671 isExecutable = true; 525905 526672 libraryHaskellDepends = [ ··· 527222 527989 } 527223 527990 ) { }; 527224 527991 527992 + "positive-integer" = callPackage ( 527993 + { mkDerivation, base }: 527994 + mkDerivation { 527995 + pname = "positive-integer"; 527996 + version = "0.1.0.0"; 527997 + sha256 = "17vqxdmqbsp6366dipq5xdfb3aq5mrshlvkw8zv30byl7p6iaz51"; 527998 + revision = "1"; 527999 + editedCabalFile = "101bbp5zv7w5ldr7j2nxpmm21mpnpzz4knrcv5inqfs0k69w1z7c"; 528000 + libraryHaskellDepends = [ base ]; 528001 + description = "Type of positive integers"; 528002 + license = lib.licenses.mit; 528003 + } 528004 + ) { }; 528005 + 527225 528006 "positron" = callPackage ( 527226 528007 { 527227 528008 mkDerivation, ··· 527305 528086 }: 527306 528087 mkDerivation { 527307 528088 pname = "posix-api"; 527308 - version = "0.7.2.0"; 527309 - sha256 = "019znszq7n2bvpkhxikcr8pdqi5s3m7hvvlrss0c0m7l0rl3m58l"; 528089 + version = "0.7.3.0"; 528090 + sha256 = "03qizcbaxj4mmxv6ap9l9rll732jd3z2kk61jx6dnic3kdp056h0"; 527310 528091 libraryHaskellDepends = [ 527311 528092 base 527312 528093 byte-order ··· 527796 528577 mkDerivation, 527797 528578 aeson, 527798 528579 alarmclock, 528580 + async, 527799 528581 auto-update, 527800 528582 base, 527801 528583 base64-bytestring, ··· 527810 528592 jose, 527811 528593 lens, 527812 528594 lens-aeson, 528595 + mtl, 527813 528596 network, 527814 528597 postgresql-libpq, 527815 - protolude, 527816 528598 retry, 527817 528599 stm, 527818 528600 stm-containers, ··· 527829 528611 }: 527830 528612 mkDerivation { 527831 528613 pname = "postgres-websockets"; 527832 - version = "0.11.2.3"; 527833 - sha256 = "1r4ws0bydwvp3cgy588yh0f9y9ifgrplcdk66mrzvpcp65ssd412"; 528614 + version = "0.11.2.4"; 528615 + sha256 = "1xckjdkzzbd4kqx6ciyagz1zy6i09zvpg1dkmn4ymr8xvm8rk2d7"; 527834 528616 isLibrary = true; 527835 528617 isExecutable = true; 527836 528618 libraryHaskellDepends = [ 527837 528619 aeson 527838 528620 alarmclock 528621 + async 527839 528622 auto-update 527840 528623 base 527841 528624 base64-bytestring ··· 527848 528631 http-types 527849 528632 jose 527850 528633 lens 528634 + mtl 527851 528635 postgresql-libpq 527852 - protolude 527853 528636 retry 527854 528637 stm 527855 528638 stm-containers ··· 527864 528647 warp-tls 527865 528648 websockets 527866 528649 ]; 527867 - executableHaskellDepends = [ 527868 - base 527869 - protolude 527870 - ]; 528650 + executableHaskellDepends = [ base ]; 527871 528651 testHaskellDepends = [ 527872 528652 aeson 527873 528653 base ··· 527879 528659 lens 527880 528660 lens-aeson 527881 528661 network 527882 - protolude 527883 528662 stm 527884 528663 time 527885 528664 unordered-containers ··· 528432 529211 } 528433 529212 ) { }; 528434 529213 529214 + "postgresql-migration-persistent" = callPackage ( 529215 + { 529216 + mkDerivation, 529217 + base, 529218 + mtl, 529219 + persistent, 529220 + persistent-postgresql, 529221 + postgresql-migration, 529222 + postgresql-simple, 529223 + resource-pool, 529224 + text, 529225 + }: 529226 + mkDerivation { 529227 + pname = "postgresql-migration-persistent"; 529228 + version = "1.1.0"; 529229 + sha256 = "0n7i0hgk9wrjskbxh7b811j3iqm12bj0w911544n8628rhqr8zrm"; 529230 + libraryHaskellDepends = [ 529231 + base 529232 + mtl 529233 + persistent 529234 + persistent-postgresql 529235 + postgresql-migration 529236 + postgresql-simple 529237 + resource-pool 529238 + text 529239 + ]; 529240 + description = "A PostgreSQL persistent schema migration utility"; 529241 + license = lib.licenses.mit; 529242 + } 529243 + ) { }; 529244 + 528435 529245 "postgresql-named" = callPackage ( 528436 529246 { 528437 529247 mkDerivation, ··· 531919 532729 }: 531920 532730 mkDerivation { 531921 532731 pname = "pragmatic-show"; 531922 - version = "0.1.2.1"; 531923 - sha256 = "1i3yj11vdnca6klnn698fdwpjw356r87zbp7jlc4f4v76qhllfrm"; 532732 + version = "0.2.0.0"; 532733 + sha256 = "0aa9rdbnv93i7ibrp6v5ggyk4c3qh57k580gfpwlxz91nwnp122f"; 531924 532734 libraryHaskellDepends = [ 531925 532735 base 531926 532736 containers ··· 531973 532783 } 531974 532784 ) { }; 531975 532785 532786 + "prairie_0_1_0_0" = callPackage ( 532787 + { 532788 + mkDerivation, 532789 + aeson, 532790 + base, 532791 + constraints, 532792 + containers, 532793 + foldable1-classes-compat, 532794 + hspec, 532795 + lens, 532796 + mtl, 532797 + semigroupoids, 532798 + template-haskell, 532799 + text, 532800 + }: 532801 + mkDerivation { 532802 + pname = "prairie"; 532803 + version = "0.1.0.0"; 532804 + sha256 = "06qmm3f0zfa31909vz09fanra9nhmgr4f686raif272hpxiayznp"; 532805 + libraryHaskellDepends = [ 532806 + aeson 532807 + base 532808 + constraints 532809 + containers 532810 + foldable1-classes-compat 532811 + mtl 532812 + semigroupoids 532813 + template-haskell 532814 + text 532815 + ]; 532816 + testHaskellDepends = [ 532817 + aeson 532818 + base 532819 + hspec 532820 + lens 532821 + semigroupoids 532822 + ]; 532823 + description = "A first class record field library"; 532824 + license = lib.licenses.bsd3; 532825 + hydraPlatforms = lib.platforms.none; 532826 + } 532827 + ) { }; 532828 + 531976 532829 "preamble" = callPackage ( 531977 532830 { 531978 532831 mkDerivation, ··· 536273 537126 pname = "probability"; 536274 537127 version = "0.2.8"; 536275 537128 sha256 = "06vaq2wsy63vnsprpz0921v5mdqnhp58h1ly721lwrxyd8lg57hg"; 536276 - revision = "2"; 536277 - editedCabalFile = "0986cz4yd1c8rwf67klswg4v3cbn67pvckw1cd7vk7qzk9ayndk2"; 537129 + revision = "3"; 537130 + editedCabalFile = "02703w7680va0gicxjx4s644i0y3jm6f20wqkk90hhk3l33yp4y8"; 536278 537131 libraryHaskellDepends = [ 536279 537132 base 536280 537133 containers ··· 536434 537287 } 536435 537288 ) { }; 536436 537289 536437 - "process_1_6_26_0" = callPackage ( 537290 + "process_1_6_26_1" = callPackage ( 536438 537291 { 536439 537292 mkDerivation, 536440 537293 base, ··· 536445 537298 }: 536446 537299 mkDerivation { 536447 537300 pname = "process"; 536448 - version = "1.6.26.0"; 536449 - sha256 = "18gxjw88qs4vgxyiq7srxmj0jy6kn2c5dwpq8a1wdgbbpwd920ys"; 537301 + version = "1.6.26.1"; 537302 + sha256 = "1w58md2dv4ijprjgd3v3imxn7f052l1g6bxlhkx8cyb0fyxd4cdl"; 536450 537303 libraryHaskellDepends = [ 536451 537304 base 536452 537305 deepseq ··· 538977 539830 }: 538978 539831 mkDerivation { 538979 539832 pname = "prometheus-proc"; 538980 - version = "0.1.6.0"; 538981 - sha256 = "0rpbpyl1gy08cbcb3d1sdkpvva7jmr8pwbcp0xmdm9k3xh1pj2ng"; 539833 + version = "0.1.6.1"; 539834 + sha256 = "1v1y3mp2j0j11dbf2sp4j2dpwgp0fhk84jjn51ihjf67x2vlab9b"; 538982 539835 libraryHaskellDepends = [ 538983 539836 base 538984 539837 directory ··· 539116 539969 }: 539117 539970 mkDerivation { 539118 539971 pname = "prompt-hs"; 539119 - version = "1.0.0.0"; 539120 - sha256 = "1xl7da4jzbnyiw4qjsbzhmc0wxa0y1wa204knlhi3g2dr3dzhj7g"; 539972 + version = "1.0.1.0"; 539973 + sha256 = "1yarj087xyardxpf7ibv2bpfkaiyikzpzcpa1sf76lfd6v5rwr7s"; 539121 539974 libraryHaskellDepends = [ 539122 539975 base 539123 539976 microlens ··· 539953 540806 }: 539954 540807 mkDerivation { 539955 540808 pname = "proto-lens"; 539956 - version = "0.7.1.5"; 539957 - sha256 = "042wn6dw4jg0j9gfp4pgzm86j3hq0vkv02rlnp77v13b87q75lfs"; 540809 + version = "0.7.1.6"; 540810 + sha256 = "13jwrqynj0yq5j5gb4z84b7j5jr0d862cqyyqsdix673wvhsw7dx"; 539958 540811 enableSeparateDataOutput = true; 539959 540812 libraryHaskellDepends = [ 539960 540813 base ··· 541112 541965 }: 541113 541966 mkDerivation { 541114 541967 pname = "protolude"; 541115 - version = "0.3.4"; 541116 - sha256 = "0lkh2m58fphnqdfk33fd4f24c6s3bnjq1qvhbmfy83a72a19jf7q"; 541968 + version = "0.3.5"; 541969 + sha256 = "11q4qivjsqxfmb93nzxabipsxmmcpdajrkb8n5hx53awkx15j2n8"; 541117 541970 libraryHaskellDepends = [ 541118 541971 array 541119 541972 async ··· 546796 547649 pname = "quaalude"; 546797 547650 version = "0.0.0.1"; 546798 547651 sha256 = "0wwsrpm2s7gs2c4fwh4qvhnjywxfyf94dw715bz34q7bzyyk3lc6"; 546799 - revision = "2"; 546800 - editedCabalFile = "1danjjnb38pnz5x4xdqas5fr9xb703i6a4jx49kq5q311v8dccva"; 547652 + revision = "3"; 547653 + editedCabalFile = "0pqi04fvyclnx4lfq8ifax6l4kayay6xbmwp0k0h7yjz14k252gn"; 546801 547654 libraryHaskellDepends = [ base ]; 546802 547655 description = "Extremely minimal prelude"; 546803 547656 license = lib.licenses.asl20; ··· 547694 548547 pname = "queue-sheet"; 547695 548548 version = "0.8.0.1"; 547696 548549 sha256 = "1s7j51542j4in10ihb47jflwkf6m4gsi1z1aq9mzs2ksj65n1yc9"; 548550 + revision = "1"; 548551 + editedCabalFile = "0bq0abf3qzlpcy6kxrhbzm9zg9fa2ps5fj27i9c67nyc5y520ana"; 547697 548552 isLibrary = true; 547698 548553 isExecutable = true; 547699 548554 libraryHaskellDepends = [ ··· 547863 548718 }: 547864 548719 mkDerivation { 547865 548720 pname = "quic"; 547866 - version = "0.2.12"; 547867 - sha256 = "1x5326bmf8pz74dxjdlgf5a6mjf2v2358lmr4x94smbr5gscmlxx"; 548721 + version = "0.2.14"; 548722 + sha256 = "1f486d4mqc18pfx5krwxv9mh1zkmyjbjddkx4yixjf2yfhq6a855"; 547868 548723 isLibrary = true; 547869 548724 isExecutable = true; 547870 548725 libraryHaskellDepends = [ ··· 547928 548783 ]; 547929 548784 description = "Generator random test data for QuickCheck"; 547930 548785 license = lib.licenses.bsd3; 548786 + } 548787 + ) { }; 548788 + 548789 + "quick-process" = callPackage ( 548790 + { 548791 + mkDerivation, 548792 + attoparsec, 548793 + base, 548794 + bytestring, 548795 + casing, 548796 + conduit, 548797 + conduit-combinators, 548798 + conduit-extra, 548799 + containers, 548800 + deepseq, 548801 + directory, 548802 + either, 548803 + exceptions, 548804 + filepath, 548805 + generic-lens, 548806 + generic-random, 548807 + hashable, 548808 + HList, 548809 + lens, 548810 + mmorph, 548811 + monad-control, 548812 + mtl, 548813 + pretty, 548814 + process, 548815 + QuickCheck, 548816 + quickcheck-instances, 548817 + regex-compat, 548818 + regex-posix, 548819 + regex-tdfa, 548820 + relude, 548821 + resourcet, 548822 + safe-exceptions, 548823 + sbv, 548824 + semigroups, 548825 + streaming-commons, 548826 + tasty, 548827 + tasty-discover, 548828 + tasty-hunit, 548829 + tasty-quickcheck, 548830 + template-haskell, 548831 + temporary, 548832 + text, 548833 + th-lift-instances, 548834 + sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 548835 + sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 548836 + time, 548837 + trace-embrace, 548838 + transformers, 548839 + transformers-base, 548840 + transformers-either, 548841 + unix, 548842 + unix-compat, 548843 + unliftio, 548844 + unliftio-core, 548845 + }: 548846 + mkDerivation { 548847 + pname = "quick-process"; 548848 + version = "0.0.1"; 548849 + sha256 = "1dgv63w8qlb35xjsyn0716xsmb9jimdwly0c7704pmlfnw5sp38s"; 548850 + libraryHaskellDepends = [ 548851 + attoparsec 548852 + base 548853 + bytestring 548854 + casing 548855 + conduit 548856 + conduit-combinators 548857 + conduit-extra 548858 + containers 548859 + deepseq 548860 + directory 548861 + either 548862 + exceptions 548863 + filepath 548864 + generic-lens 548865 + generic-random 548866 + hashable 548867 + HList 548868 + lens 548869 + mmorph 548870 + monad-control 548871 + mtl 548872 + pretty 548873 + process 548874 + QuickCheck 548875 + regex-compat 548876 + regex-posix 548877 + regex-tdfa 548878 + relude 548879 + resourcet 548880 + safe-exceptions 548881 + sbv 548882 + semigroups 548883 + streaming-commons 548884 + template-haskell 548885 + temporary 548886 + text 548887 + sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 548888 + sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 548889 + time 548890 + trace-embrace 548891 + transformers 548892 + transformers-base 548893 + transformers-either 548894 + unix 548895 + unix-compat 548896 + unliftio-core 548897 + ]; 548898 + testHaskellDepends = [ 548899 + base 548900 + bytestring 548901 + directory 548902 + generic-lens 548903 + HList 548904 + lens 548905 + QuickCheck 548906 + quickcheck-instances 548907 + relude 548908 + tasty 548909 + tasty-discover 548910 + tasty-hunit 548911 + tasty-quickcheck 548912 + template-haskell 548913 + temporary 548914 + th-lift-instances 548915 + sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 548916 + unliftio 548917 + ]; 548918 + testToolDepends = [ tasty-discover ]; 548919 + doHaddock = false; 548920 + description = "Run external processes verified at compilation/installation"; 548921 + license = lib.licenses.bsd3; 548922 + hydraPlatforms = lib.platforms.none; 547931 548923 } 547932 548924 ) { }; 547933 548925 ··· 548508 549500 QuickCheck, 548509 549501 quickcheck-dynamic, 548510 549502 tasty, 549503 + tasty-golden, 548511 549504 tasty-hunit, 548512 549505 tasty-quickcheck, 548513 549506 temporary, 548514 549507 }: 548515 549508 mkDerivation { 548516 549509 pname = "quickcheck-lockstep"; 548517 - version = "0.6.0"; 548518 - sha256 = "1s1z146l00v5hlcmwq9w9dpvs0mblld8h15xicxb619fbl1hrg5x"; 548519 - revision = "1"; 548520 - editedCabalFile = "00mlph661br03khrpzl9f1wvwmr2mrv6y3hqp7i371rm1dl83xd5"; 549510 + version = "0.7.0"; 549511 + sha256 = "0dcy47ab2813saml3jdiar9xlx8ml8c55awcg92i6amazhgwpyw2"; 548521 549512 libraryHaskellDepends = [ 548522 549513 base 548523 549514 constraints ··· 548536 549527 QuickCheck 548537 549528 quickcheck-dynamic 548538 549529 tasty 549530 + tasty-golden 548539 549531 tasty-hunit 548540 549532 tasty-quickcheck 548541 549533 temporary ··· 551819 552811 }: 551820 552812 mkDerivation { 551821 552813 pname = "rampart"; 551822 - sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 551823 - sha256 = "0fdzika3dzxcw39v2lj1sz3nlahxi8swfn3sl1br178sp2bd075j"; 552814 + version = "2.0.0.11"; 552815 + sha256 = "04hj1sh0ad3fg10d7w9fz4xvic6kfxi6iacci63g4m2151w9l7gl"; 551824 552816 libraryHaskellDepends = [ base ]; 551825 552817 testHaskellDepends = [ 551826 552818 base ··· 553798 554790 }: 553799 554791 mkDerivation { 553800 554792 pname = "ratel"; 553801 - version = "2.0.0.13"; 553802 - sha256 = "0y6zr7i8xkv7qpnh3pcy9v3z9gav0km81gsd3zhbm3jzb8iqngkx"; 554793 + version = "2.0.0.15"; 554794 + sha256 = "1d074x3vdnkdrh2m7z0iswbiihgafbm8ik2nf56ipry27pvkjfq3"; 553803 554795 libraryHaskellDepends = [ 553804 554796 aeson 553805 554797 base ··· 553834 554826 }: 553835 554827 mkDerivation { 553836 554828 pname = "ratel-wai"; 553837 - version = "2.0.0.8"; 553838 - sha256 = "1hg7187y9r6zy557zy0nrc187529zk9lccqh0jgdfgq2y3siab7f"; 554829 + version = "2.0.0.10"; 554830 + sha256 = "06wdcy1zych0lwwddznnrgapmzmxmahy98yqcfikqrrf85nd73ng"; 553839 554831 libraryHaskellDepends = [ 553840 554832 base 553841 554833 bytestring ··· 554148 555140 }: 554149 555141 mkDerivation { 554150 555142 pname = "rattletrap"; 554151 - version = "14.1.1"; 554152 - sha256 = "1qibszp7fyrd452q1nms7hqx3k1kp2551qyxli37khrx3f33q7y5"; 555143 + version = "14.1.3"; 555144 + sha256 = "0x6n149s39kas2wivnpnpdbwa4v1r1wiyima1vca2bj8h33mbmp4"; 554153 555145 isLibrary = true; 554154 555146 isExecutable = true; 554155 555147 libraryHaskellDepends = [ ··· 554366 555358 mtl, 554367 555359 nothunks, 554368 555360 QuickCheck, 554369 - strict-mvar, 554370 - strict-stm, 554371 555361 tasty, 554372 555362 tasty-quickcheck, 554373 555363 }: 554374 555364 mkDerivation { 554375 555365 pname = "rawlock"; 554376 - version = "0.1.1.0"; 554377 - sha256 = "1hd62m0r6wiwpzm70pydrkvw2ln78436vak1jd0wiqvdh9z35szj"; 554378 - revision = "2"; 554379 - editedCabalFile = "0p2cf0v6xxq1gmi74iapy1wnhk8bsid1gj6s24mjdnv4np7cbvrm"; 555366 + version = "0.1.2.0"; 555367 + sha256 = "0prw2sbhf78grggw90bc5wclycd86m6v7wpw1s5hqx9vv0y4ssfi"; 554380 555368 libraryHaskellDepends = [ 554381 555369 base 554382 555370 io-classes 554383 555371 nothunks 554384 - strict-mvar 554385 - strict-stm 554386 555372 ]; 554387 555373 testHaskellDepends = [ 554388 555374 base ··· 554390 555376 io-sim 554391 555377 mtl 554392 555378 QuickCheck 554393 - strict-stm 554394 555379 tasty 554395 555380 tasty-quickcheck 554396 555381 ]; 554397 555382 description = "A writer-biased RAW lock"; 554398 555383 license = lib.licenses.asl20; 554399 555384 hydraPlatforms = lib.platforms.none; 555385 + broken = true; 554400 555386 } 554401 555387 ) { }; 554402 555388 ··· 554455 555441 }: 554456 555442 mkDerivation { 554457 555443 pname = "rawstring-qm"; 554458 - version = "0.2.3.0"; 554459 - sha256 = "1zk82akj2p4hl9hqwr30fixqfkjlpnb02qwhhflvcpv8gnxpg88i"; 555444 + version = "0.2.3.1"; 555445 + sha256 = "18kf70h0xwwd814952wkxx9xqcxcxvxga43rnhizd760kg5l808b"; 554460 555446 libraryHaskellDepends = [ 554461 555447 base 554462 555448 bytestring ··· 555044 556030 mkDerivation, 555045 556031 aeson, 555046 556032 aeson-pretty, 555047 - amazonka, 555048 556033 amazonka-core, 555049 556034 amazonka-rds, 555050 556035 amazonka-rds-data, ··· 555056 556041 generic-lens, 555057 556042 hedgehog, 555058 556043 hedgehog-extras, 555059 - http-client, 555060 - hw-polysemy, 555061 556044 hw-prelude, 555062 556045 microlens, 555063 556046 mtl, 555064 - optparse-applicative, 555065 - polysemy-log, 555066 - polysemy-plugin, 555067 - polysemy-time, 555068 - resourcet, 555069 - stm, 555070 556047 tasty, 555071 556048 tasty-discover, 555072 556049 tasty-hedgehog, 555073 - testcontainers, 555074 556050 text, 555075 556051 time, 555076 556052 transformers, ··· 555079 556055 }: 555080 556056 mkDerivation { 555081 556057 pname = "rds-data"; 555082 - version = "0.1.1.4"; 555083 - sha256 = "08q90rdpkdif5d8q22kwjk9yby2kmfsh2s80dgm55dascqsp95hr"; 556058 + version = "0.2.0.0"; 556059 + sha256 = "08lk0m1vgvbsmbvf5gv9nlab161a05w6n964w90g7wf1rqmj54d7"; 555084 556060 isLibrary = false; 555085 - isExecutable = true; 556061 + isExecutable = false; 555086 556062 libraryHaskellDepends = [ 555087 556063 aeson 555088 - amazonka 555089 556064 amazonka-core 555090 556065 amazonka-rds 555091 556066 amazonka-rds-data ··· 555095 556070 bytestring 555096 556071 contravariant 555097 556072 generic-lens 555098 - hw-polysemy 555099 556073 hw-prelude 555100 556074 microlens 555101 556075 mtl 555102 - polysemy-log 555103 - polysemy-plugin 555104 556076 text 555105 556077 time 555106 556078 transformers 555107 556079 ulid 555108 556080 uuid 555109 556081 ]; 555110 - executableHaskellDepends = [ 555111 - aeson 555112 - amazonka 555113 - amazonka-rds-data 555114 - base 555115 - bytestring 555116 - generic-lens 555117 - hedgehog 555118 - http-client 555119 - hw-polysemy 555120 - hw-prelude 555121 - microlens 555122 - optparse-applicative 555123 - polysemy-log 555124 - polysemy-plugin 555125 - polysemy-time 555126 - resourcet 555127 - stm 555128 - testcontainers 555129 - text 555130 - time 555131 - ulid 555132 - uuid 555133 - ]; 555134 556082 testHaskellDepends = [ 555135 556083 aeson 555136 556084 aeson-pretty 555137 - amazonka 555138 - amazonka-core 555139 - amazonka-rds 555140 556085 amazonka-rds-data 555141 - amazonka-secretsmanager 555142 556086 base 555143 - base64-bytestring 555144 556087 bytestring 555145 556088 generic-lens 555146 556089 hedgehog 555147 556090 hedgehog-extras 555148 - hw-polysemy 555149 556091 microlens 555150 - polysemy-log 555151 - polysemy-plugin 555152 556092 tasty 555153 - tasty-discover 555154 556093 tasty-hedgehog 555155 - testcontainers 555156 556094 text 555157 556095 time 555158 556096 ulid ··· 555163 556101 description = "Codecs for use with AWS rds-data"; 555164 556102 license = lib.licenses.bsd3; 555165 556103 hydraPlatforms = lib.platforms.none; 555166 - mainProgram = "rds-data"; 556104 + broken = true; 555167 556105 } 555168 556106 ) { }; 555169 556107 ··· 555606 556544 pname = "reactive-balsa"; 555607 556545 version = "0.4.0.1"; 555608 556546 sha256 = "1fhn7bxfrwaa5xb2ckfy2v4aw5cdzclayprjr40zg09s77qxclc1"; 555609 - revision = "2"; 555610 - editedCabalFile = "1l5mvm1b4y8r1r6lg7h2imrfzl4y1jcc23cjm5bpcrci46n0z006"; 556547 + revision = "3"; 556548 + editedCabalFile = "0bpy0z1gcj52jqirbhl909vnvjarj4x2lyvxx3c4f2v8h67a069d"; 555611 556549 libraryHaskellDepends = [ 555612 556550 alsa-core 555613 556551 alsa-seq ··· 556015 556953 pname = "reactive-jack"; 556016 556954 version = "0.4.1.2"; 556017 556955 sha256 = "1ckm95dr3y14bh73nxapm9rl39bz1lpxmclgcnd9n2mkn0b1q54w"; 556018 - revision = "1"; 556019 - editedCabalFile = "045aivc9nivky6pgfwdfyffglg6v3i1zv5alk9abj5jmrz6d3pyw"; 556956 + revision = "2"; 556957 + editedCabalFile = "08y0czlc8pkrzbc0x8qiw3q3412pbz2m00vc9gqs02mr24vrsbm9"; 556020 556958 libraryHaskellDepends = [ 556021 556959 base 556022 556960 containers ··· 556060 556998 pname = "reactive-midyim"; 556061 556999 version = "0.4.1.1"; 556062 557000 sha256 = "1hsa7d79mf7r36grl9i41x84kg3s9j5gj2fy40mb1mhvr221pi9v"; 556063 - revision = "2"; 556064 - editedCabalFile = "131mg8w6dcjzlmrhr8pmlbk2x4qfnza3chik4ylfzi90bqc147gx"; 557001 + revision = "3"; 557002 + editedCabalFile = "1i4syy9vs2frgl8b92r62yjzzbz8dxx91v5823kf9nrcm7prqffw"; 556065 557003 libraryHaskellDepends = [ 556066 557004 base 556067 557005 containers ··· 560221 561159 }: 560222 561160 mkDerivation { 560223 561161 pname = "reflex-dom-core"; 560224 - version = "0.8.1.3"; 560225 - sha256 = "0g2sg068mchc0di8agxdcj1wxrc1qfhcnz4qcl3p0sc6h298sf0n"; 561162 + version = "0.8.1.4"; 561163 + sha256 = "02wzvmhqplhxz4przxmbs4brckap3x8n0p46g62zwygkgbkhqclw"; 560226 561164 libraryHaskellDepends = [ 560227 561165 aeson 560228 561166 base ··· 562812 563750 }: 562813 563751 mkDerivation { 562814 563752 pname = "regex-tdfa"; 562815 - version = "1.3.2.3"; 562816 - sha256 = "0vyw69nyx1gdy4l54f5d0vnwrp2xzilbizyjd33h7r95b3wbqwc5"; 563753 + version = "1.3.2.4"; 563754 + sha256 = "15x7pisdvi0afg7ybxpga8aa4q38x9pz9ml7nhz1f7s4nw9w72q7"; 562817 563755 libraryHaskellDepends = [ 562818 563756 array 562819 563757 base ··· 563506 564444 }: 563507 564445 mkDerivation { 563508 564446 pname = "registry"; 563509 - version = "0.6.3.1"; 563510 - sha256 = "1a0vrl9ji8k7mzgh431wqv9az4kx1qx76abprm9ablrhxhmqryy5"; 564447 + version = "0.6.3.2"; 564448 + sha256 = "0av7jira1cvbc1cj570fp5d31vqxkb4w9s4hxlqj4hna5h9s5898"; 563511 564449 libraryHaskellDepends = [ 563512 564450 base 563513 564451 containers ··· 563583 564521 }: 563584 564522 mkDerivation { 563585 564523 pname = "registry-aeson"; 563586 - version = "0.3.1.1"; 563587 - sha256 = "06cfbrplf0qpvfmc0fr73vhf95zqf0lwhphfm10378qdlanp5z10"; 564524 + version = "0.3.1.2"; 564525 + sha256 = "1i529ckgbxsbaz8j1ycbc49d4n19xmvdv4ngq827r8nsxxqdwgyv"; 563588 564526 libraryHaskellDepends = [ 563589 564527 aeson 563590 564528 base ··· 563643 564581 }: 563644 564582 mkDerivation { 563645 564583 pname = "registry-hedgehog"; 563646 - version = "0.8.2.1"; 563647 - sha256 = "17y9sp91qdxzvwbvngk9lidljjg84b64sk3y82n05r76ld57wh5m"; 564584 + version = "0.8.2.2"; 564585 + sha256 = "12szgvyfhplcbq8d2fs2ssa3jlli692kgvy26zcxsfx8pyc9w9sd"; 563648 564586 libraryHaskellDepends = [ 563649 564587 base 563650 564588 containers ··· 563713 564651 }: 563714 564652 mkDerivation { 563715 564653 pname = "registry-hedgehog-aeson"; 563716 - version = "0.3.1.1"; 563717 - sha256 = "0g1pvj8990c6zfb54m70z3bylzsz9vbm0ggpxnccinlgjl42igdq"; 564654 + version = "0.3.1.2"; 564655 + sha256 = "1svrpfhv2igp2lwmgsz81xdkkk6hjbgsmhzalp6zwajgs1iad469"; 563718 564656 libraryHaskellDepends = [ 563719 564657 aeson 563720 564658 base ··· 563840 564778 }: 563841 564779 mkDerivation { 563842 564780 pname = "registry-options"; 563843 - version = "0.2.1.0"; 563844 - sha256 = "1fdmy2822n81ikbrnfwhm96jb8fwa1bckidjvkk2v26l4fh2m06d"; 564781 + version = "0.2.1.1"; 564782 + sha256 = "1zgdkw5byjzar5kjkhnzm2z271xfh2yqv6v3y5h6m2a9qsfmdq25"; 563845 564783 libraryHaskellDepends = [ 563846 564784 base 563847 564785 boxes ··· 566613 567551 }: 566614 567552 mkDerivation { 566615 567553 pname = "repline"; 566616 - version = "0.4.2.0"; 566617 - sha256 = "0nldn02yqqmrxkzwzrx3v6hkb4y2hch48jkcr2qrw1dl0vqv70b1"; 567554 + version = "0.4.3.0"; 567555 + sha256 = "04iy7z3cmkwjhf90jdjqfv2cjcmn2206p4xmjshfn3fda4sawrcl"; 566618 567556 libraryHaskellDepends = [ 566619 567557 base 566620 567558 containers ··· 568120 569058 nothunks, 568121 569059 QuickCheck, 568122 569060 quickcheck-state-machine, 568123 - si-timers, 568124 - strict-mvar, 568125 - strict-stm, 568126 569061 tasty, 568127 569062 tasty-quickcheck, 568128 569063 tree-diff, 568129 569064 }: 568130 569065 mkDerivation { 568131 569066 pname = "resource-registry"; 568132 - version = "0.1.0.0"; 568133 - sha256 = "0mkx8hf6k0117c15kq3cyqgxbfwjjk0yywp5xf6svdi5g2xpkg5p"; 568134 - revision = "1"; 568135 - editedCabalFile = "0iz6imzg017jf2kn88ir4aqq9ca1aa4xx8h7nfx5dqgj9ps05j7w"; 569067 + version = "0.1.1.0"; 569068 + sha256 = "0zwhnidckc9541sasvxlvysl7qjka1g9cq80h4lzv46kqwagmv9p"; 568136 569069 libraryHaskellDepends = [ 568137 569070 base 568138 569071 bimap ··· 568140 569073 io-classes 568141 569074 mtl 568142 569075 nothunks 568143 - strict-stm 568144 569076 ]; 568145 569077 testHaskellDepends = [ 568146 569078 base ··· 568150 569082 mtl 568151 569083 QuickCheck 568152 569084 quickcheck-state-machine 568153 - si-timers 568154 - strict-mvar 568155 - strict-stm 568156 569085 tasty 568157 569086 tasty-quickcheck 568158 569087 tree-diff ··· 568160 569089 description = "Track allocated resources"; 568161 569090 license = lib.licenses.asl20; 568162 569091 hydraPlatforms = lib.platforms.none; 569092 + broken = true; 568163 569093 } 568164 569094 ) { }; 568165 569095 ··· 568758 569688 }: 568759 569689 mkDerivation { 568760 569690 pname = "rest-rewrite"; 568761 - version = "0.4.4"; 568762 - sha256 = "03jn5wclljkfdj1nvzbs5jvgsh343g1qr864pivgmxbc5ngrdk91"; 568763 - revision = "1"; 568764 - editedCabalFile = "1hhwgph984x1xsqz94myd6cf8530c4pay2qa4kg4zd2g2ka7ymm8"; 569691 + version = "0.4.5"; 569692 + sha256 = "0yxg3wfwxcrg036cxqcf601vfc5472vx9zwl21y23kpx031h7ny4"; 568765 569693 libraryHaskellDepends = [ 568766 569694 base 568767 569695 containers ··· 570581 571509 }: 570582 571510 mkDerivation { 570583 571511 pname = "rfc1751"; 570584 - version = "0.1.3"; 570585 - sha256 = "1f68rss3y64g2s7dmzb635986vf682gb1yvv4x720b29gh65dahk"; 571512 + version = "0.1.4"; 571513 + sha256 = "0jzs3fx30i3hq60vww4y12slb6wikxka38kw66y7rxd397lx23yh"; 570586 571514 libraryHaskellDepends = [ 570587 571515 base 570588 571516 bytestring ··· 573934 574862 }: 573935 574863 mkDerivation { 573936 574864 pname = "rocksdb-haskell-jprupp"; 573937 - version = "2.1.6"; 573938 - sha256 = "0hr7wzhhbbhcvghjbc80c1kba62xkja5ghar7sd0grckzan7maq7"; 574865 + version = "2.1.7"; 574866 + sha256 = "0djdq4h34v1sfxyb9n6yyqxx7jsi6bgi20dr2ff47xy37dz263mi"; 573939 574867 libraryHaskellDepends = [ 573940 574868 base 573941 574869 bytestring ··· 573975 574903 }: 573976 574904 mkDerivation { 573977 574905 pname = "rocksdb-query"; 573978 - version = "0.4.2"; 573979 - sha256 = "1sh88q0vq0b13ig6vmwi8wa73d45qxdkbbc29zphch6p2z4n81wq"; 574906 + version = "0.4.3"; 574907 + sha256 = "1ldly7rj1cs3y04zbxxc6dxw09pknqzxf3dbsa2igydsshs9q9f8"; 573980 574908 libraryHaskellDepends = [ 573981 574909 base 573982 574910 bytestring ··· 580179 581107 }: 580180 581108 mkDerivation { 580181 581109 pname = "salve"; 580182 - version = "2.0.0.6"; 580183 - sha256 = "0rw93gc76sjl1hnjy3jrpdbp9jjya53mpgz8d4695k4875gzvlcn"; 581110 + version = "2.0.0.8"; 581111 + sha256 = "1nnzsfqyls0kfrb0fcfg88hg4nscydvc6kzk7gd8ryv4hr2g7xy7"; 580184 581112 libraryHaskellDepends = [ base ]; 580185 581113 testHaskellDepends = [ 580186 581114 base ··· 582103 583031 }: 582104 583032 mkDerivation { 582105 583033 pname = "saturn"; 582106 - version = "1.0.0.6"; 582107 - sha256 = "0nwpxfkm24dwdbak00mid4bl6bx125flva9adxs3ma6jlw0bgblw"; 583034 + version = "1.0.0.8"; 583035 + sha256 = "00aakwr06ygbidbawr60lq07vk5gp74fp7wj71ndzc1ph6crivwp"; 582108 583036 libraryHaskellDepends = [ 582109 583037 base 582110 583038 containers ··· 582622 583550 } 582623 583551 ) { inherit (pkgs) z3; }; 582624 583552 582625 - "sbv_11_5" = callPackage ( 583553 + "sbv_11_7" = callPackage ( 582626 583554 { 582627 583555 mkDerivation, 582628 583556 array, ··· 582651 583579 text, 582652 583580 time, 582653 583581 transformers, 583582 + tree-view, 582654 583583 uniplate, 582655 583584 z3, 582656 583585 }: 582657 583586 mkDerivation { 582658 583587 pname = "sbv"; 582659 - version = "11.5"; 582660 - sha256 = "14hhx9wj7f89l8df52izz6lb1xk51lyqql70p1gh4sq2f38axnwb"; 583588 + version = "11.7"; 583589 + sha256 = "1nq1yjc4wfjmqhp0y61aqmva99vxnpj2mpksyai63ijmx9zq8yzs"; 582661 583590 enableSeparateDataOutput = true; 582662 583591 libraryHaskellDepends = [ 582663 583592 array ··· 582681 583610 text 582682 583611 time 582683 583612 transformers 583613 + tree-view 582684 583614 uniplate 582685 583615 ]; 582686 583616 testHaskellDepends = [ ··· 588178 589108 }: 588179 589109 mkDerivation { 588180 589110 pname = "secp256k1-haskell"; 588181 - version = "1.4.2"; 588182 - sha256 = "0b9xff4r63aqkdag7v67h9yxaa023i1mylih9wcjh1qa8lcb9zn6"; 589111 + version = "1.4.6"; 589112 + sha256 = "0vp8kxkkbqim6w89zy619x7sghp8i008qa7wdnzaf6kb70wr8j92"; 588183 589113 libraryHaskellDepends = [ 588184 589114 base 588185 589115 base16 ··· 588596 589526 tasty, 588597 589527 tasty-hunit, 588598 589528 text, 589529 + text-builder-linear, 588599 589530 text-display, 589531 + transformers, 588600 589532 }: 588601 589533 mkDerivation { 588602 589534 pname = "sel"; 588603 - version = "0.0.2.0"; 588604 - sha256 = "0gidvbkcjgyq47gh2p19iawv8jcs7ajvih4mk6pwwbkjs8iybpx4"; 588605 - revision = "2"; 588606 - editedCabalFile = "1p63gjj5m5yac2lcjlagmyn0ss0kvn1c0rsa8hh19885kw5xpqjy"; 589535 + version = "0.1.0.0"; 589536 + sha256 = "1rnn7wwhibbqcayc5zy1pjjcq2jafwfxpkkprdk6wzaqhk1j3cqj"; 588607 589537 libraryHaskellDepends = [ 588608 589538 base 588609 589539 base16 588610 589540 bytestring 588611 589541 libsodium-bindings 588612 589542 text 589543 + text-builder-linear 588613 589544 text-display 589545 + transformers 588614 589546 ]; 588615 589547 testHaskellDepends = [ 588616 589548 base ··· 588625 589557 ]; 588626 589558 description = "Cryptography for the casual user"; 588627 589559 license = lib.licenses.bsd3; 588628 - hydraPlatforms = lib.platforms.none; 588629 589560 maintainers = [ lib.maintainers.mangoiv ]; 588630 - broken = true; 588631 589561 } 588632 589562 ) { }; 588633 589563 ··· 591253 592183 }: 591254 592184 mkDerivation { 591255 592185 pname = "serdoc-binary"; 591256 - version = "0.3.0.0"; 591257 - sha256 = "17a391d471n4rxjs64v6xcrg7czr6a8qiac2sw02f7583shpzigv"; 592186 + version = "0.3.1.0"; 592187 + sha256 = "1v8psfn9l2zagsxrpbmp63pkg4mqy86zlq5g0x33vygyflrlihqv"; 591258 592188 libraryHaskellDepends = [ 591259 592189 base 591260 592190 binary ··· 591294 592224 }: 591295 592225 mkDerivation { 591296 592226 pname = "serdoc-core"; 591297 - version = "0.3.0.0"; 591298 - sha256 = "0n0lcm48irb1w95gi3fda7n2hcfli419kxzyw6hpjyaw724hgj4b"; 592227 + version = "0.3.1.0"; 592228 + sha256 = "03x18gcm3n5vgm82kp0b237pl5jgrlxim83zznlchdlx1scxdwzw"; 591299 592229 libraryHaskellDepends = [ 591300 592230 base 591301 592231 bytestring ··· 591980 592910 pname = "servant-activeresource"; 591981 592911 version = "0.1.0.0"; 591982 592912 sha256 = "0dcip0vbry344pv8za5ldxr9g71vyb63ks3jdpjc7z4vixp5rbsp"; 592913 + revision = "1"; 592914 + editedCabalFile = "006mbw5mvj5kzz8bigws55xallwrsvdsi5b5y9wc4d7l8a63z0gd"; 591983 592915 libraryHaskellDepends = [ 591984 592916 aeson 591985 592917 base ··· 595218 596150 pname = "servant-js"; 595219 596151 version = "0.9.4.2"; 595220 596152 sha256 = "15n5s3i491cxjxj70wa8yhpipaz47q46s04l4ysc64wgijlnm8xy"; 595221 - revision = "5"; 595222 - editedCabalFile = "05iwi5q2hbaqc7n1zhw9zpj4qcw8mg849zjfxfv84c9wwh35nrxa"; 596153 + revision = "7"; 596154 + editedCabalFile = "042z84li3qw8zh8x1x4mgdv5iqaz72nk7cz2q315i6lgs30c3460"; 595223 596155 isLibrary = true; 595224 596156 isExecutable = true; 595225 596157 libraryHaskellDepends = [ ··· 596104 597036 pname = "servant-openapi3"; 596105 597037 version = "2.0.1.6"; 596106 597038 sha256 = "1hxz3n6l5l8p9s58sjilrn4lv1z17kfik0xdh05v5v1bzf0j2aij"; 596107 - revision = "7"; 596108 - editedCabalFile = "148mx2hi46l5mdlgikfgilwl3lrvbhqd651qxiky58nr32m07gk0"; 597039 + revision = "8"; 597040 + editedCabalFile = "0ghm39rrn27ss2dfff4ic48kwss71barrrx7qjss80inz8bpz2r2"; 596109 597041 setupHaskellDepends = [ 596110 597042 base 596111 597043 Cabal ··· 598426 599358 pname = "servant-swagger-ui"; 598427 599359 version = "0.3.5.5.0.1"; 598428 599360 sha256 = "0s0krm17addizhjm8033an4nnz27v9n03431gd5v86i5db879q24"; 599361 + revision = "1"; 599362 + editedCabalFile = "1dvsma62i3a6zmfb8aaw913xpi6imh37r2nnnqq8jc4sh88v5w1d"; 598429 599363 libraryHaskellDepends = [ 598430 599364 aeson 598431 599365 base ··· 598461 599395 pname = "servant-swagger-ui-core"; 598462 599396 version = "0.3.5"; 598463 599397 sha256 = "0ckvrwrb3x39hfl2hixcj3fhibh0vqsh6y7n1lsm25yvzfrg02zd"; 598464 - revision = "11"; 598465 - editedCabalFile = "03wabrz068mf4vddlv8mvgvgijp7vqn7i85bqzr7aw7bx6kmkkv1"; 599398 + revision = "12"; 599399 + editedCabalFile = "1fl9g99iaiibh4355h8l2vk3xsmv7gb9fpg9s6i5a7f12as8lw5q"; 598466 599400 libraryHaskellDepends = [ 598467 599401 aeson 598468 599402 base ··· 598498 599432 pname = "servant-swagger-ui-jensoleg"; 598499 599433 version = "0.3.5"; 598500 599434 sha256 = "1645lp9yw2z2mf6gn0h54wjmhdwbkng12s6gd9sr847nc1rahjqq"; 599435 + revision = "1"; 599436 + editedCabalFile = "1wmwvham6671w4whmj31qp68xn42bxpwwc6i95hbcqvszha2wbh2"; 598501 599437 libraryHaskellDepends = [ 598502 599438 aeson 598503 599439 base ··· 598529 599465 pname = "servant-swagger-ui-redoc"; 598530 599466 version = "0.3.5"; 598531 599467 sha256 = "0wvv51mnwjycxgppqbb14kms1m77lf4b07jzgrsf0z0yhdfyn3nw"; 599468 + revision = "1"; 599469 + editedCabalFile = "1k485dxxjvvx69xzcqs4v7j8rrsqgk5gykpz37sv7h3pln3ds2jm"; 598532 599470 libraryHaskellDepends = [ 598533 599471 aeson 598534 599472 base ··· 600300 601238 pname = "set-cover"; 600301 601239 version = "0.1.1.1"; 600302 601240 sha256 = "14j4ml7kglk667idd3qgsdkkzr8iikrj6jcr80wpnlk6wpi2cpnm"; 600303 - revision = "1"; 600304 - editedCabalFile = "0iiy3p2pkxjpl7vhylgmh76afxxwkix9h9w3vj62carz6vgymkid"; 601241 + revision = "2"; 601242 + editedCabalFile = "14mvjd4k8zlxh7g16n2bzkb84lx125ajdlmk05w4i7xijvvcw2c3"; 600305 601243 isLibrary = true; 600306 601244 isExecutable = true; 600307 601245 libraryHaskellDepends = [ ··· 601519 602457 }: 601520 602458 mkDerivation { 601521 602459 pname = "sha256"; 601522 - version = "0.1.0.2"; 601523 - sha256 = "0yzv1bf13dqb3g8n671f2db75kxb69nxdrnfz4j49950hr05mwh9"; 602460 + version = "0.1.0.3"; 602461 + sha256 = "041snznk4mia1jy1rjcdfwjvrr5dvdw0fndxm7bnsx0p9z381x4q"; 601524 602462 libraryHaskellDepends = [ 601525 602463 base 601526 602464 bytestring ··· 605381 606319 }: 605382 606320 mkDerivation { 605383 606321 pname = "shower"; 605384 - version = "0.2.0.3"; 605385 - sha256 = "0bxg88jbg5pj1nm48c1s04dl7l5psq35jsw60y3v1xpnszx95r1r"; 606322 + version = "0.2.0.4"; 606323 + sha256 = "0xjh9qhnl94d6pkg52lc3xw1gi1vflc7rs52xh6wj1dahm0nknkr"; 605386 606324 isLibrary = true; 605387 606325 isExecutable = true; 605388 606326 libraryHaskellDepends = [ ··· 606326 607264 description = "Hmac sha256 signature json and http payload"; 606327 607265 license = lib.licenses.bsd3; 606328 607266 hydraPlatforms = lib.platforms.none; 607267 + broken = true; 606329 607268 } 606330 607269 ) { }; 606331 607270 ··· 606348 607287 } 606349 607288 ) { }; 606350 607289 607290 + "signet" = callPackage ( 607291 + { 607292 + mkDerivation, 607293 + base, 607294 + bytestring, 607295 + case-insensitive, 607296 + crypton, 607297 + exceptions, 607298 + http-types, 607299 + memory, 607300 + tasty, 607301 + tasty-hunit, 607302 + text, 607303 + time, 607304 + transformers, 607305 + }: 607306 + mkDerivation { 607307 + pname = "signet"; 607308 + version = "0.2025.5.21"; 607309 + sha256 = "01rrc4l5a4vl2mmymckdl5shicgx7n909nzdqn8xnk8626whc93p"; 607310 + libraryHaskellDepends = [ 607311 + base 607312 + bytestring 607313 + case-insensitive 607314 + crypton 607315 + exceptions 607316 + http-types 607317 + memory 607318 + text 607319 + time 607320 + ]; 607321 + testHaskellDepends = [ 607322 + base 607323 + tasty 607324 + tasty-hunit 607325 + transformers 607326 + ]; 607327 + description = "Standard Webhooks"; 607328 + license = lib.licenses.bsd0; 607329 + } 607330 + ) { }; 607331 + 606351 607332 "significant-figures" = callPackage ( 606352 607333 { 606353 607334 mkDerivation, ··· 621000 621981 pname = "sound-collage"; 621001 621982 version = "0.2.1"; 621002 621983 sha256 = "09g63b3k0l30z3lxmcz0zpggqqhnr7m01wh2vpm5v561rbnl8rsi"; 621003 - revision = "3"; 621004 - editedCabalFile = "09slv6fqrkbhr1jn7h8xs0cxhdaq3r6cy1xar3vp8dil4hc6v3j8"; 621984 + revision = "4"; 621985 + editedCabalFile = "07innczhsry9nar0ry5h9fia7r6aiidqxdh8mppvk6d3bpvh04y6"; 621005 621986 isLibrary = false; 621006 621987 isExecutable = true; 621007 621988 executableHaskellDepends = [ ··· 621300 622281 pname = "sox"; 621301 622282 version = "0.2.3.2"; 621302 622283 sha256 = "1ys6xm08gr3pvyrial2z1b3gvyd44b9510dpp4ifxqf882igkjgb"; 621303 - revision = "1"; 621304 - editedCabalFile = "1ncmbclz44grdvhx8lgizsp8g8sm97q6vs50sfiwxh1aqwjys7kd"; 622284 + revision = "2"; 622285 + editedCabalFile = "17a26iynli5jimjzlr10jllc4nm7944bzz2z155b4ynj7hy2g8hp"; 621305 622286 libraryHaskellDepends = [ 621306 622287 base 621307 622288 containers ··· 624554 625535 pname = "spreadsheet"; 624555 625536 version = "0.1.3.10"; 624556 625537 sha256 = "022q6an3jl0s8bnwgma8v03b6m4zq3q0drl6nsrcs0nav8n1z5r0"; 625538 + revision = "1"; 625539 + editedCabalFile = "1dd37qgmy7nzxkbarflh5fm33gy7yqy91pa4pa3x4yggp9v52f61"; 624557 625540 isLibrary = true; 624558 625541 isExecutable = true; 624559 625542 libraryHaskellDepends = [ ··· 626672 627655 } 626673 627656 ) { inherit (pkgs) nlopt; }; 626674 627657 626675 - "srtree_2_0_1_2" = callPackage ( 627658 + "srtree_2_0_1_4" = callPackage ( 626676 627659 { 626677 627660 mkDerivation, 626678 627661 ad, 626679 - ansi-terminal, 626680 627662 attoparsec, 626681 627663 attoparsec-expr, 626682 627664 base, ··· 626696 627678 nlopt, 626697 627679 optparse-applicative, 626698 627680 random, 626699 - repline, 626700 627681 scheduler, 626701 627682 split, 626702 627683 statistics, 626703 - table-layout, 626704 627684 transformers, 626705 627685 unliftio, 626706 627686 unliftio-core, ··· 626710 627690 }: 626711 627691 mkDerivation { 626712 627692 pname = "srtree"; 626713 - version = "2.0.1.2"; 626714 - sha256 = "102ii4lmix7crryci80f04mpyk2iw4wlwc81kqqq0xf9yd40ycfn"; 627693 + version = "2.0.1.4"; 627694 + sha256 = "04r9lxf3nffpmmv978h8mfzr0shcbcrwarxs8s2mgpdvdx5qm1sa"; 626715 627695 isLibrary = true; 626716 627696 isExecutable = true; 626717 627697 libraryHaskellDepends = [ ··· 626743 627723 ]; 626744 627724 librarySystemDepends = [ nlopt ]; 626745 627725 executableHaskellDepends = [ 626746 - ansi-terminal 626747 627726 attoparsec 626748 627727 attoparsec-expr 626749 627728 base ··· 626761 627740 mtl 626762 627741 optparse-applicative 626763 627742 random 626764 - repline 626765 627743 scheduler 626766 627744 split 626767 627745 statistics 626768 - table-layout 626769 627746 transformers 626770 627747 unliftio 626771 627748 unliftio-core ··· 627985 628962 } 627986 628963 ) { }; 627987 628964 628965 + "stack-all_0_7" = callPackage ( 628966 + { 628967 + mkDerivation, 628968 + aeson, 628969 + base, 628970 + cached-json-file, 628971 + config-ini, 628972 + directory, 628973 + extra, 628974 + filepath, 628975 + http-query, 628976 + process, 628977 + simple-cmd, 628978 + simple-cmd-args, 628979 + text, 628980 + yaml, 628981 + }: 628982 + mkDerivation { 628983 + pname = "stack-all"; 628984 + version = "0.7"; 628985 + sha256 = "12h5ddkfjv93h677gp2jd254viizbkcg09fflp9mlwxl30bghzdh"; 628986 + isLibrary = false; 628987 + isExecutable = true; 628988 + executableHaskellDepends = [ 628989 + aeson 628990 + base 628991 + cached-json-file 628992 + config-ini 628993 + directory 628994 + extra 628995 + filepath 628996 + http-query 628997 + process 628998 + simple-cmd 628999 + simple-cmd-args 629000 + text 629001 + yaml 629002 + ]; 629003 + description = "CLI tool for building over Stackage major versions"; 629004 + license = lib.licenses.bsd3; 629005 + hydraPlatforms = lib.platforms.none; 629006 + mainProgram = "stack-all"; 629007 + } 629008 + ) { }; 629009 + 627988 629010 "stack-bump" = callPackage ( 627989 629011 { 627990 629012 mkDerivation, ··· 630103 631125 cryptohash-sha1, 630104 631126 dir-traverse, 630105 631127 directory, 631128 + directory-ospath-streaming, 630106 631129 extensions, 630107 631130 filepath, 630108 631131 ghc, ··· 630127 631150 }: 630128 631151 mkDerivation { 630129 631152 pname = "stan"; 630130 - version = "0.2.0.0"; 630131 - sha256 = "1cvn27xma3cqykqla5fid3hvh6q1bszfy7mdlcp00i967src2s1a"; 631153 + version = "0.2.1.0"; 631154 + sha256 = "1mf01bpy291131jfl4fcslv0jfn8i8jqwr29v1v48j6c6q49rias"; 630132 631155 isLibrary = true; 630133 631156 isExecutable = true; 630134 631157 libraryHaskellDepends = [ ··· 630143 631166 cryptohash-sha1 630144 631167 dir-traverse 630145 631168 directory 631169 + directory-ospath-streaming 630146 631170 extensions 630147 631171 filepath 630148 631172 ghc ··· 631616 632640 }: 631617 632641 mkDerivation { 631618 632642 pname = "statsd-rupp"; 631619 - version = "0.5.0.0"; 631620 - sha256 = "0clvpmg50p0f1ny9zz5q1niad1ahnkv0dqyphkyrc2snxh896avp"; 632643 + version = "0.5.0.1"; 632644 + sha256 = "0m9q0x25a1iwcfi3qfxcbcan569c0m4np25z36kjxvyh4v308vkw"; 631621 632645 libraryHaskellDepends = [ 631622 632646 base 631623 632647 bytestring ··· 632880 633904 "stm-delay" = callPackage ( 632881 633905 { 632882 633906 mkDerivation, 633907 + async, 632883 633908 base, 632884 633909 stm, 633910 + time, 632885 633911 }: 632886 633912 mkDerivation { 632887 633913 pname = "stm-delay"; 632888 - version = "0.1.1.1"; 632889 - sha256 = "0cla21v89gcvmr1iwzibq13v1yq02xg4h6k9l6kcprj7mhd5hcmi"; 633914 + version = "0.1.1.2"; 633915 + sha256 = "0k60cpqzqy8c6xk5qw5135a7hlxnh670kb7fhjmz819hsi1n7vq5"; 632890 633916 libraryHaskellDepends = [ 632891 633917 base 632892 633918 stm 632893 633919 ]; 632894 633920 testHaskellDepends = [ 633921 + async 632895 633922 base 632896 633923 stm 633924 + time 632897 633925 ]; 632898 633926 description = "Updatable one-shot timer polled with STM"; 632899 633927 license = lib.licenses.bsd3; ··· 636916 637944 } 636917 637945 ) { }; 636918 637946 637947 + "strict-checked-vars" = callPackage ( 637948 + { 637949 + mkDerivation, 637950 + base, 637951 + io-classes, 637952 + io-sim, 637953 + nothunks, 637954 + QuickCheck, 637955 + tasty, 637956 + tasty-quickcheck, 637957 + }: 637958 + mkDerivation { 637959 + pname = "strict-checked-vars"; 637960 + version = "0.2.1.0"; 637961 + sha256 = "12c4j4rlmxcdri2sgrb383nnvbjmvhxf8pp4mgmkfsipvwyv2clm"; 637962 + libraryHaskellDepends = [ 637963 + base 637964 + io-classes 637965 + ]; 637966 + testHaskellDepends = [ 637967 + base 637968 + io-classes 637969 + io-sim 637970 + nothunks 637971 + QuickCheck 637972 + tasty 637973 + tasty-quickcheck 637974 + ]; 637975 + description = "Strict MVars and TVars with invariant checking for IO and IOSim"; 637976 + license = lib.licenses.asl20; 637977 + } 637978 + ) { }; 637979 + 636919 637980 "strict-concurrency" = callPackage ( 636920 637981 { 636921 637982 mkDerivation, ··· 638970 640031 } 638971 640032 ) { }; 638972 640033 638973 - "strive_6_0_0_15" = callPackage ( 640034 + "strive_6_0_0_17" = callPackage ( 638974 640035 { 638975 640036 mkDerivation, 638976 640037 aeson, ··· 638988 640049 }: 638989 640050 mkDerivation { 638990 640051 pname = "strive"; 638991 - version = "6.0.0.15"; 638992 - sha256 = "0nflrrnk5kqpkmirziphg9lzb9qswfghkfwsgs1hmfs33nvr5l7k"; 640052 + version = "6.0.0.17"; 640053 + sha256 = "07sqrn4rx4y7pm82nmqayz4zl53cqq30a6a5zgiixj0h6szwlhdh"; 638993 640054 libraryHaskellDepends = [ 638994 640055 aeson 638995 640056 base ··· 640244 641305 } 640245 641306 ) { }; 640246 641307 641308 + "stylish-haskell_0_15_0_1" = callPackage ( 641309 + { 641310 + mkDerivation, 641311 + aeson, 641312 + base, 641313 + bytestring, 641314 + Cabal, 641315 + containers, 641316 + directory, 641317 + file-embed, 641318 + filepath, 641319 + ghc-lib-parser, 641320 + ghc-lib-parser-ex, 641321 + HsYAML, 641322 + HsYAML-aeson, 641323 + HUnit, 641324 + mtl, 641325 + optparse-applicative, 641326 + random, 641327 + regex-tdfa, 641328 + strict, 641329 + syb, 641330 + test-framework, 641331 + test-framework-hunit, 641332 + text, 641333 + }: 641334 + mkDerivation { 641335 + pname = "stylish-haskell"; 641336 + version = "0.15.0.1"; 641337 + sha256 = "02smg717ak2m5i7ciyz8vl91x39idmgd5d0ksljyak2jlj77ybr5"; 641338 + isLibrary = true; 641339 + isExecutable = true; 641340 + libraryHaskellDepends = [ 641341 + aeson 641342 + base 641343 + bytestring 641344 + Cabal 641345 + containers 641346 + directory 641347 + file-embed 641348 + filepath 641349 + ghc-lib-parser 641350 + ghc-lib-parser-ex 641351 + HsYAML 641352 + HsYAML-aeson 641353 + mtl 641354 + regex-tdfa 641355 + syb 641356 + text 641357 + ]; 641358 + executableHaskellDepends = [ 641359 + aeson 641360 + base 641361 + bytestring 641362 + Cabal 641363 + containers 641364 + directory 641365 + file-embed 641366 + filepath 641367 + ghc-lib-parser 641368 + ghc-lib-parser-ex 641369 + HsYAML 641370 + HsYAML-aeson 641371 + mtl 641372 + optparse-applicative 641373 + regex-tdfa 641374 + strict 641375 + syb 641376 + text 641377 + ]; 641378 + testHaskellDepends = [ 641379 + aeson 641380 + base 641381 + bytestring 641382 + Cabal 641383 + containers 641384 + directory 641385 + file-embed 641386 + filepath 641387 + ghc-lib-parser 641388 + ghc-lib-parser-ex 641389 + HsYAML 641390 + HsYAML-aeson 641391 + HUnit 641392 + mtl 641393 + random 641394 + regex-tdfa 641395 + syb 641396 + test-framework 641397 + test-framework-hunit 641398 + text 641399 + ]; 641400 + description = "Haskell code prettifier"; 641401 + license = lib.licenses.bsd3; 641402 + hydraPlatforms = lib.platforms.none; 641403 + mainProgram = "stylish-haskell"; 641404 + } 641405 + ) { }; 641406 + 640247 641407 "stylish-haskell_0_15_1_0" = callPackage ( 640248 641408 { 640249 641409 mkDerivation, ··· 641677 642837 }: 641678 642838 mkDerivation { 641679 642839 pname = "sum-pyramid"; 641680 - version = "0.0"; 641681 - sha256 = "0jfz80iigdhhpa5fi2djyjzyrnarqvgdywni9785b6cqz3bv9a5n"; 642840 + version = "0.0.1"; 642841 + sha256 = "1zh7g16d345g8wffgj7wswfryrxxf7ik02fwrncqyc9yxmc7hm6y"; 641682 642842 isLibrary = false; 641683 642843 isExecutable = true; 641684 642844 executableHaskellDepends = [ ··· 644002 645162 }: 644003 645163 mkDerivation { 644004 645164 pname = "swagger2"; 644005 - version = "2.8.9"; 644006 - sha256 = "18far6inavjcmfwdflgs2isrvp4bcnlj9pgqxnp6wba8pazpp8wj"; 645165 + version = "2.8.10"; 645166 + sha256 = "1ry3ml6svbmx2jq8cpmbxbbz48gsf0p7afn7h6shzf5yf8wfc5wj"; 644007 645167 setupHaskellDepends = [ 644008 645168 base 644009 645169 Cabal ··· 647374 648534 testToolDepends = [ hspec-discover ]; 647375 648535 description = "Library for symbolic integration of mathematical expressions"; 647376 648536 license = lib.licenses.asl20; 647377 - hydraPlatforms = lib.platforms.none; 647378 - broken = true; 647379 648537 } 647380 648538 ) { }; 647381 648539 ··· 648246 649404 pname = "synthesizer-core"; 648247 649405 version = "0.8.4"; 648248 649406 sha256 = "11m5zvnwzrsd5ylyc6xd4k56ypmmwzyhixvzc55hgjfpsx9snks9"; 648249 - revision = "1"; 648250 - editedCabalFile = "1q274hspisb2qi45dj01dcm2sxfcqib0i96jkc2jzlvaynnnqhlr"; 649407 + revision = "2"; 649408 + editedCabalFile = "0mryvkgdrhrgqvx4zy81kylfrg3nfggqmj93b009ymrj71d6fs1p"; 648251 649409 libraryHaskellDepends = [ 648252 649410 array 648253 649411 base ··· 648530 649688 pname = "synthesizer-midi"; 648531 649689 version = "0.6.1.2"; 648532 649690 sha256 = "1xnpvk0mny8lbx17zdgl55wp86pqhfg9ckv41b3qd5vrki2dj6nc"; 648533 - revision = "1"; 648534 - editedCabalFile = "061dgdfrv1zrjpih29x50kpl57ghb3ys6wpra5ai9k0wxdpr9zqk"; 649691 + revision = "2"; 649692 + editedCabalFile = "1d2kivwhrvdqrjk7rhvd9csl0isdbybmf81r3bxzbf40fqlqfq8d"; 648535 649693 isLibrary = true; 648536 649694 isExecutable = true; 648537 649695 libraryHaskellDepends = [ ··· 648854 650012 }: 648855 650013 mkDerivation { 648856 650014 pname = "system-fileio"; 648857 - version = "0.3.16.6"; 648858 - sha256 = "0qmsvs5jpg6y82cqh0g37f7dz8172ikgiwcpgs72zwxq35xk271a"; 650015 + version = "0.3.16.7"; 650016 + sha256 = "16593sfb47snq4vixl0qv6119j3yva0nynygz24vcw3ggqmflhrp"; 648859 650017 libraryHaskellDepends = [ 648860 650018 base 648861 650019 bytestring ··· 649784 650942 }: 649785 650943 mkDerivation { 649786 650944 pname = "table-layout"; 649787 - version = "1.0.0.1"; 649788 - sha256 = "175qb6r0ircm4bpnzl7lr9jxsw08w57v650lh3ifz8w8rr23zylg"; 650945 + version = "1.0.0.2"; 650946 + sha256 = "0ddf1kz5zfv04x33gv7w4m710r9amdz2wchcjwsdjp64caqzb59q"; 649789 650947 isLibrary = true; 649790 650948 isExecutable = true; 649791 650949 libraryHaskellDepends = [ ··· 650333 651491 pname = "tagchup"; 650334 651492 version = "0.4.1.2"; 650335 651493 sha256 = "0zlrdlb0f6dhhx163i62ljh1spr0d5gcf0c96m5z7nzq529qq792"; 650336 - revision = "2"; 650337 - editedCabalFile = "0b4mkrablv5gdhvf5l1ni3qyibh9hrrscbi04jf2hxalxnk9by4b"; 651494 + revision = "3"; 651495 + editedCabalFile = "047zdpi2hzalypbafwvrz6g5n8fdz8fdygpg4nhjzjm86k3v4ma1"; 650338 651496 isLibrary = true; 650339 651497 isExecutable = true; 650340 651498 enableSeparateDataOutput = true; ··· 653129 654287 }: 653130 654288 mkDerivation { 653131 654289 pname = "targeted-quickcheck"; 653132 - version = "0.1.0.1"; 653133 - sha256 = "04b96vr01q19m4gvzim4nkrnmyz2lm7l8iirnw8m6vsglxc65fym"; 653134 - isLibrary = true; 653135 - isExecutable = true; 654290 + version = "0.1.0.2"; 654291 + sha256 = "0aw4lwgdbhik39v4fk99ja3c60kw0hmc7y2w5110jrzswdb13p3d"; 653136 654292 libraryHaskellDepends = [ 653137 654293 base 653138 654294 QuickCheck 653139 654295 ]; 653140 - executableHaskellDepends = [ 654296 + testHaskellDepends = [ 653141 654297 base 653142 654298 containers 653143 654299 hspec ··· 653146 654302 description = "Targeted generators for QuickCheck"; 653147 654303 license = lib.licenses.mit; 653148 654304 hydraPlatforms = lib.platforms.none; 653149 - mainProgram = "targeted-examples"; 653150 654305 broken = true; 653151 654306 } 653152 654307 ) { }; ··· 654193 655348 } 654194 655349 ) { }; 654195 655350 655351 + "tasty-discover_5_0_2" = callPackage ( 655352 + { 655353 + mkDerivation, 655354 + base, 655355 + bytestring, 655356 + containers, 655357 + filepath, 655358 + Glob, 655359 + hedgehog, 655360 + hspec, 655361 + hspec-core, 655362 + tasty, 655363 + tasty-golden, 655364 + tasty-hedgehog, 655365 + tasty-hspec, 655366 + tasty-hunit, 655367 + tasty-quickcheck, 655368 + tasty-smallcheck, 655369 + }: 655370 + mkDerivation { 655371 + pname = "tasty-discover"; 655372 + version = "5.0.2"; 655373 + sha256 = "0hz6lhqqmcb157im2vpfihnms29367pcqg8mb6ww0c0bl1g0bf62"; 655374 + isLibrary = true; 655375 + isExecutable = true; 655376 + libraryHaskellDepends = [ 655377 + base 655378 + containers 655379 + filepath 655380 + Glob 655381 + tasty 655382 + ]; 655383 + executableHaskellDepends = [ 655384 + base 655385 + filepath 655386 + ]; 655387 + testHaskellDepends = [ 655388 + base 655389 + bytestring 655390 + containers 655391 + hedgehog 655392 + hspec 655393 + hspec-core 655394 + tasty 655395 + tasty-golden 655396 + tasty-hedgehog 655397 + tasty-hspec 655398 + tasty-hunit 655399 + tasty-quickcheck 655400 + tasty-smallcheck 655401 + ]; 655402 + description = "Test discovery for the tasty framework"; 655403 + license = lib.licenses.mit; 655404 + hydraPlatforms = lib.platforms.none; 655405 + mainProgram = "tasty-discover"; 655406 + } 655407 + ) { }; 655408 + 654196 655409 "tasty-expected-failure" = callPackage ( 654197 655410 { 654198 655411 mkDerivation, ··· 657286 658499 }: 657287 658500 mkDerivation { 657288 658501 pname = "telegram-bot-api"; 657289 - version = "7.4.4"; 657290 - sha256 = "1viyh5vkis6gydp7n1vrn3x17hjw3q872z6as54y7kfm9r07kp4h"; 658502 + version = "7.4.5"; 658503 + sha256 = "0fhn85s1xjba0dw1hcv9y75p19gpdqra4rc1d416p09xa75jnvxn"; 657291 658504 libraryHaskellDepends = [ 657292 658505 aeson 657293 658506 base ··· 657612 658825 containers, 657613 658826 effectful, 657614 658827 exceptions, 657615 - fits-parse, 657616 658828 libyaml, 657617 658829 massiv, 658830 + massiv-io, 657618 658831 megaparsec, 657619 658832 resourcet-effectful, 657620 658833 scientific, ··· 657624 658837 }: 657625 658838 mkDerivation { 657626 658839 pname = "telescope"; 657627 - version = "0.2.0"; 657628 - sha256 = "0ax9sk5910zi09wnyxc9zn4sf54bsvyycsj8faxrgf840wpw990f"; 658840 + version = "0.3.0"; 658841 + sha256 = "06hfflc1ala8b8zm0838yrd51lwj5bqg1qdqwn9fs0hr1jp5nx1r"; 657629 658842 libraryHaskellDepends = [ 657630 658843 base 657631 658844 binary ··· 657635 658848 conduit 657636 658849 effectful 657637 658850 exceptions 657638 - fits-parse 657639 658851 libyaml 657640 658852 massiv 658853 + massiv-io 657641 658854 megaparsec 657642 658855 resourcet-effectful 657643 658856 scientific ··· 657654 658867 containers 657655 658868 effectful 657656 658869 exceptions 657657 - fits-parse 657658 658870 libyaml 657659 658871 massiv 658872 + massiv-io 657660 658873 megaparsec 657661 658874 resourcet-effectful 657662 658875 scientific ··· 661039 662252 }: 661040 662253 mkDerivation { 661041 662254 pname = "test-lib"; 661042 - version = "0.4"; 661043 - sha256 = "0jp0k27vvdz4lfrdi7874j7gnnn051kvqfn1k3zg1ap4m9jzyb45"; 661044 - revision = "4"; 661045 - editedCabalFile = "1axgj0pxis513zxxxbjws9vf3zdx9y6djsvgpvi0miprvzr5qask"; 662255 + version = "0.5"; 662256 + sha256 = "1qc86qbq5rljql1010gibp8qd9rgylj8g5kl7jp5yb2ymwx65p92"; 661046 662257 isLibrary = true; 661047 662258 isExecutable = true; 661048 662259 libraryHaskellDepends = [ ··· 661979 663190 }: 661980 663191 mkDerivation { 661981 663192 pname = "texmath"; 661982 - version = "0.12.10"; 661983 - sha256 = "09gff44pz9jyz714jn4xgglkp31vfmsccdlbcf3n732z30y0h9wb"; 663193 + version = "0.12.10.1"; 663194 + sha256 = "0cxdwnfz61zpcwh2va1vmm4mi41zmh72i8c28v17mb1jwvlk59f1"; 661984 663195 isLibrary = true; 661985 663196 isExecutable = true; 661986 663197 libraryHaskellDepends = [ ··· 662009 663220 ]; 662010 663221 description = "Conversion between math formats"; 662011 663222 license = lib.licenses.gpl2Only; 663223 + } 663224 + ) { }; 663225 + 663226 + "texmath_0_12_10_3" = callPackage ( 663227 + { 663228 + mkDerivation, 663229 + base, 663230 + bytestring, 663231 + containers, 663232 + directory, 663233 + filepath, 663234 + mtl, 663235 + pandoc-types, 663236 + parsec, 663237 + pretty-show, 663238 + split, 663239 + syb, 663240 + tagged, 663241 + tasty, 663242 + tasty-golden, 663243 + text, 663244 + typst-symbols, 663245 + xml, 663246 + }: 663247 + mkDerivation { 663248 + pname = "texmath"; 663249 + version = "0.12.10.3"; 663250 + sha256 = "0xpv5zxaixn2kkc3kn547jg7rkg6bl2mrmxiwvxf2r0qgj4kmr2p"; 663251 + isLibrary = true; 663252 + isExecutable = true; 663253 + libraryHaskellDepends = [ 663254 + base 663255 + containers 663256 + mtl 663257 + pandoc-types 663258 + parsec 663259 + split 663260 + syb 663261 + text 663262 + typst-symbols 663263 + xml 663264 + ]; 663265 + testHaskellDepends = [ 663266 + base 663267 + bytestring 663268 + directory 663269 + filepath 663270 + pretty-show 663271 + tagged 663272 + tasty 663273 + tasty-golden 663274 + text 663275 + xml 663276 + ]; 663277 + description = "Conversion between math formats"; 663278 + license = lib.licenses.gpl2Only; 663279 + hydraPlatforms = lib.platforms.none; 662012 663280 } 662013 663281 ) { }; 662014 663282 ··· 662379 663647 } 662380 663648 ) { }; 662381 663649 662382 - "text-builder_1_0_0_3" = callPackage ( 663650 + "text-builder_1_0_0_4" = callPackage ( 662383 663651 { 662384 663652 mkDerivation, 662385 663653 base, ··· 662398 663666 }: 662399 663667 mkDerivation { 662400 663668 pname = "text-builder"; 662401 - version = "1.0.0.3"; 662402 - sha256 = "1r5v28029hwxl4pkyss5vrxm95ndz0ja4bmcglnsbgpqsj6ia96k"; 663669 + version = "1.0.0.4"; 663670 + sha256 = "1s4vc5fgf5xkwpia9r5gjngzrm2q4r081hf5zg553fg74jlg88wk"; 662403 663671 libraryHaskellDepends = [ 662404 663672 base 662405 663673 bytestring ··· 662577 663845 } 662578 663846 ) { }; 662579 663847 663848 + "text-builder-lawful-conversions" = callPackage ( 663849 + { 663850 + mkDerivation, 663851 + base, 663852 + hspec, 663853 + lawful-conversions, 663854 + QuickCheck, 663855 + quickcheck-instances, 663856 + text, 663857 + text-builder, 663858 + text-builder-core, 663859 + }: 663860 + mkDerivation { 663861 + pname = "text-builder-lawful-conversions"; 663862 + version = "0.1.1"; 663863 + sha256 = "0kjsznkn7l4m16z9m7l1i47yf4kygyyjpvdsjnwjdn6ix07nwd6d"; 663864 + libraryHaskellDepends = [ 663865 + base 663866 + lawful-conversions 663867 + text 663868 + text-builder 663869 + text-builder-core 663870 + ]; 663871 + testHaskellDepends = [ 663872 + base 663873 + hspec 663874 + lawful-conversions 663875 + QuickCheck 663876 + quickcheck-instances 663877 + text 663878 + text-builder 663879 + ]; 663880 + description = "Orphan instances of \"lawful-conversions\" for \"text-builder\""; 663881 + license = lib.licenses.mit; 663882 + hydraPlatforms = lib.platforms.none; 663883 + broken = true; 663884 + } 663885 + ) { }; 663886 + 662580 663887 "text-builder-linear" = callPackage ( 662581 663888 { 662582 663889 mkDerivation, ··· 667519 668826 filepath, 667520 668827 ghc-events, 667521 668828 glib, 667522 - gtk, 668829 + gtk3, 667523 668830 mtl, 667524 668831 pango, 667525 668832 template-haskell, 667526 668833 temporary, 667527 668834 text, 667528 668835 time, 668836 + transformers, 667529 668837 unix, 667530 668838 }: 667531 668839 mkDerivation { 667532 668840 pname = "threadscope"; 667533 - version = "0.2.14.1"; 667534 - sha256 = "0hfn90299mp18p2bjj2bgfi1pk3ndxz4nv2ac6z52kvh00sr9drq"; 667535 - revision = "3"; 667536 - editedCabalFile = "1vrn7ccxh2r9sfg6qpvpd5rva442d1lhk3k3bs5d7cqj4dcpcg6x"; 668841 + version = "0.2.15.0"; 668842 + sha256 = "09cgxximn317ynd6gg5dhhvzc0zzvmdwm650p9bhf9ysah0rch4d"; 667537 668843 isLibrary = false; 667538 668844 isExecutable = true; 667539 668845 enableSeparateDataOutput = true; ··· 667549 668855 filepath 667550 668856 ghc-events 667551 668857 glib 667552 - gtk 668858 + gtk3 667553 668859 mtl 667554 668860 pango 667555 668861 template-haskell 667556 668862 temporary 667557 668863 text 667558 668864 time 668865 + transformers 667559 668866 unix 667560 668867 ]; 667561 668868 description = "A graphical tool for profiling parallel Haskell programs"; ··· 669949 671256 }: 669950 671257 mkDerivation { 669951 671258 pname = "time-manager"; 669952 - version = "0.2.2"; 669953 - sha256 = "1sm9rm2r45r535xc85xkzla6ym8rd84hs5aygpi1dr67z53d01fn"; 671259 + version = "0.2.3"; 671260 + sha256 = "1s387nka1nxii026ly4awrz74acs4ci141mh3mvsz4j47cyw7dzf"; 669954 671261 libraryHaskellDepends = [ 669955 671262 auto-update 669956 671263 base ··· 672909 674216 } 672910 674217 ) { }; 672911 674218 672912 - "tls_2_1_9" = callPackage ( 674219 + "tls_2_1_10" = callPackage ( 672913 674220 { 672914 674221 mkDerivation, 672915 674222 asn1-encoding, ··· 672942 674249 }: 672943 674250 mkDerivation { 672944 674251 pname = "tls"; 672945 - sha256 = "176ghik07jcsv2g4nn6s9wxvwypd5ib81jb9v329vv0m58cmcygj"; 672946 - sha256 = "0fp9mdvi0h1r6r345j5bh6lk8vz5vr9s9qh7j9nn1a3r5hhpfb8m"; 674252 + version = "2.1.10"; 674253 + sha256 = "18ffiz82a2jsdfliygynn50pxwndh7kykg7z4xq016p2si5nzxaq"; 672947 674254 isLibrary = true; 672948 674255 isExecutable = true; 672949 674256 libraryHaskellDepends = [ ··· 674137 675444 }: 674138 675445 mkDerivation { 674139 675446 pname = "token-limiter-concurrent"; 674140 - version = "0.1.0.0"; 674141 - sha256 = "09ai81x994snla1aq1245y6x3w3kblcgl4wjy70vm9yli8c2d064"; 675447 + version = "0.2.0.1"; 675448 + sha256 = "0a78y5wpv6l29n42d73lzy3998wm9yj115ia2zcl569hf1yybcpn"; 674142 675449 libraryHaskellDepends = [ base ]; 674143 675450 testHaskellDepends = [ 674144 675451 async ··· 675609 676916 { 675610 676917 mkDerivation, 675611 676918 base, 676919 + bytestring, 675612 676920 containers, 675613 676921 data-default, 675614 676922 mono-traversable, ··· 675617 676925 }: 675618 676926 mkDerivation { 675619 676927 pname = "tools-yj"; 675620 - version = "0.1.0.23"; 675621 - sha256 = "0sj16z4aaiv6zaadmdavs5a6jm8vpfxb5kvlg1irfx5d1sybx3ys"; 676928 + version = "0.1.0.27"; 676929 + sha256 = "1blcyq5ihqk2kidvywvv187jqgisnnak6rgp2jhw7zbpd4da7hs8"; 675622 676930 libraryHaskellDepends = [ 675623 676931 base 676932 + bytestring 675624 676933 containers 675625 676934 data-default 675626 676935 mono-traversable ··· 675629 676938 ]; 675630 676939 testHaskellDepends = [ 675631 676940 base 676941 + bytestring 675632 676942 containers 675633 676943 data-default 675634 676944 mono-traversable ··· 675640 676950 } 675641 676951 ) { }; 675642 676952 676953 + "tools-yj_0_1_0_30" = callPackage ( 676954 + { 676955 + mkDerivation, 676956 + base, 676957 + bytestring, 676958 + containers, 676959 + data-default, 676960 + mono-traversable, 676961 + stm, 676962 + text, 676963 + }: 676964 + mkDerivation { 676965 + pname = "tools-yj"; 676966 + version = "0.1.0.30"; 676967 + sha256 = "0dd7l31p74h0nqszv4095zdp5lmjg8s9sxsn59da808f8z1pzf41"; 676968 + libraryHaskellDepends = [ 676969 + base 676970 + bytestring 676971 + containers 676972 + data-default 676973 + mono-traversable 676974 + stm 676975 + text 676976 + ]; 676977 + testHaskellDepends = [ 676978 + base 676979 + bytestring 676980 + containers 676981 + data-default 676982 + mono-traversable 676983 + stm 676984 + text 676985 + ]; 676986 + description = "Tribial tools"; 676987 + license = lib.licenses.bsd3; 676988 + hydraPlatforms = lib.platforms.none; 676989 + } 676990 + ) { }; 676991 + 675643 676992 "toolshed" = callPackage ( 675644 676993 { 675645 676994 mkDerivation, ··· 676740 678089 }: 676741 678090 mkDerivation { 676742 678091 pname = "tpdb"; 676743 - version = "2.7.3"; 676744 - sha256 = "10b03ixjmbhqbnqilyh4afs2mv6ss1p8fdvq9hwa84gsafq31cxz"; 678092 + version = "2.8.1"; 678093 + sha256 = "1y162ny5c37n58cqd057w8c8865205qi7xq8jsm7gjz3qr86izs8"; 676745 678094 isLibrary = true; 676746 678095 isExecutable = true; 676747 678096 libraryHaskellDepends = [ ··· 679204 680553 pname = "tree-diff"; 679205 680554 version = "0.3.4"; 679206 680555 sha256 = "0fqfyrab0bf98z251lsfvl2jdcaja6ikfn9q537jbxkx402fi6jy"; 680556 + revision = "1"; 680557 + editedCabalFile = "1nq6bx4zzp37vw7mmnab5nsc6z8x09xga4aqbfia8r6rp1zxbm10"; 679207 680558 libraryHaskellDepends = [ 679208 680559 aeson 679209 680560 ansi-terminal ··· 686578 687929 } 686579 687930 ) { }; 686580 687931 687932 + "typed-protocols" = callPackage ( 687933 + { 687934 + mkDerivation, 687935 + base, 687936 + bytestring, 687937 + contra-tracer, 687938 + directory, 687939 + io-classes, 687940 + io-sim, 687941 + network, 687942 + primitive, 687943 + QuickCheck, 687944 + serialise, 687945 + singletons, 687946 + tasty, 687947 + tasty-quickcheck, 687948 + time, 687949 + unix, 687950 + }: 687951 + mkDerivation { 687952 + pname = "typed-protocols"; 687953 + version = "1.0.0.0"; 687954 + sha256 = "109503w2fsnfpnf0s1988c6km17pj56vlgwrcxi0d4yjy5n88462"; 687955 + libraryHaskellDepends = [ 687956 + base 687957 + bytestring 687958 + contra-tracer 687959 + io-classes 687960 + network 687961 + primitive 687962 + serialise 687963 + singletons 687964 + time 687965 + ]; 687966 + testHaskellDepends = [ 687967 + base 687968 + bytestring 687969 + contra-tracer 687970 + directory 687971 + io-classes 687972 + io-sim 687973 + network 687974 + QuickCheck 687975 + tasty 687976 + tasty-quickcheck 687977 + unix 687978 + ]; 687979 + doHaddock = false; 687980 + description = "A framework for strongly typed protocols"; 687981 + license = lib.licenses.asl20; 687982 + } 687983 + ) { }; 687984 + 687985 + "typed-protocols-doc" = callPackage ( 687986 + { 687987 + mkDerivation, 687988 + aeson, 687989 + base, 687990 + base64-bytestring, 687991 + blaze-html, 687992 + bytestring, 687993 + containers, 687994 + fgl, 687995 + filepath, 687996 + graphviz, 687997 + haddock-library, 687998 + knob, 687999 + mtl, 688000 + optparse-applicative, 688001 + serdoc-core, 688002 + tasty, 688003 + tasty-quickcheck, 688004 + template-haskell, 688005 + temporary, 688006 + text, 688007 + th-abstraction, 688008 + time, 688009 + typed-protocols, 688010 + }: 688011 + mkDerivation { 688012 + pname = "typed-protocols-doc"; 688013 + version = "0.2.0.0"; 688014 + sha256 = "0nn87n28dig216zfqv87bihvay83r76gwbr9qchhpk8crj3yrv5d"; 688015 + isLibrary = true; 688016 + isExecutable = true; 688017 + libraryHaskellDepends = [ 688018 + aeson 688019 + base 688020 + base64-bytestring 688021 + blaze-html 688022 + bytestring 688023 + containers 688024 + fgl 688025 + filepath 688026 + graphviz 688027 + haddock-library 688028 + knob 688029 + mtl 688030 + optparse-applicative 688031 + serdoc-core 688032 + template-haskell 688033 + temporary 688034 + text 688035 + th-abstraction 688036 + time 688037 + typed-protocols 688038 + ]; 688039 + executableHaskellDepends = [ 688040 + base 688041 + mtl 688042 + serdoc-core 688043 + text 688044 + typed-protocols 688045 + ]; 688046 + testHaskellDepends = [ 688047 + base 688048 + blaze-html 688049 + bytestring 688050 + mtl 688051 + serdoc-core 688052 + tasty 688053 + tasty-quickcheck 688054 + text 688055 + typed-protocols 688056 + ]; 688057 + description = "Derive documentation from typed-protocols source code"; 688058 + license = lib.licenses.asl20; 688059 + hydraPlatforms = lib.platforms.none; 688060 + mainProgram = "typed-protocols-doc-demo"; 688061 + } 688062 + ) { }; 688063 + 686581 688064 "typed-range" = callPackage ( 686582 688065 { 686583 688066 mkDerivation, ··· 687179 688662 }: 687180 688663 mkDerivation { 687181 688664 pname = "typelevel-tools-yj"; 687182 - version = "0.1.0.8"; 687183 - sha256 = "0fr0ilk99rij4b8m8jc9n09df5qc0xxck7cl87nrrkidyvmwh75w"; 688665 + version = "0.1.0.9"; 688666 + sha256 = "1fghcw13cjr8amwr1g7a0h8vi0cm0zcbw888kjcdchc6xj79wqiz"; 687184 688667 libraryHaskellDepends = [ 687185 688668 base 687186 688669 template-haskell ··· 687888 689371 } 687889 689372 ) { }; 687890 689373 687891 - "typst_0_7" = callPackage ( 689374 + "typst_0_8_0_1" = callPackage ( 687892 689375 { 687893 689376 mkDerivation, 687894 689377 aeson, ··· 687918 689401 }: 687919 689402 mkDerivation { 687920 689403 pname = "typst"; 687921 - version = "0.7"; 687922 - sha256 = "1svcmksjvnmw38zy36fmclhjcx2k1y4h2wddgq9gbky2qdkz71mg"; 689404 + version = "0.8.0.1"; 689405 + sha256 = "00vqm67smsh4idp9506b3698k573p5h101ygff0wkrbkk7bmaf4v"; 687923 689406 isLibrary = true; 687924 689407 isExecutable = true; 687925 689408 libraryHaskellDepends = [ ··· 687981 689464 } 687982 689465 ) { }; 687983 689466 689467 + "typst-symbols_0_1_8_1" = callPackage ( 689468 + { 689469 + mkDerivation, 689470 + base, 689471 + text, 689472 + }: 689473 + mkDerivation { 689474 + pname = "typst-symbols"; 689475 + version = "0.1.8.1"; 689476 + sha256 = "1va29x72r0w0bms7wfsrhbnfn8cha1ghbaj33y62kflm50k9hwrg"; 689477 + libraryHaskellDepends = [ 689478 + base 689479 + text 689480 + ]; 689481 + description = "Symbol and emoji lookup for typst language"; 689482 + license = lib.licenses.mit; 689483 + hydraPlatforms = lib.platforms.none; 689484 + } 689485 + ) { }; 689486 + 687984 689487 "tyro" = callPackage ( 687985 689488 { 687986 689489 mkDerivation, ··· 690584 692087 pname = "unicode"; 690585 692088 version = "0.0.1.1"; 690586 692089 sha256 = "1hgqnplpgaw0pwz0lfr59vmljcf4l5b4ynrhdcic94g18lpsmnvg"; 690587 - revision = "1"; 690588 - editedCabalFile = "00r1lx5zph98p7mw70hh0ibc2ns49qm6a1wnmv6lddi4sqjg7d6i"; 692090 + revision = "2"; 692091 + editedCabalFile = "0wmih9v4jpxwnhc93gwy890fdcw93wj245yndmr54zjc71gy3139"; 690589 692092 isLibrary = true; 690590 692093 isExecutable = true; 690591 692094 libraryHaskellDepends = [ ··· 691768 693271 ]; 691769 693272 description = "A union-find/map data structure"; 691770 693273 license = lib.licenses.bsd3; 693274 + hydraPlatforms = lib.platforms.none; 693275 + broken = true; 691771 693276 } 691772 693277 ) { }; 691773 693278 ··· 692191 693696 pname = "unique-logic-tf"; 692192 693697 version = "0.5.1"; 692193 693698 sha256 = "0a2hjkm7kwfnqyscxxdw2r2cq3gsydv5ny91vpxxd3paknqqr0cb"; 692194 - revision = "3"; 692195 - editedCabalFile = "18ksx28w58g0mdnsk0sr57n76r48dbig4dk4cks3kjzhgbix4wd2"; 693699 + revision = "4"; 693700 + editedCabalFile = "05dl9xbbd1zlynqzz0vmi41q2vhjj7jrgpdzb4jxdxkcg5xrxccr"; 692196 693701 libraryHaskellDepends = [ 692197 693702 base 692198 693703 containers ··· 693194 694699 } 693195 694700 ) { }; 693196 694701 693197 - "unix_2_8_6_0" = callPackage ( 694702 + "unix_2_8_7_0" = callPackage ( 693198 694703 { 693199 694704 mkDerivation, 693200 694705 base, ··· 693207 694712 }: 693208 694713 mkDerivation { 693209 694714 pname = "unix"; 693210 - version = "2.8.6.0"; 693211 - sha256 = "18pf0nsqzj4ciwrwbynx7r47aapgbb4gn2kiar31vap4nfdmj5w1"; 693212 - revision = "1"; 693213 - editedCabalFile = "0ca08c8wsz4hfq7ajzaba45mxp9wak3x6vv37j63r747gbyqlzsv"; 694715 + version = "2.8.7.0"; 694716 + sha256 = "10zv2vcq82vv56hll5mpvfwfsx6ymp2f75fwxvp5a1xgbafqgpfb"; 693214 694717 libraryHaskellDepends = [ 693215 694718 base 693216 694719 bytestring ··· 701407 702910 } 701408 702911 ) { }; 701409 702912 702913 + "vector-extras_0_3" = callPackage ( 702914 + { 702915 + mkDerivation, 702916 + base, 702917 + vector, 702918 + }: 702919 + mkDerivation { 702920 + pname = "vector-extras"; 702921 + version = "0.3"; 702922 + sha256 = "0s84sa3y0whxkfdcwna2yaqh8vbyn22d9k627q2hxdmjkd3fhv9v"; 702923 + libraryHaskellDepends = [ 702924 + base 702925 + vector 702926 + ]; 702927 + description = "Utilities for the \"vector\" library"; 702928 + license = lib.licenses.mit; 702929 + hydraPlatforms = lib.platforms.none; 702930 + } 702931 + ) { }; 702932 + 701410 702933 "vector-fft" = callPackage ( 701411 702934 { 701412 702935 mkDerivation, ··· 702606 704129 binary, 702607 704130 blaze-html, 702608 704131 bytestring, 704132 + containers, 702609 704133 criterion, 702610 704134 cryptonite, 702611 704135 deepseq, 702612 - DRBG, 702613 704136 exceptions, 702614 704137 fgl, 702615 704138 fgl-visualize, ··· 702621 704144 memory, 702622 704145 monad-control, 702623 704146 mtl, 704147 + mwc-probability, 702624 704148 optparse-applicative, 702625 704149 parsec, 702626 704150 prettyprinter, 704151 + primitive, 702627 704152 random, 702628 704153 recursion-schemes, 702629 - shakespeare, 702630 704154 shelly, 702631 - statistics, 702632 704155 tasty, 702633 704156 tasty-hedgehog, 702634 704157 tasty-hunit, ··· 702643 704166 }: 702644 704167 mkDerivation { 702645 704168 pname = "verismith"; 702646 - version = "1.0.0.2"; 702647 - sha256 = "0lrc0idpxg4a7mlwb7s3j43zizinszpfwwqfm91cz3fkb5clv21h"; 704169 + version = "1.1.0"; 704170 + sha256 = "1jbgqxaydgskdm28x2c4cfw97azjdmv7kjf1czdfw6b8gnb1kyvk"; 702648 704171 isLibrary = true; 702649 704172 isExecutable = true; 702650 704173 enableSeparateDataOutput = true; ··· 702654 704177 binary 702655 704178 blaze-html 702656 704179 bytestring 704180 + containers 702657 704181 cryptonite 702658 704182 deepseq 702659 - DRBG 702660 704183 exceptions 702661 704184 fgl 702662 704185 fgl-visualize ··· 702668 704191 memory 702669 704192 monad-control 702670 704193 mtl 704194 + mwc-probability 702671 704195 optparse-applicative 702672 704196 parsec 702673 704197 prettyprinter 704198 + primitive 702674 704199 random 702675 704200 recursion-schemes 702676 - shakespeare 702677 704201 shelly 702678 - statistics 702679 704202 template-haskell 702680 704203 text 702681 704204 time ··· 702693 704216 hedgehog 702694 704217 lens 702695 704218 parsec 702696 - shakespeare 702697 704219 tasty 702698 704220 tasty-hedgehog 702699 704221 tasty-hunit ··· 702708 704230 license = lib.licenses.gpl3Only; 702709 704231 hydraPlatforms = lib.platforms.none; 702710 704232 mainProgram = "verismith"; 704233 + broken = true; 702711 704234 } 702712 704235 ) { }; 702713 704236 ··· 702720 704243 extra, 702721 704244 mtl, 702722 704245 safe, 704246 + stm, 702723 704247 text, 702724 704248 time, 702725 704249 uuid, 702726 704250 }: 702727 704251 mkDerivation { 702728 704252 pname = "verset"; 702729 - version = "0.0.1.9"; 702730 - sha256 = "1ygsqr6qhcfv71v0jgbh17ayrg1fkf63dl851zl3p745jjr2sxk2"; 702731 - revision = "1"; 702732 - editedCabalFile = "01dlq868938286b8a6ydvffzxaab9q8vg88mcavq25b6hfpr4ca1"; 704253 + version = "0.0.1.11"; 704254 + sha256 = "1124iagx8h4jw66sgh9f3ix3vw8x6iygyw48igip36dkj5dd6rwi"; 702733 704255 libraryHaskellDepends = [ 702734 704256 base 702735 704257 bytestring ··· 702737 704259 extra 702738 704260 mtl 702739 704261 safe 704262 + stm 702740 704263 text 702741 704264 time 702742 704265 uuid ··· 705851 707374 } 705852 707375 ) { }; 705853 707376 707377 + "vty-windows_0_2_0_4" = callPackage ( 707378 + { 707379 + mkDerivation, 707380 + base, 707381 + blaze-builder, 707382 + bytestring, 707383 + containers, 707384 + deepseq, 707385 + directory, 707386 + filepath, 707387 + microlens, 707388 + microlens-mtl, 707389 + microlens-th, 707390 + mtl, 707391 + parsec, 707392 + stm, 707393 + transformers, 707394 + utf8-string, 707395 + vector, 707396 + vty, 707397 + Win32, 707398 + }: 707399 + mkDerivation { 707400 + pname = "vty-windows"; 707401 + version = "0.2.0.4"; 707402 + sha256 = "1iisk8acjjibghw05yyc1w25hcs4d1cn1jlhl0iikz36kl0bbl8q"; 707403 + libraryHaskellDepends = [ 707404 + base 707405 + blaze-builder 707406 + bytestring 707407 + containers 707408 + deepseq 707409 + directory 707410 + filepath 707411 + microlens 707412 + microlens-mtl 707413 + microlens-th 707414 + mtl 707415 + parsec 707416 + stm 707417 + transformers 707418 + utf8-string 707419 + vector 707420 + vty 707421 + Win32 707422 + ]; 707423 + description = "Windows backend for Vty"; 707424 + license = lib.licenses.bsd3; 707425 + platforms = lib.platforms.windows; 707426 + hydraPlatforms = lib.platforms.none; 707427 + } 707428 + ) { }; 707429 + 705854 707430 "vulkan" = callPackage ( 705855 707431 { 705856 707432 mkDerivation, ··· 705868 707444 }: 705869 707445 mkDerivation { 705870 707446 pname = "vulkan"; 705871 - version = "3.26.2"; 705872 - sha256 = "1y0yrcc2z43s98gyics9v56j0nkh6xk8knmqwslndsznzma6ga0c"; 707447 + version = "3.26.4"; 707448 + sha256 = "1s8gn6bnhxvbhwwscbh2x5fz2zvwqbgkhcz8pgx347lgcjzalc1r"; 705873 707449 libraryHaskellDepends = [ 705874 707450 base 705875 707451 bytestring ··· 713495 715071 bytestring, 713496 715072 casing, 713497 715073 containers, 713498 - Diff, 713499 715074 effectful-core, 713500 715075 file-embed, 713501 715076 html-entities, ··· 713506 715081 }: 713507 715082 mkDerivation { 713508 715083 pname = "web-view"; 713509 - version = "0.7.0"; 713510 - sha256 = "062n3zff1frm38qzcylrp25krxx2nr5w68w71ijja2j87glj20kz"; 715084 + version = "0.7.1"; 715085 + sha256 = "1h481qzbi0pmdgzj6y93280wc50d5k8ja5y3cp1sjm7fdpsdw3g2"; 713511 715086 libraryHaskellDepends = [ 713512 715087 base 713513 715088 bytestring ··· 713525 715100 bytestring 713526 715101 casing 713527 715102 containers 713528 - Diff 713529 715103 effectful-core 713530 715104 file-embed 713531 715105 html-entities ··· 714686 716260 }: 714687 716261 mkDerivation { 714688 716262 pname = "webdriver-precore"; 714689 - version = "0.1.0.1"; 714690 - sha256 = "0c86dgnpg8rccmkjfzslvp6nppr9s2scxyy9g15xawaglrrm6xw2"; 716263 + version = "0.1.0.2"; 716264 + sha256 = "1ac3jnpfqay72y5d61zv7v0i43y293ny7h64iklj1bjlwcn6f1vq"; 714691 716265 libraryHaskellDepends = [ 714692 716266 aeson 714693 716267 aeson-pretty ··· 715192 716766 }: 715193 716767 mkDerivation { 715194 716768 pname = "webfinger-client"; 715195 - version = "0.2.1.0"; 715196 - sha256 = "04m61f8274nnn81cddv66n5cm4s0lxlz5gyapw1w7yk3pq4xfx9w"; 716769 + version = "0.2.2.0"; 716770 + sha256 = "0i8gixjsz6hw77gplrk26d15m6d3ddm1ac2hgcmv641msvbfr9p2"; 715197 716771 libraryHaskellDepends = [ 715198 716772 aeson 715199 716773 base ··· 715264 716838 } 715265 716839 ) { }; 715266 716840 716841 + "webgear-core_1_4_0" = callPackage ( 716842 + { 716843 + mkDerivation, 716844 + arrows, 716845 + base, 716846 + binary, 716847 + bytestring, 716848 + case-insensitive, 716849 + cookie, 716850 + http-api-data, 716851 + http-media, 716852 + http-types, 716853 + jose, 716854 + network, 716855 + tagged, 716856 + template-haskell, 716857 + text, 716858 + wai, 716859 + wai-app-static, 716860 + wai-extra, 716861 + }: 716862 + mkDerivation { 716863 + pname = "webgear-core"; 716864 + version = "1.4.0"; 716865 + sha256 = "0kda3yyg7w2ws2v303nsb9g6wrc743d8rd5lz6xpd71myiq5w5fx"; 716866 + libraryHaskellDepends = [ 716867 + arrows 716868 + base 716869 + binary 716870 + bytestring 716871 + case-insensitive 716872 + cookie 716873 + http-api-data 716874 + http-media 716875 + http-types 716876 + jose 716877 + network 716878 + tagged 716879 + template-haskell 716880 + text 716881 + wai 716882 + wai-app-static 716883 + wai-extra 716884 + ]; 716885 + description = "Composable, type-safe library to build HTTP APIs"; 716886 + license = lib.licenses.mpl20; 716887 + hydraPlatforms = lib.platforms.none; 716888 + } 716889 + ) { }; 716890 + 715267 716891 "webgear-openapi" = callPackage ( 715268 716892 { 715269 716893 mkDerivation, ··· 715299 716923 } 715300 716924 ) { }; 715301 716925 716926 + "webgear-openapi_1_4_0" = callPackage ( 716927 + { 716928 + mkDerivation, 716929 + arrows, 716930 + base, 716931 + http-media, 716932 + http-types, 716933 + insert-ordered-containers, 716934 + lens, 716935 + mtl, 716936 + openapi3, 716937 + text, 716938 + webgear-core, 716939 + }: 716940 + mkDerivation { 716941 + pname = "webgear-openapi"; 716942 + version = "1.4.0"; 716943 + sha256 = "0pm0v20spryxdl63fgrpzqvjx98awncxmxak4z6ma8fxnxvq14cb"; 716944 + libraryHaskellDepends = [ 716945 + arrows 716946 + base 716947 + http-media 716948 + http-types 716949 + insert-ordered-containers 716950 + lens 716951 + mtl 716952 + openapi3 716953 + text 716954 + webgear-core 716955 + ]; 716956 + description = "Composable, type-safe library to build HTTP API servers"; 716957 + license = lib.licenses.mpl20; 716958 + hydraPlatforms = lib.platforms.none; 716959 + } 716960 + ) { }; 716961 + 715302 716962 "webgear-server" = callPackage ( 715303 716963 { 715304 716964 mkDerivation, ··· 715371 717031 } 715372 717032 ) { }; 715373 717033 717034 + "webgear-server_1_4_0" = callPackage ( 717035 + { 717036 + mkDerivation, 717037 + aeson, 717038 + arrows, 717039 + base, 717040 + base64-bytestring, 717041 + binary, 717042 + bytestring, 717043 + cookie, 717044 + http-api-data, 717045 + http-media, 717046 + http-types, 717047 + jose, 717048 + monad-time, 717049 + mtl, 717050 + QuickCheck, 717051 + quickcheck-instances, 717052 + resourcet, 717053 + tasty, 717054 + tasty-hunit, 717055 + tasty-quickcheck, 717056 + text, 717057 + text-conversions, 717058 + wai, 717059 + wai-extra, 717060 + webgear-core, 717061 + }: 717062 + mkDerivation { 717063 + pname = "webgear-server"; 717064 + version = "1.4.0"; 717065 + sha256 = "1453n5yga3880fzv7ziyy0sricgx4i7d18s2pg8idix3kj4r40xl"; 717066 + libraryHaskellDepends = [ 717067 + aeson 717068 + arrows 717069 + base 717070 + base64-bytestring 717071 + binary 717072 + bytestring 717073 + cookie 717074 + http-api-data 717075 + http-media 717076 + http-types 717077 + jose 717078 + monad-time 717079 + mtl 717080 + resourcet 717081 + text 717082 + text-conversions 717083 + wai 717084 + wai-extra 717085 + webgear-core 717086 + ]; 717087 + testHaskellDepends = [ 717088 + base 717089 + base64-bytestring 717090 + bytestring 717091 + http-types 717092 + QuickCheck 717093 + quickcheck-instances 717094 + tasty 717095 + tasty-hunit 717096 + tasty-quickcheck 717097 + text 717098 + wai 717099 + webgear-core 717100 + ]; 717101 + description = "Composable, type-safe library to build HTTP API servers"; 717102 + license = lib.licenses.mpl20; 717103 + hydraPlatforms = lib.platforms.none; 717104 + } 717105 + ) { }; 717106 + 715374 717107 "webgear-swagger" = callPackage ( 715375 717108 { 715376 717109 mkDerivation, ··· 715404 717137 } 715405 717138 ) { }; 715406 717139 717140 + "webgear-swagger_1_4_0" = callPackage ( 717141 + { 717142 + mkDerivation, 717143 + arrows, 717144 + base, 717145 + http-types, 717146 + insert-ordered-containers, 717147 + lens, 717148 + mtl, 717149 + swagger2, 717150 + text, 717151 + webgear-core, 717152 + }: 717153 + mkDerivation { 717154 + pname = "webgear-swagger"; 717155 + version = "1.4.0"; 717156 + sha256 = "0ca6smxgxa6ck0f914wj4ivrdpbqxy0v46di3lyl9kwnb0jia5vc"; 717157 + libraryHaskellDepends = [ 717158 + arrows 717159 + base 717160 + http-types 717161 + insert-ordered-containers 717162 + lens 717163 + mtl 717164 + swagger2 717165 + text 717166 + webgear-core 717167 + ]; 717168 + description = "Composable, type-safe library to build HTTP API servers"; 717169 + license = lib.licenses.mpl20; 717170 + hydraPlatforms = lib.platforms.none; 717171 + } 717172 + ) { }; 717173 + 715407 717174 "webgear-swagger-ui" = callPackage ( 715408 717175 { 715409 717176 mkDerivation, ··· 715430 717197 ]; 715431 717198 description = "Host swagger UI based on WebGear API specifications"; 715432 717199 license = lib.licenses.mpl20; 717200 + } 717201 + ) { }; 717202 + 717203 + "webgear-swagger-ui_1_4_0" = callPackage ( 717204 + { 717205 + mkDerivation, 717206 + base, 717207 + bytestring, 717208 + file-embed, 717209 + http-types, 717210 + text, 717211 + wai-app-static, 717212 + webgear-core, 717213 + }: 717214 + mkDerivation { 717215 + pname = "webgear-swagger-ui"; 717216 + version = "1.4.0"; 717217 + sha256 = "1qrf435pky7imwashh7f48z2agwjnyjw396w98jcg92k9cs6sisk"; 717218 + libraryHaskellDepends = [ 717219 + base 717220 + bytestring 717221 + file-embed 717222 + http-types 717223 + text 717224 + wai-app-static 717225 + webgear-core 717226 + ]; 717227 + description = "Host swagger UI based on WebGear API specifications"; 717228 + license = lib.licenses.mpl20; 717229 + hydraPlatforms = lib.platforms.none; 715433 717230 } 715434 717231 ) { }; 715435 717232 ··· 715760 717557 }: 715761 717558 mkDerivation { 715762 717559 pname = "webp"; 715763 - version = "0.1.1.0"; 715764 - sha256 = "0n1wb2xl1fb3y2wxhng7k39xb6pgc4l722f31zf0vgsnllk74kyr"; 717560 + version = "0.1.2.0"; 717561 + sha256 = "1yaza5a3y82kin58wjfbsf984h75fvhw6pq3nvcdpi0mwvv6z8sl"; 715765 717562 libraryHaskellDepends = [ 715766 717563 base 715767 717564 binary ··· 719002 720799 description = "Fast binary io-streams adapter"; 719003 720800 license = lib.licenses.bsd3; 719004 720801 hydraPlatforms = lib.platforms.none; 720802 + broken = true; 719005 720803 } 719006 720804 ) { }; 719007 720805 ··· 719170 720968 } 719171 720969 ) { }; 719172 720970 719173 - "witch_1_3_0_1" = callPackage ( 720971 + "witch_1_3_0_6" = callPackage ( 719174 720972 { 719175 720973 mkDerivation, 719176 720974 base, ··· 719185 720983 }: 719186 720984 mkDerivation { 719187 720985 pname = "witch"; 719188 - version = "1.3.0.1"; 719189 - sha256 = "0nbk4vxqj3ljxi0ybj02rc74ff32v6351mrj4sn9h1iw6lv81w2m"; 720986 + version = "1.3.0.6"; 720987 + sha256 = "03sx7514g375gc9fdn4439zp967g7ysq94xp7lki5rlbj8rjid1l"; 719190 720988 libraryHaskellDepends = [ 719191 720989 base 719192 720990 bytestring ··· 719985 721783 } 719986 721784 ) { }; 719987 721785 721786 + "wled-json_0_1_0_0" = callPackage ( 721787 + { 721788 + mkDerivation, 721789 + aeson, 721790 + barbies, 721791 + base, 721792 + bytestring, 721793 + deriving-aeson, 721794 + hspec, 721795 + hspec-discover, 721796 + http-conduit, 721797 + QuickCheck, 721798 + rhine, 721799 + }: 721800 + mkDerivation { 721801 + pname = "wled-json"; 721802 + version = "0.1.0.0"; 721803 + sha256 = "0xh243hacxi04bsaj6xmbdyixvz3n4x8jgiym9pn5fym547n6abk"; 721804 + isLibrary = true; 721805 + isExecutable = true; 721806 + libraryHaskellDepends = [ 721807 + aeson 721808 + barbies 721809 + base 721810 + bytestring 721811 + deriving-aeson 721812 + http-conduit 721813 + ]; 721814 + executableHaskellDepends = [ 721815 + base 721816 + rhine 721817 + ]; 721818 + testHaskellDepends = [ 721819 + aeson 721820 + base 721821 + hspec 721822 + QuickCheck 721823 + ]; 721824 + testToolDepends = [ hspec-discover ]; 721825 + description = "Convenient interface for interacting with WLED devices"; 721826 + license = lib.licenses.bsd3; 721827 + hydraPlatforms = lib.platforms.none; 721828 + } 721829 + ) { }; 721830 + 719988 721831 "wobsurv" = callPackage ( 719989 721832 { 719990 721833 mkDerivation, ··· 720817 722660 }: 720818 722661 mkDerivation { 720819 722662 pname = "wordify"; 720820 - version = "0.1.1.0"; 720821 - sha256 = "06wfa63l2nxk39c50zyacrwh48053z0mj114i08q0ydf95lv44w5"; 722663 + version = "0.5.0.0"; 722664 + sha256 = "1az84h8c3n92b6y5ccq8mar18cbv1hqb76p37irn4a5lv2l05lsj"; 720822 722665 isLibrary = true; 720823 722666 isExecutable = true; 720824 722667 libraryHaskellDepends = [ ··· 720842 722685 executableHaskellDepends = [ 720843 722686 array 720844 722687 base 722688 + bytestring 722689 + conduit 720845 722690 containers 720846 722691 errors 720847 722692 listsafe ··· 720851 722696 safe 720852 722697 semigroups 720853 722698 split 722699 + text 720854 722700 transformers 720855 722701 unordered-containers 720856 722702 ]; 720857 722703 testHaskellDepends = [ 720858 722704 array 720859 722705 base 722706 + bytestring 722707 + conduit 720860 722708 containers 720861 722709 directory 720862 722710 errors ··· 720873 722721 test-framework 720874 722722 test-framework-hunit 720875 722723 test-framework-quickcheck2 722724 + text 720876 722725 transformers 720877 722726 unordered-containers 720878 722727 ]; ··· 721614 723463 pname = "wraxml"; 721615 723464 version = "0.5"; 721616 723465 sha256 = "1zzslycz4hzg2l3pma0yfwdnqf08cw14b1ac5lzjm4z548bhzg0h"; 721617 - revision = "1"; 721618 - editedCabalFile = "0y0j420isc9cm1f2hl87fy33181w12cx0mn4m40ik8dld0npgbha"; 723466 + revision = "2"; 723467 + editedCabalFile = "183ih3x2jairigzasv6rz798czwndcbas26k4gb8vg5l4zw3fig3"; 721619 723468 isLibrary = true; 721620 723469 isExecutable = true; 721621 723470 libraryHaskellDepends = [ ··· 722882 724731 license = lib.licenses.bsd3; 722883 724732 hydraPlatforms = lib.platforms.none; 722884 724733 mainProgram = "wsjtx-dump-udp"; 724734 + broken = true; 722885 724735 } 722886 724736 ) { }; 722887 724737 ··· 723290 725140 } 723291 725141 ) { }; 723292 725142 723293 - "wuss_2_0_2_3" = callPackage ( 725143 + "wuss_2_0_2_5" = callPackage ( 723294 725144 { 723295 725145 mkDerivation, 723296 725146 base, ··· 723303 725153 }: 723304 725154 mkDerivation { 723305 725155 pname = "wuss"; 723306 - version = "2.0.2.3"; 723307 - sha256 = "1kvkvzlg034gd9jjgja12n5byy5psj59ksmqal2shy95fvcbi9dp"; 725156 + version = "2.0.2.5"; 725157 + sha256 = "1ipr57cndcn1wnvd0j4b0x0f271kzy1gg049qwi397r9flrmh157"; 723308 725158 libraryHaskellDepends = [ 723309 725159 base 723310 725160 bytestring ··· 724266 726116 }: 724267 726117 mkDerivation { 724268 726118 pname = "xcffib"; 724269 - version = "1.8.0"; 724270 - sha256 = "15jbxqmp12kraf7cnkw1wj6vxqw076wn0c1p22q5kpf8nzixrl3a"; 726119 + version = "1.9.0"; 726120 + sha256 = "11zy9lj2dka27s72d86lqdabpr4ij0yls6q33g2pqih6rhaqziya"; 724271 726121 isLibrary = true; 724272 726122 isExecutable = true; 724273 726123 libraryHaskellDepends = [ ··· 725615 727465 pname = "xml-basic"; 725616 727466 version = "0.1.3.3"; 725617 727467 sha256 = "0rqran7gvn4p0fb6pdlsmav5nhsdli8dxnrh0rclbr14rw6xhzjy"; 727468 + revision = "1"; 727469 + editedCabalFile = "1ry7i2n9j8bp5g32rf9sh8gb5a9rgwrd3hrfzvq86q307clkywmi"; 725618 727470 libraryHaskellDepends = [ 725619 727471 base 725620 727472 containers ··· 726875 728727 pname = "xml-syntax"; 726876 728728 version = "0.1.0.2"; 726877 728729 sha256 = "1x0q55481rhj3rvlapx3dv1nc8rl0l2lyv3jmxv939xckcmk54is"; 728730 + revision = "1"; 728731 + editedCabalFile = "1a5s8i9ak8wn7m8i7jw0vyn245qc7daa1z4zmv7ws524r2pzxrg6"; 726878 728732 libraryHaskellDepends = [ 726879 728733 array-builder 726880 728734 array-chunks ··· 726892 728746 ]; 726893 728747 description = "Parse XML from bytes"; 726894 728748 license = lib.licenses.bsd3; 726895 - hydraPlatforms = lib.platforms.none; 726896 - broken = true; 726897 728749 } 726898 728750 ) { }; 726899 728751 ··· 734671 736523 pname = "yesod-core"; 734672 736524 version = "1.6.27.0"; 734673 736525 sha256 = "104phivlhpb2b48cmvsj99x358z82xja9xz8i0mlhna40dcpx6cp"; 736526 + revision = "1"; 736527 + editedCabalFile = "1g96f40avs9cj2lsfbisa1bc53hdd4bmjicaj20xrvscngn4df62"; 734674 736528 libraryHaskellDepends = [ 734675 736529 aeson 734676 736530 attoparsec-aeson ··· 735303 737157 ]; 735304 737158 description = "Useful glue functions between the fb library and Yesod"; 735305 737159 license = lib.licenses.bsd3; 735306 - hydraPlatforms = lib.platforms.none; 735307 737160 } 735308 737161 ) { }; 735309 737162 ··· 742469 744322 ]; 742470 744323 description = "Operations on zip archives"; 742471 744324 license = lib.licenses.bsd3; 744325 + mainProgram = "haskell-zip-app"; 744326 + maintainers = [ lib.maintainers.mpscholten ]; 744327 + } 744328 + ) { }; 744329 + 744330 + "zip_2_2_0" = callPackage ( 744331 + { 744332 + mkDerivation, 744333 + base, 744334 + bytestring, 744335 + bzlib-conduit, 744336 + case-insensitive, 744337 + cereal, 744338 + conduit, 744339 + conduit-extra, 744340 + conduit-zstd, 744341 + containers, 744342 + digest, 744343 + directory, 744344 + dlist, 744345 + exceptions, 744346 + filepath, 744347 + hspec, 744348 + monad-control, 744349 + mtl, 744350 + QuickCheck, 744351 + resourcet, 744352 + temporary, 744353 + text, 744354 + time, 744355 + transformers, 744356 + transformers-base, 744357 + unix, 744358 + }: 744359 + mkDerivation { 744360 + pname = "zip"; 744361 + version = "2.2.0"; 744362 + sha256 = "0l83f3bkx9npmna637wy607vr20z3gx8isgmjh8yany6f3nb805d"; 744363 + isLibrary = true; 744364 + isExecutable = true; 744365 + libraryHaskellDepends = [ 744366 + base 744367 + bytestring 744368 + bzlib-conduit 744369 + case-insensitive 744370 + cereal 744371 + conduit 744372 + conduit-extra 744373 + conduit-zstd 744374 + containers 744375 + digest 744376 + directory 744377 + dlist 744378 + exceptions 744379 + filepath 744380 + monad-control 744381 + mtl 744382 + resourcet 744383 + text 744384 + time 744385 + transformers 744386 + transformers-base 744387 + unix 744388 + ]; 744389 + executableHaskellDepends = [ 744390 + base 744391 + filepath 744392 + ]; 744393 + testHaskellDepends = [ 744394 + base 744395 + bytestring 744396 + conduit 744397 + containers 744398 + directory 744399 + dlist 744400 + filepath 744401 + hspec 744402 + QuickCheck 744403 + temporary 744404 + text 744405 + time 744406 + ]; 744407 + description = "Operations on zip archives"; 744408 + license = lib.licenses.bsd3; 744409 + hydraPlatforms = lib.platforms.none; 742472 744410 mainProgram = "haskell-zip-app"; 742473 744411 maintainers = [ lib.maintainers.mpscholten ]; 742474 744412 }
+24 -19
pkgs/top-level/haskell-packages.nix
··· 23 23 # Binary GHCs 24 24 "ghc865Binary" 25 25 "ghc8107Binary" 26 + "ghc902Binary" 26 27 "ghc924Binary" 27 28 "ghc963Binary" 28 29 "ghc984Binary" ··· 91 92 llvmPackages = pkgs.llvmPackages_12; 92 93 }; 93 94 95 + ghc902Binary = callPackage ../development/compilers/ghc/9.0.2-binary.nix { 96 + llvmPackages = pkgs.llvmPackages_12; 97 + }; 98 + 94 99 ghc924Binary = callPackage ../development/compilers/ghc/9.2.4-binary.nix { 95 100 llvmPackages = pkgs.llvmPackages_12; 96 101 }; ··· 137 142 ghc90 = compiler.ghc902; 138 143 ghc928 = callPackage ../development/compilers/ghc/9.2.8.nix { 139 144 bootPkgs = 140 - if stdenv.buildPlatform.isPower64 && stdenv.buildPlatform.isLittleEndian then 141 - bb.packages.ghc810 145 + # GHC >= 9.0 removed the armv7l bindist 146 + if stdenv.buildPlatform.isAarch32 then 147 + bb.packages.ghc8107Binary 148 + # No suitable bindists for powerpc64le 149 + else if stdenv.buildPlatform.isPower64 && stdenv.buildPlatform.isLittleEndian then 150 + bb.packages.ghc902 142 151 else 143 - bb.packages.ghc8107Binary; 152 + bb.packages.ghc902Binary; 144 153 inherit (buildPackages.python311Packages) sphinx; # a distutils issue with 3.12 145 154 python3 = buildPackages.python311; # so that we don't have two of them 146 155 # Need to use apple's patched xattr until ··· 155 164 bootPkgs = 156 165 # Building with 9.2 is broken due to 157 166 # https://gitlab.haskell.org/ghc/ghc/-/issues/21914 158 - # Use 8.10 as a workaround where possible to keep bootstrap path short. 159 167 160 - # On ARM text won't build with GHC 8.10.* 161 - if stdenv.buildPlatform.isAarch then 162 - # TODO(@sternenseemann): package bindist 163 - bb.packages.ghc902 164 168 # No suitable bindists for powerpc64le 165 - else if stdenv.buildPlatform.isPower64 && stdenv.buildPlatform.isLittleEndian then 169 + if stdenv.buildPlatform.isPower64 && stdenv.buildPlatform.isLittleEndian then 166 170 bb.packages.ghc902 167 171 else 168 - bb.packages.ghc8107Binary; 172 + bb.packages.ghc902Binary; 169 173 inherit (buildPackages.python3Packages) sphinx; 170 174 # Need to use apple's patched xattr until 171 175 # https://github.com/xattr/xattr/issues/44 and ··· 179 183 bootPkgs = 180 184 # Building with 9.2 is broken due to 181 185 # https://gitlab.haskell.org/ghc/ghc/-/issues/21914 182 - # Use 8.10 as a workaround where possible to keep bootstrap path short. 183 186 184 - # On ARM text won't build with GHC 8.10.* 185 - if stdenv.buildPlatform.isAarch then 186 - # TODO(@sternenseemann): package bindist 187 - bb.packages.ghc902 188 187 # No suitable bindists for powerpc64le 189 - else if stdenv.buildPlatform.isPower64 && stdenv.buildPlatform.isLittleEndian then 188 + if stdenv.buildPlatform.isPower64 && stdenv.buildPlatform.isLittleEndian then 190 189 bb.packages.ghc902 191 190 else 192 - bb.packages.ghc8107Binary; 191 + bb.packages.ghc902Binary; 193 192 inherit (buildPackages.python3Packages) sphinx; 194 193 # Need to use apple's patched xattr until 195 194 # https://github.com/xattr/xattr/issues/44 and ··· 416 415 buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_15; 417 416 llvmPackages = pkgs.llvmPackages_15; 418 417 }; 419 - ghc910 = compiler.ghc9101; 418 + ghc910 = compiler.ghc9102; 420 419 ghc9121 = callPackage ../development/compilers/ghc/9.12.1.nix { 421 420 bootPkgs = 422 421 # No suitable bindist packaged yet ··· 521 520 compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.10.x.nix { }; 522 521 packageSetConfig = bootstrapPackageSet; 523 522 }; 523 + ghc902Binary = callPackage ../development/haskell-modules { 524 + buildHaskellPackages = bh.packages.ghc902Binary; 525 + ghc = bh.compiler.ghc902Binary; 526 + compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.0.x.nix { }; 527 + packageSetConfig = bootstrapPackageSet; 528 + }; 524 529 ghc924Binary = callPackage ../development/haskell-modules { 525 530 buildHaskellPackages = bh.packages.ghc924Binary; 526 531 ghc = bh.compiler.ghc924Binary; ··· 625 630 ghc = bh.compiler.ghc9102; 626 631 compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.10.x.nix { }; 627 632 }; 628 - ghc910 = packages.ghc9101; 633 + ghc910 = packages.ghc9102; 629 634 ghc9121 = callPackage ../development/haskell-modules { 630 635 buildHaskellPackages = bh.packages.ghc9121; 631 636 ghc = bh.compiler.ghc9121;
+13 -3
pkgs/top-level/release-haskell.nix
··· 345 345 nix-output-monitor 346 346 nix-script 347 347 nix-tree 348 - nixfmt 349 348 nixfmt-classic 350 349 nixfmt-rfc-style 351 350 nota ··· 393 392 inherit (pkgsPlatforms.elmPackages) 394 393 elm 395 394 elm-format 396 - elm-instrument 397 - elmi-to-json 398 395 ; 399 396 }; 400 397 ··· 515 512 ; 516 513 }; 517 514 515 + haskell.packages.ghc910 = { 516 + inherit (packagePlatforms pkgs.pkgsCross.aarch64-android-prebuilt.haskell.packages.ghc910) 517 + ghc 518 + hello 519 + microlens 520 + ; 521 + }; 522 + 518 523 haskell.packages.ghcHEAD = { 519 524 inherit (packagePlatforms pkgs.pkgsCross.ghcjs.haskell.packages.ghcHEAD) 520 525 ghc ··· 579 584 cabal2nix = released; 580 585 cabal2nix-unstable = released; 581 586 funcmp = released; 587 + git-annex = [ 588 + # for 9.10, test that using filepath (instead of filepath-bytestring) works. 589 + compilerNames.ghc9101 590 + compilerNames.ghc9102 591 + ]; 582 592 haskell-language-server = lib.subtractLists [ 583 593 # Support ceased as of 2.3.0.0 584 594 compilerNames.ghc8107