lol

Merge branch 'master' into auto-update/python3.10-pyruckus

authored by

Martin Weinelt and committed by
GitHub
4f57df1b 567fd7b1

+2085 -1633
+3 -2
.github/CODEOWNERS
··· 48 /pkgs/build-support/writers @lassulus @Profpatsch 49 50 # Nixpkgs documentation 51 /maintainers/scripts/db-to-md.sh @jtojnar @ryantm 52 /maintainers/scripts/doc @jtojnar @ryantm 53 /doc/build-aux/pandoc-filters @jtojnar ··· 256 /pkgs/development/go-packages @kalbasit @Mic92 @zowoq 257 258 # GNOME 259 - /pkgs/desktops/gnome @jtojnar @hedning 260 - /pkgs/desktops/gnome/extensions @piegamesde @jtojnar @hedning 261 262 # Cinnamon 263 /pkgs/desktops/cinnamon @mkg20001
··· 48 /pkgs/build-support/writers @lassulus @Profpatsch 49 50 # Nixpkgs documentation 51 + /doc @fricklerhandwerk 52 /maintainers/scripts/db-to-md.sh @jtojnar @ryantm 53 /maintainers/scripts/doc @jtojnar @ryantm 54 /doc/build-aux/pandoc-filters @jtojnar ··· 257 /pkgs/development/go-packages @kalbasit @Mic92 @zowoq 258 259 # GNOME 260 + /pkgs/desktops/gnome @jtojnar 261 + /pkgs/desktops/gnome/extensions @piegamesde @jtojnar 262 263 # Cinnamon 264 /pkgs/desktops/cinnamon @mkg20001
+3 -1
doc/languages-frameworks/coq.section.md
··· 5 The Coq derivation is overridable through the `coq.override overrides`, where overrides is an attribute set which contains the arguments to override. We recommend overriding either of the following 6 7 * `version` (optional, defaults to the latest version of Coq selected for nixpkgs, see `pkgs/top-level/coq-packages` to witness this choice), which follows the conventions explained in the `coqPackages` section below, 8 - * `customOCamlPackage` (optional, defaults to `null`, which lets Coq choose a version automatically), which can be set to any of the ocaml packages attribute of `ocaml-ng` (such as `ocaml-ng.ocamlPackages_4_10` which is the default for Coq 8.11 for example). 9 * `coq-version` (optional, defaults to the short version e.g. "8.10"), is a version number of the form "x.y" that indicates which Coq's version build behavior to mimic when using a source which is not a release. E.g. `coq.override { version = "d370a9d1328a4e1cdb9d02ee032f605a9d94ec7a"; coq-version = "8.10"; }`. 10 11 ## Coq packages attribute sets: `coqPackages` {#coq-packages-attribute-sets-coqpackages} 12
··· 5 The Coq derivation is overridable through the `coq.override overrides`, where overrides is an attribute set which contains the arguments to override. We recommend overriding either of the following 6 7 * `version` (optional, defaults to the latest version of Coq selected for nixpkgs, see `pkgs/top-level/coq-packages` to witness this choice), which follows the conventions explained in the `coqPackages` section below, 8 + * `customOCamlPackages` (optional, defaults to `null`, which lets Coq choose a version automatically), which can be set to any of the ocaml packages attribute of `ocaml-ng` (such as `ocaml-ng.ocamlPackages_4_10` which is the default for Coq 8.11 for example). 9 * `coq-version` (optional, defaults to the short version e.g. "8.10"), is a version number of the form "x.y" that indicates which Coq's version build behavior to mimic when using a source which is not a release. E.g. `coq.override { version = "d370a9d1328a4e1cdb9d02ee032f605a9d94ec7a"; coq-version = "8.10"; }`. 10 + 11 + The associated package set can be optained using `mkCoqPackages coq`, where `coq` is the derivation to use. 12 13 ## Coq packages attribute sets: `coqPackages` {#coq-packages-attribute-sets-coqpackages} 14
+70 -7
doc/stdenv/stdenv.chapter.md
··· 77 source $stdenv/setup 78 ``` 79 80 - to let `stdenv` set up the environment (e.g., process the `buildInputs`). If you want, you can still use `stdenv`’s generic builder: 81 82 ```bash 83 source $stdenv/setup ··· 698 699 ### The fixup phase {#ssec-fixup-phase} 700 701 - The fixup phase performs some (Nix-specific) post-processing actions on the files installed under `$out` by the install phase. The default `fixupPhase` does the following: 702 703 - It moves the `man/`, `doc/` and `info/` subdirectories of `$out` to `share/`. 704 - It strips libraries and executables of debug information. 705 - On Linux, it applies the `patchelf` command to ELF executables and libraries to remove unused directories from the `RPATH` in order to prevent unnecessary runtime dependencies. 706 - - It rewrites the interpreter paths of shell scripts to paths found in `PATH`. E.g., `/usr/bin/perl` will be rewritten to `/nix/store/some-perl/bin/perl` found in `PATH`. 707 708 #### Variables controlling the fixup phase {#variables-controlling-the-fixup-phase} 709 ··· 749 750 ##### `dontPatchShebangs` {#var-stdenv-dontPatchShebangs} 751 752 - If set, scripts starting with `#!` do not have their interpreter paths rewritten to paths in the Nix store. 753 754 ##### `dontPruneLibtoolFiles` {#var-stdenv-dontPruneLibtoolFiles} 755 ··· 983 984 The *existence* of setups hooks has long been documented and packages inside Nixpkgs are free to use this mechanism. Other packages, however, should not rely on these mechanisms not changing between Nixpkgs versions. Because of the existing issues with this system, there’s little benefit from mandating it be stable for any period of time. 985 986 - First, let’s cover some setup hooks that are part of Nixpkgs default stdenv. This means that they are run for every package built using `stdenv.mkDerivation`. Some of these are platform specific, so they may run on Linux but not Darwin or vice-versa. 987 988 ### `move-docs.sh` {#move-docs.sh} 989 ··· 999 1000 ### `patch-shebangs.sh` {#patch-shebangs.sh} 1001 1002 - This setup hook patches installed scripts to use the full path to the shebang interpreter. A shebang interpreter is the first commented line of a script telling the operating system which program will run the script (e.g `#!/bin/bash`). In Nix, we want an exact path to that interpreter to be used. This often replaces `/bin/sh` with a path in the Nix store. 1003 1004 ### `audit-tmpdir.sh` {#audit-tmpdir.sh} 1005 ··· 1316 1317 [^footnote-stdenv-ignored-build-platform]: The build platform is ignored because it is a mere implementation detail of the package satisfying the dependency: As a general programming principle, dependencies are always *specified* as interfaces, not concrete implementation. 1318 [^footnote-stdenv-native-dependencies-in-path]: Currently, this means for native builds all dependencies are put on the `PATH`. But in the future that may not be the case for sake of matching cross: the platforms would be assumed to be unique for native and cross builds alike, so only the `depsBuild*` and `nativeBuildInputs` would be added to the `PATH`. 1319 - [^footnote-stdenv-propagated-dependencies]: Nix itself already takes a package’s transitive dependencies into account, but this propagation ensures nixpkgs-specific infrastructure like setup hooks (mentioned above) also are run as if the propagated dependency. 1320 [^footnote-stdenv-find-inputs-location]: The `findInputs` function, currently residing in `pkgs/stdenv/generic/setup.sh`, implements the propagation logic. 1321 [^footnote-stdenv-sys-lib-search-path]: It clears the `sys_lib_*search_path` variables in the Libtool script to prevent Libtool from using libraries in `/usr/lib` and such. 1322 [^footnote-stdenv-build-time-guessing-impurity]: Eventually these will be passed building natively as well, to improve determinism: build-time guessing, as is done today, is a risk of impurity.
··· 77 source $stdenv/setup 78 ``` 79 80 + to let `stdenv` set up the environment (e.g. by resetting `PATH` and populating it from build inputs). If you want, you can still use `stdenv`’s generic builder: 81 82 ```bash 83 source $stdenv/setup ··· 698 699 ### The fixup phase {#ssec-fixup-phase} 700 701 + The fixup phase performs (Nix-specific) post-processing actions on the files installed under `$out` by the install phase. The default `fixupPhase` does the following: 702 703 - It moves the `man/`, `doc/` and `info/` subdirectories of `$out` to `share/`. 704 - It strips libraries and executables of debug information. 705 - On Linux, it applies the `patchelf` command to ELF executables and libraries to remove unused directories from the `RPATH` in order to prevent unnecessary runtime dependencies. 706 + - It rewrites the interpreter paths of shell scripts to paths found in `PATH`. E.g., `/usr/bin/perl` will be rewritten to `/nix/store/some-perl/bin/perl` found in `PATH`. See [](#patch-shebangs.sh) for details. 707 708 #### Variables controlling the fixup phase {#variables-controlling-the-fixup-phase} 709 ··· 749 750 ##### `dontPatchShebangs` {#var-stdenv-dontPatchShebangs} 751 752 + If set, scripts starting with `#!` do not have their interpreter paths rewritten to paths in the Nix store. See [](#patch-shebangs.sh) on how patching shebangs works. 753 754 ##### `dontPruneLibtoolFiles` {#var-stdenv-dontPruneLibtoolFiles} 755 ··· 983 984 The *existence* of setups hooks has long been documented and packages inside Nixpkgs are free to use this mechanism. Other packages, however, should not rely on these mechanisms not changing between Nixpkgs versions. Because of the existing issues with this system, there’s little benefit from mandating it be stable for any period of time. 985 986 + First, let’s cover some setup hooks that are part of Nixpkgs default `stdenv`. This means that they are run for every package built using `stdenv.mkDerivation` or when using a custom builder that has `source $stdenv/setup`. Some of these are platform specific, so they may run on Linux but not Darwin or vice-versa. 987 988 ### `move-docs.sh` {#move-docs.sh} 989 ··· 999 1000 ### `patch-shebangs.sh` {#patch-shebangs.sh} 1001 1002 + This setup hook patches installed scripts to add Nix store paths to their shebang interpreter as found in the build environment. The [shebang](https://en.wikipedia.org/wiki/Shebang_(Unix)) line tells a Unix-like operating system which interpreter to use to execute the script's contents. 1003 + 1004 + ::: note 1005 + The [generic builder][generic-builder] populates `PATH` from inputs of the derivation. 1006 + ::: 1007 + 1008 + [generic-builder]: https://github.com/NixOS/nixpkgs/blob/19d4f7dc485f74109bd66ef74231285ff797a823/pkgs/stdenv/generic/builder.sh 1009 + 1010 + #### Invocation {#patch-shebangs.sh-invocation} 1011 + 1012 + Multiple paths can be specified. 1013 + 1014 + ``` 1015 + patchShebangs [--build | --host] PATH... 1016 + ``` 1017 + 1018 + ##### Flags 1019 + 1020 + `--build` 1021 + : Look up commands available at build time 1022 + 1023 + `--host` 1024 + : Look up commands available at run time 1025 + 1026 + ##### Examples 1027 + 1028 + ```sh 1029 + patchShebangs --host /nix/store/<hash>-hello-1.0/bin 1030 + ``` 1031 + 1032 + ```sh 1033 + patchShebangs --build configure 1034 + ``` 1035 + 1036 + `#!/bin/sh` will be rewritten to `#!/nix/store/<hash>-some-bash/bin/sh`. 1037 + 1038 + `#!/usr/bin/env` gets special treatment: `#!/usr/bin/env python` is rewritten to `/nix/store/<hash>/bin/python`. 1039 + 1040 + Interpreter paths that point to a valid Nix store location are not changed. 1041 + 1042 + ::: note 1043 + A script file must be marked as executable, otherwise it will not be 1044 + considered. 1045 + ::: 1046 + 1047 + This mechanism ensures that the interpreter for a given script is always found and is exactly the one specified by the build. 1048 + 1049 + It can be disabled by setting [`dontPatchShebangs`](#var-stdenv-dontPatchShebangs): 1050 + 1051 + ```nix 1052 + stdenv.mkDerivation { 1053 + # ... 1054 + dontPatchShebangs = true; 1055 + # ... 1056 + } 1057 + ``` 1058 + 1059 + The file [`patch-shebangs.sh`][patch-shebangs.sh] defines the [`patchShebangs`][patchShebangs] function. It is used to implement [`patchShebangsAuto`][patchShebangsAuto], the [setup hook](#ssec-setup-hooks) that is registered to run during the [fixup phase](#ssec-fixup-phase) by default. 1060 + 1061 + If you need to run `patchShebangs` at build time, it must be called explicitly within [one of the build phases](#sec-stdenv-phases). 1062 + 1063 + [patch-shebangs.sh]: https://github.com/NixOS/nixpkgs/blob/19d4f7dc485f74109bd66ef74231285ff797a823/pkgs/build-support/setup-hooks/patch-shebangs.sh 1064 + [patchShebangs]: https://github.com/NixOS/nixpkgs/blob/19d4f7dc485f74109bd66ef74231285ff797a823/pkgs/build-support/setup-hooks/patch-shebangs.sh#L24-L105 1065 + [patchShebangsAuto]: https://github.com/NixOS/nixpkgs/blob/19d4f7dc485f74109bd66ef74231285ff797a823/pkgs/build-support/setup-hooks/patch-shebangs.sh#L107-L119 1066 1067 ### `audit-tmpdir.sh` {#audit-tmpdir.sh} 1068 ··· 1379 1380 [^footnote-stdenv-ignored-build-platform]: The build platform is ignored because it is a mere implementation detail of the package satisfying the dependency: As a general programming principle, dependencies are always *specified* as interfaces, not concrete implementation. 1381 [^footnote-stdenv-native-dependencies-in-path]: Currently, this means for native builds all dependencies are put on the `PATH`. But in the future that may not be the case for sake of matching cross: the platforms would be assumed to be unique for native and cross builds alike, so only the `depsBuild*` and `nativeBuildInputs` would be added to the `PATH`. 1382 + [^footnote-stdenv-propagated-dependencies]: Nix itself already takes a package’s transitive dependencies into account, but this propagation ensures nixpkgs-specific infrastructure like [setup hooks](#ssec-setup-hooks) also are run as if it were a propagated dependency. 1383 [^footnote-stdenv-find-inputs-location]: The `findInputs` function, currently residing in `pkgs/stdenv/generic/setup.sh`, implements the propagation logic. 1384 [^footnote-stdenv-sys-lib-search-path]: It clears the `sys_lib_*search_path` variables in the Libtool script to prevent Libtool from using libraries in `/usr/lib` and such. 1385 [^footnote-stdenv-build-time-guessing-impurity]: Eventually these will be passed building natively as well, to improve determinism: build-time guessing, as is done today, is a risk of impurity.
+49
nixos/modules/config/xdg/portals/lxqt.nix
···
··· 1 + { config, pkgs, lib, ... }: 2 + 3 + with lib; 4 + 5 + let 6 + cfg = config.xdg.portal.lxqt; 7 + 8 + in 9 + { 10 + meta = { 11 + maintainers = teams.lxqt.members; 12 + }; 13 + 14 + options.xdg.portal.lxqt = { 15 + enable = mkEnableOption '' 16 + the desktop portal for the LXQt desktop environment. 17 + 18 + This will add the <package>lxqt.xdg-desktop-portal-lxqt</package> 19 + package (with the extra Qt styles) into the 20 + <option>xdg.portal.extraPortals</option> option 21 + ''; 22 + 23 + styles = mkOption { 24 + type = types.listOf types.package; 25 + default = []; 26 + example = literalExpression ''[ 27 + pkgs.libsForQt5.qtstyleplugin-kvantum 28 + pkgs.breeze-qt5 29 + pkgs.qtcurve 30 + ]; 31 + ''; 32 + description = '' 33 + Extra Qt styles that will be available to the 34 + <package>lxqt.xdg-desktop-portal-lxqt</package>. 35 + ''; 36 + }; 37 + }; 38 + 39 + config = mkIf cfg.enable { 40 + xdg.portal = { 41 + enable = true; 42 + extraPortals = [ 43 + (pkgs.lxqt.xdg-desktop-portal-lxqt.override { extraQtStyles = cfg.styles; }) 44 + ]; 45 + }; 46 + 47 + environment.systemPackages = cfg.styles; 48 + }; 49 + }
+1
nixos/modules/module-list.nix
··· 10 ./config/xdg/mime.nix 11 ./config/xdg/portal.nix 12 ./config/xdg/portals/wlr.nix 13 ./config/appstream.nix 14 ./config/console.nix 15 ./config/xdg/sounds.nix
··· 10 ./config/xdg/mime.nix 11 ./config/xdg/portal.nix 12 ./config/xdg/portals/wlr.nix 13 + ./config/xdg/portals/lxqt.nix 14 ./config/appstream.nix 15 ./config/console.nix 16 ./config/xdg/sounds.nix
+3 -4
nixos/modules/services/networking/ddclient.nix
··· 13 foreground=YES 14 use=${cfg.use} 15 login=${cfg.username} 16 - password=${lib.optionalString (cfg.protocol == "nsupdate") "/run/${RuntimeDirectory}/ddclient.key"} 17 protocol=${cfg.protocol} 18 ${lib.optionalString (cfg.script != "") "script=${cfg.script}"} 19 ${lib.optionalString (cfg.server != "") "server=${cfg.server}"} ··· 33 ${lib.optionalString (cfg.configFile == null) (if (cfg.protocol == "nsupdate") then '' 34 install ${cfg.passwordFile} /run/${RuntimeDirectory}/ddclient.key 35 '' else if (cfg.passwordFile != null) then '' 36 - password=$(printf "%q" "$(head -n 1 "${cfg.passwordFile}")") 37 - sed -i "s|^password=$|password=$password|" /run/${RuntimeDirectory}/ddclient.conf 38 '' else '' 39 - sed -i '/^password=$/d' /run/${RuntimeDirectory}/ddclient.conf 40 '')} 41 ''; 42
··· 13 foreground=YES 14 use=${cfg.use} 15 login=${cfg.username} 16 + password=${if cfg.protocol == "nsupdate" then "/run/${RuntimeDirectory}/ddclient.key" else "@password_placeholder@"} 17 protocol=${cfg.protocol} 18 ${lib.optionalString (cfg.script != "") "script=${cfg.script}"} 19 ${lib.optionalString (cfg.server != "") "server=${cfg.server}"} ··· 33 ${lib.optionalString (cfg.configFile == null) (if (cfg.protocol == "nsupdate") then '' 34 install ${cfg.passwordFile} /run/${RuntimeDirectory}/ddclient.key 35 '' else if (cfg.passwordFile != null) then '' 36 + "${pkgs.replace-secret}/bin/replace-secret" "@password_placeholder@" "${cfg.passwordFile}" "/run/${RuntimeDirectory}/ddclient.conf" 37 '' else '' 38 + sed -i '/^password=@password_placeholder@$/d' /run/${RuntimeDirectory}/ddclient.conf 39 '')} 40 ''; 41
+1 -2
nixos/modules/services/x11/desktop-managers/lxqt.nix
··· 69 70 services.xserver.libinput.enable = mkDefault true; 71 72 - xdg.portal.enable = true; 73 - xdg.portal.extraPortals = [ pkgs.lxqt.xdg-desktop-portal-lxqt ]; 74 }; 75 76 }
··· 69 70 services.xserver.libinput.enable = mkDefault true; 71 72 + xdg.portal.lxqt.enable = true; 73 }; 74 75 }
+16 -6
nixos/modules/virtualisation/proxmox-image.nix
··· 127 name = "proxmox-${cfg.filenameSuffix}"; 128 postVM = let 129 # Build qemu with PVE's patch that adds support for the VMA format 130 - vma = pkgs.qemu_kvm.overrideAttrs ( super: { 131 patches = let 132 - rev = "cc707c362ea5c8d832aac270d1ffa7ac66a8908f"; 133 - path = "debian/patches/pve/0025-PVE-Backup-add-vma-backup-format-code.patch"; 134 vma-patch = pkgs.fetchpatch { 135 - url = "https://git.proxmox.com/?p=pve-qemu.git;a=blob_plain;hb=${rev};f=${path}"; 136 - sha256 = "1z467xnmfmry3pjy7p34psd5xdil9x0apnbvfz8qbj0bf9fgc8zf"; 137 }; 138 - in super.patches ++ [ vma-patch ]; 139 buildInputs = super.buildInputs ++ [ pkgs.libuuid ]; 140 }); 141 in 142 ''
··· 127 name = "proxmox-${cfg.filenameSuffix}"; 128 postVM = let 129 # Build qemu with PVE's patch that adds support for the VMA format 130 + vma = pkgs.qemu_kvm.overrideAttrs ( super: rec { 131 + 132 + # proxmox's VMA patch doesn't work with qemu 7.0 yet 133 + version = "6.2.0"; 134 + src = pkgs.fetchurl { 135 + url= "https://download.qemu.org/qemu-${version}.tar.xz"; 136 + hash = "sha256-aOFdjkWsVjJuC5pK+otJo9/oq6NIgiHQmMhGmLymW0U="; 137 + }; 138 + 139 patches = let 140 + rev = "b37b17c286da3d32945fbee8ee4fd97a418a50db"; 141 + path = "debian/patches/pve/0026-PVE-Backup-add-vma-backup-format-code.patch"; 142 vma-patch = pkgs.fetchpatch { 143 + url = "https://git.proxmox.com/?p=pve-qemu.git;a=blob_plain;h=${rev};f=${path}"; 144 + hash = "sha256-siuDWDUnM9Zq0/L2Faww3ELAOUHhVIHu5RAQn6L4Atc="; 145 }; 146 + in [ vma-patch ]; 147 + 148 buildInputs = super.buildInputs ++ [ pkgs.libuuid ]; 149 + 150 }); 151 in 152 ''
+23
nixos/release.nix
··· 221 222 ); 223 224 225 # A disk image that can be imported to Amazon EC2 and registered as an AMI 226 amazonImage = forMatchingSystems [ "x86_64-linux" "aarch64-linux" ] (system:
··· 221 222 ); 223 224 + # KVM image for proxmox in VMA format 225 + proxmoxImage = forMatchingSystems [ "x86_64-linux" ] (system: 226 + with import ./.. { inherit system; }; 227 + 228 + hydraJob ((import lib/eval-config.nix { 229 + inherit system; 230 + modules = [ 231 + ./modules/virtualisation/proxmox-image.nix 232 + ]; 233 + }).config.system.build.VMA) 234 + ); 235 + 236 + # LXC tarball for proxmox 237 + proxmoxLXC = forMatchingSystems [ "x86_64-linux" ] (system: 238 + with import ./.. { inherit system; }; 239 + 240 + hydraJob ((import lib/eval-config.nix { 241 + inherit system; 242 + modules = [ 243 + ./modules/virtualisation/proxmox-lxc.nix 244 + ]; 245 + }).config.system.build.tarball) 246 + ); 247 248 # A disk image that can be imported to Amazon EC2 and registered as an AMI 249 amazonImage = forMatchingSystems [ "x86_64-linux" "aarch64-linux" ] (system:
+9 -5
pkgs/applications/blockchains/btcpayserver/default.nix
··· 1 - { lib, buildDotnetModule, fetchFromGitHub, dotnetCorePackages 2 , altcoinSupport ? false }: 3 4 buildDotnetModule rec { 5 pname = "btcpayserver"; 6 - version = "1.5.4"; 7 8 src = fetchFromGitHub { 9 owner = pname; 10 repo = pname; 11 rev = "v${version}"; 12 - sha256 = "sha256-8GMk7xBMhml0X/8YRuN3FsEF2TWDxtb0eoP/cduKXNg="; 13 }; 14 15 projectFile = "BTCPayServer/BTCPayServer.csproj"; ··· 19 20 buildType = if altcoinSupport then "Altcoins-Release" else "Release"; 21 22 postFixup = '' 23 - mv $out/bin/{BTCPayServer,btcpayserver} 24 ''; 25 26 meta = with lib; { ··· 28 homepage = "https://btcpayserver.org"; 29 maintainers = with maintainers; [ kcalvinalvin erikarvstedt ]; 30 license = licenses.mit; 31 - platforms = platforms.linux; 32 }; 33 }
··· 1 + { lib 2 + , buildDotnetModule 3 + , fetchFromGitHub 4 + , dotnetCorePackages 5 , altcoinSupport ? false }: 6 7 buildDotnetModule rec { 8 pname = "btcpayserver"; 9 + version = "1.6.1"; 10 11 src = fetchFromGitHub { 12 owner = pname; 13 repo = pname; 14 rev = "v${version}"; 15 + sha256 = "sha256-lz42emfVBWas1A2YuEkjGAX8V1Qe2YAZMEgMYwIhhKM="; 16 }; 17 18 projectFile = "BTCPayServer/BTCPayServer.csproj"; ··· 22 23 buildType = if altcoinSupport then "Altcoins-Release" else "Release"; 24 25 + # macOS has a case-insensitive filesystem, so these two can be the same file 26 postFixup = '' 27 + mv $out/bin/{BTCPayServer,btcpayserver} || : 28 ''; 29 30 meta = with lib; { ··· 32 homepage = "https://btcpayserver.org"; 33 maintainers = with maintainers; [ kcalvinalvin erikarvstedt ]; 34 license = licenses.mit; 35 + platforms = platforms.linux ++ platforms.darwin; 36 }; 37 }
+85 -150
pkgs/applications/blockchains/btcpayserver/deps.nix
··· 31 }) 32 (fetchNuGet { 33 pname = "BTCPayServer.Lightning.All"; 34 - version = "1.3.8"; 35 - sha256 = "0xjhxxp8gc06ivbxjbmcacq4pq1c3l3b03pwd785kblxbh7d8zxj"; 36 }) 37 (fetchNuGet { 38 pname = "BTCPayServer.Lightning.Charge"; 39 - version = "1.3.4"; 40 - sha256 = "1ic2kz9mpgcjkmj6a0kscn3iqqp905a4768bn2fx454swpn2w6f9"; 41 }) 42 (fetchNuGet { 43 pname = "BTCPayServer.Lightning.CLightning"; 44 - version = "1.3.5"; 45 - sha256 = "0k9v28h0kvcbwxrjmalk14sna505li125i9aigcj6lddsg1d3xr7"; 46 }) 47 (fetchNuGet { 48 pname = "BTCPayServer.Lightning.Common"; 49 - version = "1.3.2"; 50 - sha256 = "119zplkc7iy9wc95iz1qnyi42fr99ar4hp8a11p708a22w941yi0"; 51 }) 52 (fetchNuGet { 53 pname = "BTCPayServer.Lightning.Common"; 54 - version = "1.3.4"; 55 - sha256 = "1bic7hxw731c0mkjgak0pwlrc7a4yqsr1xi7r3x04cz98nvdlqfc"; 56 }) 57 (fetchNuGet { 58 pname = "BTCPayServer.Lightning.Eclair"; 59 - version = "1.3.4"; 60 - sha256 = "0im3nzr7ki0nlr5miy7i7b9869vi7frq5g1idwfshqincpgps05g"; 61 }) 62 (fetchNuGet { 63 pname = "BTCPayServer.Lightning.LNBank"; 64 - version = "1.3.6"; 65 - sha256 = "08myhnk41l1zc3ih1h8l6583g4spgfgl1i65sjp02ab9v4i9lalw"; 66 }) 67 (fetchNuGet { 68 pname = "BTCPayServer.Lightning.LND"; 69 - version = "1.3.5"; 70 - sha256 = "1k5i4x382hx3zwczpjvzpxv4nmmlnnlaxcy018bz7b4hvd0l49wq"; 71 }) 72 (fetchNuGet { 73 pname = "BuildBundlerMinifier"; ··· 96 }) 97 (fetchNuGet { 98 pname = "DigitalRuby.ExchangeSharp"; 99 - version = "0.6.3"; 100 - sha256 = "1vb7ahafcd3lcbiiz552aisilwm1yq3j600gkf1wik8vhvsk02fs"; 101 }) 102 (fetchNuGet { 103 pname = "Fido2.AspNet"; ··· 181 }) 182 (fetchNuGet { 183 pname = "LNURL"; 184 - version = "0.0.18"; 185 - sha256 = "1dy0if091s8j0klv58v8xy0lnwyw0mxl89m09wkfcs0d4kzmjsrj"; 186 }) 187 (fetchNuGet { 188 pname = "MailKit"; 189 - version = "3.0.0"; 190 - sha256 = "0z6bf80zqqwlli844xkv7xzdip8lwrag5cpvx3vydzy6qg0xf2cg"; 191 }) 192 (fetchNuGet { 193 pname = "McMaster.NETCore.Plugins.Mvc"; ··· 201 }) 202 (fetchNuGet { 203 pname = "Microsoft.AspNet.SignalR.Client"; 204 - version = "2.3.0"; 205 - sha256 = "1xyj8b88bc6sc7fxgqyalzfmlfgbagfk7adyk29if9hr8ki9bic4"; 206 }) 207 (fetchNuGet { 208 pname = "Microsoft.AspNet.WebApi.Client"; ··· 211 }) 212 (fetchNuGet { 213 pname = "Microsoft.AspNet.WebApi.Client"; 214 - version = "5.2.8"; 215 - sha256 = "1dbwdbxr6npyc82zwl0g9bhifkpcqfzyhx1ihd8rzcmzprw70yfj"; 216 }) 217 (fetchNuGet { 218 pname = "Microsoft.AspNetCore.Connections.Abstractions"; ··· 801 }) 802 (fetchNuGet { 803 pname = "Microsoft.Win32.Primitives"; 804 - version = "4.0.1"; 805 - sha256 = "1n8ap0cmljbqskxpf8fjzn7kh1vvlndsa75k01qig26mbw97k2q7"; 806 - }) 807 - (fetchNuGet { 808 - pname = "Microsoft.Win32.Primitives"; 809 version = "4.3.0"; 810 sha256 = "0j0c1wj4ndj21zsgivsc24whiya605603kxrbiw6wkfdync464wq"; 811 }) 812 (fetchNuGet { 813 pname = "MimeKit"; 814 - version = "3.0.0"; 815 - sha256 = "1ccds2g2cr3xficahq5i3i049nlzv2075x8yc24kwz3v1wyw458s"; 816 }) 817 (fetchNuGet { 818 pname = "MySqlConnector"; ··· 906 }) 907 (fetchNuGet { 908 pname = "NicolasDorier.RateLimits"; 909 - version = "1.1.0"; 910 - sha256 = "06cajxi8wnrxfwqfnk98avphwiyvg1fw428bd42lqjgq9k414rk9"; 911 }) 912 (fetchNuGet { 913 pname = "NicolasDorier.StandardConfiguration"; ··· 916 }) 917 (fetchNuGet { 918 pname = "NLog"; 919 - version = "4.5.10"; 920 - sha256 = "0d4yqxrhqn2k36h3v1f5pn6qqlagbzg67v6gvxqhz3s4zyc3b8rg"; 921 }) 922 (fetchNuGet { 923 pname = "Npgsql.EntityFrameworkCore.PostgreSQL"; ··· 1015 sha256 = "18pzfdlwsg2nb1jjjjzyb5qlgy6xjxzmhnfaijq5s2jw3cm3ab97"; 1016 }) 1017 (fetchNuGet { 1018 - pname = "runtime.native.System.Security.Cryptography"; 1019 - version = "4.0.0"; 1020 - sha256 = "0k57aa2c3b10wl3hfqbgrl7xq7g8hh3a3ir44b31dn5p61iiw3z9"; 1021 - }) 1022 - (fetchNuGet { 1023 pname = "runtime.native.System"; 1024 version = "4.0.0"; 1025 sha256 = "1ppk69xk59ggacj9n7g6fyxvzmk1g5p4fkijm0d7xqfkig98qrkf"; ··· 1076 }) 1077 (fetchNuGet { 1078 pname = "Selenium.WebDriver.ChromeDriver"; 1079 - version = "101.0.4951.4100"; 1080 - sha256 = "0iqkcmfgzvir4h24qz3namgv7pc14hancb26gqa9j3izb1813ndf"; 1081 }) 1082 (fetchNuGet { 1083 pname = "Selenium.WebDriver"; ··· 1130 sha256 = "0z0ib82w9b229a728bbyhzc2hnlbl0ki7nnvmgnv3l741f2vr4i6"; 1131 }) 1132 (fetchNuGet { 1133 pname = "SQLitePCLRaw.bundle_e_sqlite3"; 1134 version = "2.0.6"; 1135 sha256 = "1ip0a653dx5cqybxg27zyz5ps31f2yz50g3jvz3vx39isx79gax3"; ··· 1151 }) 1152 (fetchNuGet { 1153 pname = "SSH.NET"; 1154 - version = "2016.1.0"; 1155 - sha256 = "0q08bf9sdf1rf9763z4bk2mr6z381iybm73823scmq9qcpr2jk4d"; 1156 }) 1157 (fetchNuGet { 1158 pname = "SshNet.Security.Cryptography"; 1159 - version = "1.2.0"; 1160 - sha256 = "1xlj8bjavpjk6lrkypk66cxpf2xa31wv73ymrk34d72f05z0xrg0"; 1161 }) 1162 (fetchNuGet { 1163 pname = "System.AppContext"; ··· 1211 }) 1212 (fetchNuGet { 1213 pname = "System.Configuration.ConfigurationManager"; 1214 - version = "4.5.0"; 1215 - sha256 = "1frpy24mn6q7hgwayj98kkx89z861f5dmia4j6zc0a2ydgx8x02c"; 1216 }) 1217 (fetchNuGet { 1218 pname = "System.Console"; ··· 1250 sha256 = "0in3pic3s2ddyibi8cvgl102zmvp9r9mchh82ns9f0ms4basylw1"; 1251 }) 1252 (fetchNuGet { 1253 - pname = "System.Diagnostics.TraceSource"; 1254 - version = "4.0.0"; 1255 - sha256 = "1mc7r72xznczzf6mz62dm8xhdi14if1h8qgx353xvhz89qyxsa3h"; 1256 - }) 1257 - (fetchNuGet { 1258 pname = "System.Diagnostics.Tracing"; 1259 version = "4.1.0"; 1260 sha256 = "1d2r76v1x610x61ahfpigda89gd13qydz6vbwzhpqlyvq8jj6394"; ··· 1265 sha256 = "1m3bx6c2s958qligl67q7grkwfz3w53hpy7nc97mh6f7j5k168c4"; 1266 }) 1267 (fetchNuGet { 1268 pname = "System.Dynamic.Runtime"; 1269 version = "4.0.11"; 1270 sha256 = "1pla2dx8gkidf7xkciig6nifdsb494axjvzvann8g2lp3dbqasm9"; 1271 }) 1272 (fetchNuGet { 1273 pname = "System.Formats.Asn1"; 1274 - version = "5.0.0"; 1275 - sha256 = "1axc8z0839yvqi2cb63l73l6d9j6wd20lsbdymwddz9hvrsgfwpn"; 1276 }) 1277 (fetchNuGet { 1278 pname = "System.Globalization.Calendars"; ··· 1396 }) 1397 (fetchNuGet { 1398 pname = "System.Net.NameResolution"; 1399 - version = "4.0.0"; 1400 - sha256 = "0dj3pvpv069nyia28gkl4a0fb7q33hbxz2dg25qvpah3l7pbl0qh"; 1401 - }) 1402 - (fetchNuGet { 1403 - pname = "System.Net.NameResolution"; 1404 version = "4.3.0"; 1405 sha256 = "15r75pwc0rm3vvwsn8rvm2krf929mjfwliv0mpicjnii24470rkq"; 1406 }) 1407 (fetchNuGet { 1408 pname = "System.Net.Primitives"; 1409 - version = "4.0.11"; 1410 - sha256 = "10xzzaynkzkakp7jai1ik3r805zrqjxiz7vcagchyxs2v26a516r"; 1411 - }) 1412 - (fetchNuGet { 1413 - pname = "System.Net.Primitives"; 1414 version = "4.3.0"; 1415 sha256 = "0c87k50rmdgmxx7df2khd9qj7q35j9rzdmm2572cc55dygmdk3ii"; 1416 }) ··· 1421 }) 1422 (fetchNuGet { 1423 pname = "System.Net.Sockets"; 1424 - version = "4.1.0"; 1425 - sha256 = "1385fvh8h29da5hh58jm1v78fzi9fi5vj93vhlm2kvqpfahvpqls"; 1426 - }) 1427 - (fetchNuGet { 1428 - pname = "System.Net.Sockets"; 1429 version = "4.3.0"; 1430 sha256 = "1ssa65k6chcgi6mfmzrznvqaxk8jp0gvl77xhf1hbzakjnpxspla"; 1431 }) ··· 1453 pname = "System.ObjectModel"; 1454 version = "4.3.0"; 1455 sha256 = "191p63zy5rpqx7dnrb3h7prvgixmk168fhvvkkvhlazncf8r3nc2"; 1456 }) 1457 (fetchNuGet { 1458 pname = "System.Reflection.Emit.ILGeneration"; ··· 1621 }) 1622 (fetchNuGet { 1623 pname = "System.Runtime.Numerics"; 1624 - version = "4.0.1"; 1625 - sha256 = "1y308zfvy0l5nrn46mqqr4wb4z1xk758pkk8svbz8b5ij7jnv4nn"; 1626 - }) 1627 - (fetchNuGet { 1628 - pname = "System.Runtime.Numerics"; 1629 version = "4.3.0"; 1630 sha256 = "19rav39sr5dky7afygh309qamqqmi9kcwvz3i0c5700v0c5cg61z"; 1631 }) ··· 1646 }) 1647 (fetchNuGet { 1648 pname = "System.Security.AccessControl"; 1649 - version = "4.5.0"; 1650 - sha256 = "1wvwanz33fzzbnd2jalar0p0z3x0ba53vzx1kazlskp7pwyhlnq0"; 1651 - }) 1652 - (fetchNuGet { 1653 - pname = "System.Security.Claims"; 1654 - version = "4.0.1"; 1655 - sha256 = "03dw0ls49bvsrffgwycyifjgz0qzr9r85skqhdyhfd51fqf398n6"; 1656 }) 1657 (fetchNuGet { 1658 pname = "System.Security.Claims"; ··· 1661 }) 1662 (fetchNuGet { 1663 pname = "System.Security.Cryptography.Algorithms"; 1664 - version = "4.2.0"; 1665 - sha256 = "148s9g5dgm33ri7dnh19s4lgnlxbpwvrw2jnzllq2kijj4i4vs85"; 1666 - }) 1667 - (fetchNuGet { 1668 - pname = "System.Security.Cryptography.Algorithms"; 1669 version = "4.3.0"; 1670 sha256 = "03sq183pfl5kp7gkvq77myv7kbpdnq3y0xj7vi4q1kaw54sny0ml"; 1671 }) ··· 1678 pname = "System.Security.Cryptography.Cng"; 1679 version = "4.7.0"; 1680 sha256 = "00797sqbba8lys486ifxblz9j52m29kidclvmqpk531820k55x9j"; 1681 - }) 1682 - (fetchNuGet { 1683 - pname = "System.Security.Cryptography.Cng"; 1684 - version = "5.0.0"; 1685 - sha256 = "06hkx2za8jifpslkh491dfwzm5dxrsyxzj5lsc0achb6yzg4zqlw"; 1686 }) 1687 (fetchNuGet { 1688 pname = "System.Security.Cryptography.Csp"; ··· 1691 }) 1692 (fetchNuGet { 1693 pname = "System.Security.Cryptography.Encoding"; 1694 - version = "4.0.0"; 1695 - sha256 = "0a8y1a5wkmpawc787gfmnrnbzdgxmx1a14ax43jf3rj9gxmy3vk4"; 1696 - }) 1697 - (fetchNuGet { 1698 - pname = "System.Security.Cryptography.Encoding"; 1699 version = "4.3.0"; 1700 sha256 = "1jr6w70igqn07k5zs1ph6xja97hxnb3mqbspdrff6cvssgrixs32"; 1701 }) ··· 1706 }) 1707 (fetchNuGet { 1708 pname = "System.Security.Cryptography.Pkcs"; 1709 - version = "5.0.0"; 1710 - sha256 = "0hb2mndac3xrw3786bsjxjfh19bwnr991qib54k6wsqjhjyyvbwj"; 1711 - }) 1712 - (fetchNuGet { 1713 - pname = "System.Security.Cryptography.Primitives"; 1714 - version = "4.0.0"; 1715 - sha256 = "0i7cfnwph9a10bm26m538h5xcr8b36jscp9sy1zhgifksxz4yixh"; 1716 }) 1717 (fetchNuGet { 1718 pname = "System.Security.Cryptography.Primitives"; ··· 1721 }) 1722 (fetchNuGet { 1723 pname = "System.Security.Cryptography.ProtectedData"; 1724 - version = "4.5.0"; 1725 - sha256 = "11qlc8q6b7xlspayv07718ibzvlj6ddqqxkvcbxv5b24d5kzbrb7"; 1726 }) 1727 (fetchNuGet { 1728 pname = "System.Security.Cryptography.X509Certificates"; ··· 1731 }) 1732 (fetchNuGet { 1733 pname = "System.Security.Permissions"; 1734 - version = "4.5.0"; 1735 - sha256 = "192ww5rm3c9mirxgl1nzyrwd18am3izqls0hzm0fvcdjl5grvbhm"; 1736 - }) 1737 - (fetchNuGet { 1738 - pname = "System.Security.Principal.Windows"; 1739 - version = "4.0.0"; 1740 - sha256 = "1d3vc8i0zss9z8p4qprls4gbh7q4218l9845kclx7wvw41809k6z"; 1741 }) 1742 (fetchNuGet { 1743 pname = "System.Security.Principal.Windows"; ··· 1745 sha256 = "00a0a7c40i3v4cb20s2cmh9csb5jv2l0frvnlzyfxh848xalpdwr"; 1746 }) 1747 (fetchNuGet { 1748 - pname = "System.Security.Principal.Windows"; 1749 - version = "4.5.0"; 1750 - sha256 = "0rmj89wsl5yzwh0kqjgx45vzf694v9p92r4x4q6yxldk1cv1hi86"; 1751 - }) 1752 - (fetchNuGet { 1753 - pname = "System.Security.Principal"; 1754 - version = "4.0.1"; 1755 - sha256 = "1nbzdfqvzzbgsfdd5qsh94d7dbg2v4sw0yx6himyn52zf8z6007p"; 1756 - }) 1757 - (fetchNuGet { 1758 pname = "System.Security.Principal"; 1759 version = "4.3.0"; 1760 sha256 = "12cm2zws06z4lfc4dn31iqv7072zyi4m910d4r6wm8yx85arsfxf"; ··· 1805 sha256 = "1si2my1g0q0qv1hiqnji4xh9wd05qavxnzj9dwgs23iqvgjky0gl"; 1806 }) 1807 (fetchNuGet { 1808 pname = "System.Text.RegularExpressions"; 1809 version = "4.1.0"; 1810 sha256 = "1mw7vfkkyd04yn2fbhm38msk7dz2xwvib14ygjsb8dq2lcvr18y7"; ··· 1850 sha256 = "134z3v9abw3a6jsw17xl3f6hqjpak5l682k2vz39spj4kmydg6k7"; 1851 }) 1852 (fetchNuGet { 1853 - pname = "System.Threading.Thread"; 1854 - version = "4.0.0"; 1855 - sha256 = "1gxxm5fl36pjjpnx1k688dcw8m9l7nmf802nxis6swdaw8k54jzc"; 1856 - }) 1857 - (fetchNuGet { 1858 - pname = "System.Threading.ThreadPool"; 1859 - version = "4.0.10"; 1860 - sha256 = "0fdr61yjcxh5imvyf93n2m3n5g9pp54bnw2l1d2rdl9z6dd31ypx"; 1861 - }) 1862 - (fetchNuGet { 1863 pname = "System.Threading.ThreadPool"; 1864 version = "4.3.0"; 1865 sha256 = "027s1f4sbx0y1xqw2irqn6x161lzj8qwvnh2gn78ciiczdv10vf1"; ··· 1885 sha256 = "0rw9wfamvhayp5zh3j7p1yfmx9b5khbf4q50d8k5rk993rskfd34"; 1886 }) 1887 (fetchNuGet { 1888 pname = "System.Xml.ReaderWriter"; 1889 version = "4.0.11"; 1890 sha256 = "0c6ky1jk5ada9m94wcadih98l6k1fvf6vi7vhn1msjixaha419l5"; ··· 1903 pname = "System.Xml.XDocument"; 1904 version = "4.3.0"; 1905 sha256 = "08h8fm4l77n0nd4i4fk2386y809bfbwqb7ih9d7564ifcxr5ssxd"; 1906 - }) 1907 - (fetchNuGet { 1908 - pname = "System.Xml.XmlDocument"; 1909 - version = "4.0.1"; 1910 - sha256 = "0ihsnkvyc76r4dcky7v3ansnbyqjzkbyyia0ir5zvqirzan0bnl1"; 1911 - }) 1912 - (fetchNuGet { 1913 - pname = "System.Xml.XPath.XmlDocument"; 1914 - version = "4.0.1"; 1915 - sha256 = "0l7yljgif41iv5g56l3nxy97hzzgck2a7rhnfnljhx9b0ry41bvc"; 1916 - }) 1917 - (fetchNuGet { 1918 - pname = "System.Xml.XPath"; 1919 - version = "4.0.1"; 1920 - sha256 = "0fjqgb6y66d72d5n8qq1h213d9nv2vi8mpv8p28j3m9rccmsh04m"; 1921 }) 1922 (fetchNuGet { 1923 pname = "Text.Analyzers";
··· 31 }) 32 (fetchNuGet { 33 pname = "BTCPayServer.Lightning.All"; 34 + version = "1.3.12"; 35 + sha256 = "005nl3sl3awdpwnvdsww8kg4ysj804459a5yip283fy7a29xagyh"; 36 }) 37 (fetchNuGet { 38 pname = "BTCPayServer.Lightning.Charge"; 39 + version = "1.3.8"; 40 + sha256 = "1j8ljhkw80z44hb08iyqz342fghcnnxw3bq27g49x41gc784ziz4"; 41 }) 42 (fetchNuGet { 43 pname = "BTCPayServer.Lightning.CLightning"; 44 + version = "1.3.9"; 45 + sha256 = "1cflyxywfil4rxy0vxvp24hlz6xy8g03rjgb12sc76jxwyqp5anq"; 46 }) 47 (fetchNuGet { 48 pname = "BTCPayServer.Lightning.Common"; 49 + version = "1.3.7"; 50 + sha256 = "1hsn51zx34fswjph1dgplwj92045d4ymallryjxbm5gl1wgnvqvz"; 51 }) 52 (fetchNuGet { 53 pname = "BTCPayServer.Lightning.Common"; 54 + version = "1.3.8"; 55 + sha256 = "0g7wbsfy1ydrpxzycbq148f8gsm7d09nvzzz5kliqlg3q88wifaq"; 56 }) 57 (fetchNuGet { 58 pname = "BTCPayServer.Lightning.Eclair"; 59 + version = "1.3.8"; 60 + sha256 = "0lhsigcdf65fdsxgv6yy857v2l7c1kmzypj1b017gldnrhflrnri"; 61 }) 62 (fetchNuGet { 63 pname = "BTCPayServer.Lightning.LNBank"; 64 + version = "1.3.10"; 65 + sha256 = "0yq02smwa6a4grx1cfwij4nxlkz4grpb3ixr82an4f57zv4dzv6b"; 66 }) 67 (fetchNuGet { 68 pname = "BTCPayServer.Lightning.LND"; 69 + version = "1.3.9"; 70 + sha256 = "1115lamgg7802dmxlak13fbiy0b244gmsrs80jrba3jxmiplgj4r"; 71 + }) 72 + (fetchNuGet { 73 + pname = "BTCPayServer.Lightning.LNDhub"; 74 + version = "1.0.2"; 75 + sha256 = "1jyn0r9qm9r8szmzx0g0ja2k93r8adi1vn100c8d9wpnr83xwj03"; 76 }) 77 (fetchNuGet { 78 pname = "BuildBundlerMinifier"; ··· 101 }) 102 (fetchNuGet { 103 pname = "DigitalRuby.ExchangeSharp"; 104 + version = "1.0.2"; 105 + sha256 = "1l6g61l18jqnc0h8rpsilfjjnyapm4ld8wcsr8bp0hp34p6wpidm"; 106 }) 107 (fetchNuGet { 108 pname = "Fido2.AspNet"; ··· 186 }) 187 (fetchNuGet { 188 pname = "LNURL"; 189 + version = "0.0.24"; 190 + sha256 = "1hqa95gbcis03c0m5kwl7zzn26kwv1my94yq96766qp0rnl6c4lw"; 191 }) 192 (fetchNuGet { 193 pname = "MailKit"; 194 + version = "3.3.0"; 195 + sha256 = "18l0jkrc4d553kiw4vdjzzpafpvsgjs1n19kjbi8isnhzidmsl4j"; 196 }) 197 (fetchNuGet { 198 pname = "McMaster.NETCore.Plugins.Mvc"; ··· 206 }) 207 (fetchNuGet { 208 pname = "Microsoft.AspNet.SignalR.Client"; 209 + version = "2.4.3"; 210 + sha256 = "1whxcmxydcxjkw84sqk5idd406v3ia0xj2m4ia4b6wqbvkdqn7rf"; 211 }) 212 (fetchNuGet { 213 pname = "Microsoft.AspNet.WebApi.Client"; ··· 216 }) 217 (fetchNuGet { 218 pname = "Microsoft.AspNet.WebApi.Client"; 219 + version = "5.2.9"; 220 + sha256 = "1sy1q36bm9fz3gi780w4jgysw3dwaz2f3a5gcn6jxw1gkmdasb08"; 221 }) 222 (fetchNuGet { 223 pname = "Microsoft.AspNetCore.Connections.Abstractions"; ··· 806 }) 807 (fetchNuGet { 808 pname = "Microsoft.Win32.Primitives"; 809 version = "4.3.0"; 810 sha256 = "0j0c1wj4ndj21zsgivsc24whiya605603kxrbiw6wkfdync464wq"; 811 }) 812 (fetchNuGet { 813 + pname = "Microsoft.Win32.SystemEvents"; 814 + version = "6.0.0"; 815 + sha256 = "0c6pcj088g1yd1vs529q3ybgsd2vjlk5y1ic6dkmbhvrp5jibl9p"; 816 + }) 817 + (fetchNuGet { 818 pname = "MimeKit"; 819 + version = "3.3.0"; 820 + sha256 = "0rslxmwlv6w2fssv0mz2v6qi6zg1v0lmly6hvh258xqdfxrhn0y8"; 821 }) 822 (fetchNuGet { 823 pname = "MySqlConnector"; ··· 911 }) 912 (fetchNuGet { 913 pname = "NicolasDorier.RateLimits"; 914 + version = "1.2.3"; 915 + sha256 = "197cqb0yxd2hfxyikxw53m4lmxh87l9sqrr8xihg1j0knvwzgyyp"; 916 }) 917 (fetchNuGet { 918 pname = "NicolasDorier.StandardConfiguration"; ··· 921 }) 922 (fetchNuGet { 923 pname = "NLog"; 924 + version = "4.7.14"; 925 + sha256 = "1pjkxlf20vrh9b8r6wzay1563fdhhxslxb7acdkn5ss8gvd2m23n"; 926 }) 927 (fetchNuGet { 928 pname = "Npgsql.EntityFrameworkCore.PostgreSQL"; ··· 1020 sha256 = "18pzfdlwsg2nb1jjjjzyb5qlgy6xjxzmhnfaijq5s2jw3cm3ab97"; 1021 }) 1022 (fetchNuGet { 1023 pname = "runtime.native.System"; 1024 version = "4.0.0"; 1025 sha256 = "1ppk69xk59ggacj9n7g6fyxvzmk1g5p4fkijm0d7xqfkig98qrkf"; ··· 1076 }) 1077 (fetchNuGet { 1078 pname = "Selenium.WebDriver.ChromeDriver"; 1079 + version = "103.0.5060.5300"; 1080 + sha256 = "1dr1d4nx2qb6is29p3rsmp254v1v6c24pdsx7kyj1yamh89sqd5k"; 1081 }) 1082 (fetchNuGet { 1083 pname = "Selenium.WebDriver"; ··· 1130 sha256 = "0z0ib82w9b229a728bbyhzc2hnlbl0ki7nnvmgnv3l741f2vr4i6"; 1131 }) 1132 (fetchNuGet { 1133 + pname = "SocketIOClient"; 1134 + version = "3.0.6"; 1135 + sha256 = "0yvvwyg05sjlam8841kxy1qv6bc7a1kykdk5jdy2jvw89d40k31d"; 1136 + }) 1137 + (fetchNuGet { 1138 pname = "SQLitePCLRaw.bundle_e_sqlite3"; 1139 version = "2.0.6"; 1140 sha256 = "1ip0a653dx5cqybxg27zyz5ps31f2yz50g3jvz3vx39isx79gax3"; ··· 1156 }) 1157 (fetchNuGet { 1158 pname = "SSH.NET"; 1159 + version = "2020.0.2"; 1160 + sha256 = "18mq7jjdbzc7qcsh5wg2j0gd39qbnrxkn811cy8wrdvki0pfi0sm"; 1161 }) 1162 (fetchNuGet { 1163 pname = "SshNet.Security.Cryptography"; 1164 + version = "1.3.0"; 1165 + sha256 = "1y9r9c2dn81l1l4nn976fwf0by83qbvb0sp1hw7m19pqz7pmaflh"; 1166 }) 1167 (fetchNuGet { 1168 pname = "System.AppContext"; ··· 1216 }) 1217 (fetchNuGet { 1218 pname = "System.Configuration.ConfigurationManager"; 1219 + version = "6.0.0"; 1220 + sha256 = "0sqapr697jbb4ljkq46msg0xx1qpmc31ivva6llyz2wzq3mpmxbw"; 1221 }) 1222 (fetchNuGet { 1223 pname = "System.Console"; ··· 1255 sha256 = "0in3pic3s2ddyibi8cvgl102zmvp9r9mchh82ns9f0ms4basylw1"; 1256 }) 1257 (fetchNuGet { 1258 pname = "System.Diagnostics.Tracing"; 1259 version = "4.1.0"; 1260 sha256 = "1d2r76v1x610x61ahfpigda89gd13qydz6vbwzhpqlyvq8jj6394"; ··· 1265 sha256 = "1m3bx6c2s958qligl67q7grkwfz3w53hpy7nc97mh6f7j5k168c4"; 1266 }) 1267 (fetchNuGet { 1268 + pname = "System.Drawing.Common"; 1269 + version = "6.0.0"; 1270 + sha256 = "02n8rzm58dac2np8b3xw8ychbvylja4nh6938l5k2fhyn40imlgz"; 1271 + }) 1272 + (fetchNuGet { 1273 pname = "System.Dynamic.Runtime"; 1274 version = "4.0.11"; 1275 sha256 = "1pla2dx8gkidf7xkciig6nifdsb494axjvzvann8g2lp3dbqasm9"; 1276 }) 1277 (fetchNuGet { 1278 pname = "System.Formats.Asn1"; 1279 + version = "6.0.0"; 1280 + sha256 = "1vvr7hs4qzjqb37r0w1mxq7xql2b17la63jwvmgv65s1hj00g8r9"; 1281 }) 1282 (fetchNuGet { 1283 pname = "System.Globalization.Calendars"; ··· 1401 }) 1402 (fetchNuGet { 1403 pname = "System.Net.NameResolution"; 1404 version = "4.3.0"; 1405 sha256 = "15r75pwc0rm3vvwsn8rvm2krf929mjfwliv0mpicjnii24470rkq"; 1406 }) 1407 (fetchNuGet { 1408 pname = "System.Net.Primitives"; 1409 version = "4.3.0"; 1410 sha256 = "0c87k50rmdgmxx7df2khd9qj7q35j9rzdmm2572cc55dygmdk3ii"; 1411 }) ··· 1416 }) 1417 (fetchNuGet { 1418 pname = "System.Net.Sockets"; 1419 version = "4.3.0"; 1420 sha256 = "1ssa65k6chcgi6mfmzrznvqaxk8jp0gvl77xhf1hbzakjnpxspla"; 1421 }) ··· 1443 pname = "System.ObjectModel"; 1444 version = "4.3.0"; 1445 sha256 = "191p63zy5rpqx7dnrb3h7prvgixmk168fhvvkkvhlazncf8r3nc2"; 1446 + }) 1447 + (fetchNuGet { 1448 + pname = "System.Reactive"; 1449 + version = "5.0.0"; 1450 + sha256 = "1lafmpnadhiwxyd543kraxa3jfdpm6ipblxrjlibym9b1ykpr5ik"; 1451 }) 1452 (fetchNuGet { 1453 pname = "System.Reflection.Emit.ILGeneration"; ··· 1616 }) 1617 (fetchNuGet { 1618 pname = "System.Runtime.Numerics"; 1619 version = "4.3.0"; 1620 sha256 = "19rav39sr5dky7afygh309qamqqmi9kcwvz3i0c5700v0c5cg61z"; 1621 }) ··· 1636 }) 1637 (fetchNuGet { 1638 pname = "System.Security.AccessControl"; 1639 + version = "6.0.0"; 1640 + sha256 = "0a678bzj8yxxiffyzy60z2w1nczzpi8v97igr4ip3byd2q89dv58"; 1641 }) 1642 (fetchNuGet { 1643 pname = "System.Security.Claims"; ··· 1646 }) 1647 (fetchNuGet { 1648 pname = "System.Security.Cryptography.Algorithms"; 1649 version = "4.3.0"; 1650 sha256 = "03sq183pfl5kp7gkvq77myv7kbpdnq3y0xj7vi4q1kaw54sny0ml"; 1651 }) ··· 1658 pname = "System.Security.Cryptography.Cng"; 1659 version = "4.7.0"; 1660 sha256 = "00797sqbba8lys486ifxblz9j52m29kidclvmqpk531820k55x9j"; 1661 }) 1662 (fetchNuGet { 1663 pname = "System.Security.Cryptography.Csp"; ··· 1666 }) 1667 (fetchNuGet { 1668 pname = "System.Security.Cryptography.Encoding"; 1669 version = "4.3.0"; 1670 sha256 = "1jr6w70igqn07k5zs1ph6xja97hxnb3mqbspdrff6cvssgrixs32"; 1671 }) ··· 1676 }) 1677 (fetchNuGet { 1678 pname = "System.Security.Cryptography.Pkcs"; 1679 + version = "6.0.0"; 1680 + sha256 = "1q80znpwkv5wrzgx0qnzxqaa5k1s72fnk3g1yng62l7y14d8ki64"; 1681 }) 1682 (fetchNuGet { 1683 pname = "System.Security.Cryptography.Primitives"; ··· 1686 }) 1687 (fetchNuGet { 1688 pname = "System.Security.Cryptography.ProtectedData"; 1689 + version = "6.0.0"; 1690 + sha256 = "05kd3a8w7658hjxq9vvszxip30a479fjmfq4bq1r95nrsvs4hbss"; 1691 }) 1692 (fetchNuGet { 1693 pname = "System.Security.Cryptography.X509Certificates"; ··· 1696 }) 1697 (fetchNuGet { 1698 pname = "System.Security.Permissions"; 1699 + version = "6.0.0"; 1700 + sha256 = "0jsl4xdrkqi11iwmisi1r2f2qn5pbvl79mzq877gndw6ans2zhzw"; 1701 }) 1702 (fetchNuGet { 1703 pname = "System.Security.Principal.Windows"; ··· 1705 sha256 = "00a0a7c40i3v4cb20s2cmh9csb5jv2l0frvnlzyfxh848xalpdwr"; 1706 }) 1707 (fetchNuGet { 1708 pname = "System.Security.Principal"; 1709 version = "4.3.0"; 1710 sha256 = "12cm2zws06z4lfc4dn31iqv7072zyi4m910d4r6wm8yx85arsfxf"; ··· 1755 sha256 = "1si2my1g0q0qv1hiqnji4xh9wd05qavxnzj9dwgs23iqvgjky0gl"; 1756 }) 1757 (fetchNuGet { 1758 + pname = "System.Text.Json"; 1759 + version = "6.0.2"; 1760 + sha256 = "1lz6gx1r4if8sbx6yp9h0mi0g9ffr40x0cg518l0z2aiqgil3fk0"; 1761 + }) 1762 + (fetchNuGet { 1763 pname = "System.Text.RegularExpressions"; 1764 version = "4.1.0"; 1765 sha256 = "1mw7vfkkyd04yn2fbhm38msk7dz2xwvib14ygjsb8dq2lcvr18y7"; ··· 1805 sha256 = "134z3v9abw3a6jsw17xl3f6hqjpak5l682k2vz39spj4kmydg6k7"; 1806 }) 1807 (fetchNuGet { 1808 pname = "System.Threading.ThreadPool"; 1809 version = "4.3.0"; 1810 sha256 = "027s1f4sbx0y1xqw2irqn6x161lzj8qwvnh2gn78ciiczdv10vf1"; ··· 1830 sha256 = "0rw9wfamvhayp5zh3j7p1yfmx9b5khbf4q50d8k5rk993rskfd34"; 1831 }) 1832 (fetchNuGet { 1833 + pname = "System.Windows.Extensions"; 1834 + version = "6.0.0"; 1835 + sha256 = "1wy9pq9vn1bqg5qnv53iqrbx04yzdmjw4x5yyi09y3459vaa1sip"; 1836 + }) 1837 + (fetchNuGet { 1838 pname = "System.Xml.ReaderWriter"; 1839 version = "4.0.11"; 1840 sha256 = "0c6ky1jk5ada9m94wcadih98l6k1fvf6vi7vhn1msjixaha419l5"; ··· 1853 pname = "System.Xml.XDocument"; 1854 version = "4.3.0"; 1855 sha256 = "08h8fm4l77n0nd4i4fk2386y809bfbwqb7ih9d7564ifcxr5ssxd"; 1856 }) 1857 (fetchNuGet { 1858 pname = "Text.Analyzers";
+2 -2
pkgs/applications/blockchains/exodus/default.nix
··· 4 5 stdenv.mkDerivation rec { 6 pname = "exodus"; 7 - version = "22.2.25"; 8 9 src = fetchurl { 10 url = "https://downloads.exodus.io/releases/${pname}-linux-x64-${version}.zip"; 11 - sha256 = "sha256-YbApI9rIk1653Hp3hsXJrxBMpaGn6Wv3WhZiQWAfPQM="; 12 }; 13 14 sourceRoot = ".";
··· 4 5 stdenv.mkDerivation rec { 6 pname = "exodus"; 7 + version = "22.6.17"; 8 9 src = fetchurl { 10 url = "https://downloads.exodus.io/releases/${pname}-linux-x64-${version}.zip"; 11 + sha256 = "1gllmrmc1gylw54yrgy1ggpn3kvkyxf7ydjvd5n5kvd8d9xh78ng"; 12 }; 13 14 sourceRoot = ".";
+10 -5
pkgs/applications/blockchains/nbxplorer/default.nix
··· 1 - { lib, buildDotnetModule, fetchFromGitHub, dotnetCorePackages }: 2 3 buildDotnetModule rec { 4 pname = "nbxplorer"; 5 - version = "2.3.26"; 6 7 src = fetchFromGitHub { 8 owner = "dgarage"; 9 repo = "NBXplorer"; 10 rev = "v${version}"; 11 - sha256 = "sha256-PaunSwbIf9hGmZeS8ZI4M0C6T76bLCalnS4/x9TWrtY="; 12 }; 13 14 projectFile = "NBXplorer/NBXplorer.csproj"; ··· 16 17 dotnet-runtime = dotnetCorePackages.aspnetcore_6_0; 18 19 postFixup = '' 20 - mv $out/bin/{NBXplorer,nbxplorer} 21 ''; 22 23 meta = with lib; { 24 description = "Minimalist UTXO tracker for HD Cryptocurrency Wallets"; 25 maintainers = with maintainers; [ kcalvinalvin erikarvstedt ]; 26 license = licenses.mit; 27 - platforms = platforms.linux; 28 }; 29 }
··· 1 + { lib 2 + , buildDotnetModule 3 + , fetchFromGitHub 4 + , dotnetCorePackages 5 + }: 6 7 buildDotnetModule rec { 8 pname = "nbxplorer"; 9 + version = "2.3.28"; 10 11 src = fetchFromGitHub { 12 owner = "dgarage"; 13 repo = "NBXplorer"; 14 rev = "v${version}"; 15 + sha256 = "sha256-4KedlU+TMwO6C/dgNa23N4uPk8gPq2SQKzYkCZS508I="; 16 }; 17 18 projectFile = "NBXplorer/NBXplorer.csproj"; ··· 20 21 dotnet-runtime = dotnetCorePackages.aspnetcore_6_0; 22 23 + # macOS has a case-insensitive filesystem, so these two can be the same file 24 postFixup = '' 25 + mv $out/bin/{NBXplorer,nbxplorer} || : 26 ''; 27 28 meta = with lib; { 29 description = "Minimalist UTXO tracker for HD Cryptocurrency Wallets"; 30 maintainers = with maintainers; [ kcalvinalvin erikarvstedt ]; 31 license = licenses.mit; 32 + platforms = platforms.linux ++ platforms.darwin; 33 }; 34 }
+4 -9
pkgs/applications/blockchains/nbxplorer/deps.nix
··· 191 }) 192 (fetchNuGet { 193 pname = "NBitcoin.TestFramework"; 194 - version = "3.0.6"; 195 - sha256 = "0yw382238rjv0qmhz1xlb5v696s8sxbjf839c2ck6dqd947q403w"; 196 }) 197 (fetchNuGet { 198 pname = "NBitcoin"; 199 - version = "6.0.15"; 200 - sha256 = "038dcl2k88w4cijws3pdnjflgy4lmqx70z0l7yqz355kmxjz8ain"; 201 - }) 202 - (fetchNuGet { 203 - pname = "NBitcoin"; 204 - version = "6.0.18"; 205 - sha256 = "1dr669h68cx6yfzr3n97yzzwbgnsv5g2008diyxngdjm55nh3q9s"; 206 }) 207 (fetchNuGet { 208 pname = "NETStandard.Library";
··· 191 }) 192 (fetchNuGet { 193 pname = "NBitcoin.TestFramework"; 194 + version = "3.0.9"; 195 + sha256 = "08pwab9f2565day9b0fjzfv5ik3pbwvgvl190gh0bmwi5xv4vq93"; 196 }) 197 (fetchNuGet { 198 pname = "NBitcoin"; 199 + version = "7.0.8"; 200 + sha256 = "0h76a5wha3rqchjzhvslmm8f7qkya77n8avh5i05nvnrigf0bj5q"; 201 }) 202 (fetchNuGet { 203 pname = "NETStandard.Library";
+2
pkgs/applications/editors/neovim/neovim-remote.nix
··· 33 "test_escape_double_quotes_in_filenames" 34 ]; 35 36 meta = with lib; { 37 description = "A tool that helps controlling nvim processes from a terminal"; 38 homepage = "https://github.com/mhinz/neovim-remote/";
··· 33 "test_escape_double_quotes_in_filenames" 34 ]; 35 36 + doCheck = !stdenv.isDarwin; 37 + 38 meta = with lib; { 39 description = "A tool that helps controlling nvim processes from a terminal"; 40 homepage = "https://github.com/mhinz/neovim-remote/";
+34 -8
pkgs/applications/emulators/craftos-pc/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, poco, openssl, SDL2, SDL2_mixer }: 2 3 let 4 craftos2-lua = fetchFromGitHub { 5 owner = "MCJack123"; 6 repo = "craftos2-lua"; 7 - rev = "v2.4.4"; 8 - sha256 = "1q63ki4sxx8bxaa6ag3xj153p7a8a12ivm0k33k935p41k6y2k64"; 9 }; 10 in 11 12 stdenv.mkDerivation rec { 13 pname = "craftos-pc"; 14 - version = "2.4.5"; 15 16 src = fetchFromGitHub { 17 owner = "MCJack123"; 18 repo = "craftos2"; 19 rev = "v${version}"; 20 - sha256 = "00a4p365krbdprlv4979d13mm3alhxgzzj3vqz2g67795plf64j4"; 21 }; 22 23 - buildInputs = [ poco openssl SDL2 SDL2_mixer ]; 24 25 preBuild = '' 26 cp -R ${craftos2-lua}/* ./craftos2-lua/ ··· 28 make -C craftos2-lua linux 29 ''; 30 31 installPhase = '' 32 - mkdir -p $out/bin 33 DESTDIR=$out/bin make install 34 ''; 35 36 meta = with lib; { 37 description = "An implementation of the CraftOS-PC API written in C++ using SDL"; 38 homepage = "https://www.craftos-pc.cc"; 39 - license = licenses.mit; 40 platforms = platforms.linux; 41 maintainers = [ maintainers.siraben ]; 42 }; 43 }
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , patchelf 5 + , unzip 6 + , poco 7 + , openssl 8 + , SDL2 9 + , SDL2_mixer 10 + , ncurses 11 + , libpng 12 + , pngpp 13 + , libwebp 14 + }: 15 16 let 17 craftos2-lua = fetchFromGitHub { 18 owner = "MCJack123"; 19 repo = "craftos2-lua"; 20 + rev = "v2.6.6"; 21 + sha256 = "cCXH1GTRqJQ57/6sWIxik366YBx/ii3nzQwx4YpEh1w="; 22 + }; 23 + craftos2-rom = fetchFromGitHub { 24 + owner = "McJack123"; 25 + repo = "craftos2-rom"; 26 + rev = "v2.6.6"; 27 + sha256 = "VzIqvf83k121DxuH5zgZfFS9smipDonyqqhVgj2kgYw="; 28 }; 29 in 30 31 stdenv.mkDerivation rec { 32 pname = "craftos-pc"; 33 + version = "2.6.6"; 34 35 src = fetchFromGitHub { 36 owner = "MCJack123"; 37 repo = "craftos2"; 38 rev = "v${version}"; 39 + sha256 = "9lpAWYFli3/OBfmu2dQxKi+/TaHaBQNpZsCURvl0h/E="; 40 }; 41 42 + buildInputs = [ patchelf poco openssl SDL2 SDL2_mixer ncurses libpng pngpp libwebp ]; 43 44 preBuild = '' 45 cp -R ${craftos2-lua}/* ./craftos2-lua/ ··· 47 make -C craftos2-lua linux 48 ''; 49 50 + dontStrip = true; 51 + 52 installPhase = '' 53 + mkdir -p $out/bin $out/lib $out/share/craftos $out/include 54 DESTDIR=$out/bin make install 55 + cp ./craftos2-lua/src/liblua.so $out/lib 56 + patchelf --replace-needed craftos2-lua/src/liblua.so liblua.so $out/bin/craftos 57 + cp -R api $out/include/CraftOS-PC 58 + cp -R ${craftos2-rom}/* $out/share/craftos 59 ''; 60 61 meta = with lib; { 62 description = "An implementation of the CraftOS-PC API written in C++ using SDL"; 63 homepage = "https://www.craftos-pc.cc"; 64 + license = with licenses; [ mit free ]; 65 platforms = platforms.linux; 66 maintainers = [ maintainers.siraben ]; 67 + mainProgram = "craftos"; 68 }; 69 }
+3 -3
pkgs/applications/graphics/curtail/default.nix
··· 18 19 python3.pkgs.buildPythonApplication rec { 20 pname = "curtail"; 21 - version = "1.3.0"; 22 format = "other"; 23 24 src = fetchFromGitHub { 25 owner = "Huluti"; 26 repo = "Curtail"; 27 - rev = version; 28 - sha256 = "sha256-tNk+KI+DEMR63zfcBpfPTxAFKzvGWvpa9erK9SAAtPc="; 29 }; 30 31 nativeBuildInputs = [
··· 18 19 python3.pkgs.buildPythonApplication rec { 20 pname = "curtail"; 21 + version = "1.3.1"; 22 format = "other"; 23 24 src = fetchFromGitHub { 25 owner = "Huluti"; 26 repo = "Curtail"; 27 + rev = "refs/tags/${version}"; 28 + sha256 = "sha256-/xvkRXs1EVu+9RZM+TnyIGxFV2stUR9XHEmaJxsJ3V8="; 29 }; 30 31 nativeBuildInputs = [
+56 -26
pkgs/applications/misc/albert/default.nix
··· 1 - { mkDerivation, lib, fetchFromGitHub, makeWrapper, qtbase, 2 - qtdeclarative, qtsvg, qtx11extras, muparser, cmake, python3, 3 - qtcharts }: 4 5 - mkDerivation rec { 6 pname = "albert"; 7 - version = "0.17.2"; 8 9 src = fetchFromGitHub { 10 - owner = "albertlauncher"; 11 - repo = "albert"; 12 - rev = "v${version}"; 13 - sha256 = "0lpp8rqx5b6rwdpcdldfdlw5327harr378wnfbc6rp3ajmlb4p7w"; 14 fetchSubmodules = true; 15 }; 16 17 - nativeBuildInputs = [ cmake makeWrapper ]; 18 - 19 - buildInputs = [ qtbase qtdeclarative qtsvg qtx11extras muparser python3 qtcharts ]; 20 21 - # We don't have virtualbox sdk so disable plugin 22 - cmakeFlags = [ "-DBUILD_VIRTUALBOX=OFF" "-DCMAKE_INSTALL_LIBDIR=libs" ]; 23 24 postPatch = '' 25 - sed -i "/QStringList dirs = {/a \"$out/libs\"," \ 26 - src/app/main.cpp 27 ''; 28 29 - preBuild = '' 30 - mkdir -p "$out/" 31 - ln -s "$PWD/lib" "$out/lib" 32 ''; 33 34 - postBuild = '' 35 - rm "$out/lib" 36 - ''; 37 38 meta = with lib; { 39 - homepage = "https://albertlauncher.github.io/"; 40 - description = "Desktop agnostic launcher"; 41 - license = licenses.gpl3Plus; 42 maintainers = with maintainers; [ ericsagnes synthetica ]; 43 - platforms = platforms.linux; 44 }; 45 }
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , muparser 6 + , python3 7 + , qtbase 8 + , qtcharts 9 + , qtdeclarative 10 + , qtgraphicaleffects 11 + , qtsvg 12 + , qtx11extras 13 + , wrapQtAppsHook 14 + , nix-update-script 15 + }: 16 17 + stdenv.mkDerivation rec { 18 pname = "albert"; 19 + version = "0.17.3"; 20 21 src = fetchFromGitHub { 22 + owner = "albertlauncher"; 23 + repo = "albert"; 24 + rev = "v${version}"; 25 + sha256 = "sha256-UIG6yLkIcdf5IszhNPwkBcSfZe4/CyI5shK/QPOmpPE="; 26 fetchSubmodules = true; 27 }; 28 29 + nativeBuildInputs = [ 30 + cmake 31 + wrapQtAppsHook 32 + ]; 33 34 + buildInputs = [ 35 + muparser 36 + python3 37 + qtbase 38 + qtcharts 39 + qtdeclarative 40 + qtgraphicaleffects 41 + qtsvg 42 + qtx11extras 43 + ]; 44 45 postPatch = '' 46 + find -type f -name CMakeLists.txt -exec sed -i {} -e '/INSTALL_RPATH/d' \; 47 + 48 + sed -i src/app/main.cpp \ 49 + -e "/QStringList dirs = {/a QFileInfo(\"$out/lib\").canonicalFilePath()," 50 ''; 51 52 + postFixup = '' 53 + for i in $out/{bin/.albert-wrapped,lib/albert/plugins/*.so}; do 54 + patchelf $i --add-rpath $out/lib/albert 55 + done 56 ''; 57 58 + passthru.updateScript = nix-update-script { 59 + attrPath = pname; 60 + }; 61 62 meta = with lib; { 63 + description = "A fast and flexible keyboard launcher"; 64 + longDescription = '' 65 + Albert is a desktop agnostic launcher. Its goals are usability and beauty, 66 + performance and extensibility. It is written in C++ and based on the Qt 67 + framework. 68 + ''; 69 + homepage = "https://albertlauncher.github.io"; 70 + changelog = "https://github.com/albertlauncher/albert/blob/${src.rev}/CHANGELOG.md"; 71 + license = licenses.gpl3Plus; 72 maintainers = with maintainers; [ ericsagnes synthetica ]; 73 + platforms = platforms.linux; 74 }; 75 }
+2 -2
pkgs/applications/networking/browsers/brave/default.nix
··· 90 91 stdenv.mkDerivation rec { 92 pname = "brave"; 93 - version = "1.39.122"; 94 95 src = fetchurl { 96 url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb"; 97 - sha256 = "sha256-UJtVFvcVzfpdDbCkXs9UetS/1IUIn1mxUy7TcaXL5Jo="; 98 }; 99 100 dontConfigure = true;
··· 90 91 stdenv.mkDerivation rec { 92 pname = "brave"; 93 + version = "1.40.113"; 94 95 src = fetchurl { 96 url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb"; 97 + sha256 = "sha256-+lJjLfxEOf82uvcVaRbWYQ93KEzWGVrzXvI9Rt1U9Bc="; 98 }; 99 100 dontConfigure = true;
+3 -3
pkgs/applications/networking/browsers/chromium/upstream-info.json
··· 19 } 20 }, 21 "beta": { 22 - "version": "104.0.5112.29", 23 - "sha256": "1cjqr1d2cgiwq7vlb26ilyw2r79wgyd7dkxaipmjiqyyrl4bfm6y", 24 - "sha256bin64": "1vbhm3pm1jgifmg6dc4aqi7xf12dx37spifjs3flq4v2lixg5r6f", 25 "deps": { 26 "gn": { 27 "version": "2022-06-08",
··· 19 } 20 }, 21 "beta": { 22 + "version": "104.0.5112.39", 23 + "sha256": "0xgw1n5lcqqbs0b8bpd05f1z0q2lpajg2dxangd1yfl7y16yfxv9", 24 + "sha256bin64": "0abprih2sh483cqv9rqs67ha3cm9744h3gdc342lgqj3x8bmspmj", 25 "deps": { 26 "gn": { 27 "version": "2022-06-08",
+18 -12
pkgs/applications/networking/cluster/hadoop/default.nix
··· 26 assert elem stdenv.system [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ]; 27 28 let 29 - common = { pname, version, untarDir ? "${pname}-${version}", sha256, jdk, openssl ? null, nativeLibs ? [ ], libPatches ? "", tests }: 30 stdenv.mkDerivation rec { 31 - inherit pname version jdk libPatches untarDir openssl; 32 src = fetchurl { 33 url = "mirror://apache/hadoop/common/hadoop-${version}/hadoop-${version}" + optionalString stdenv.isAarch64 "-aarch64" + ".tar.gz"; 34 - sha256 = sha256.${stdenv.system}; 35 }; 36 doCheck = true; 37 ··· 79 computers, each of which may be prone to failures. 80 ''; 81 maintainers = with maintainers; [ illustris ]; 82 - platforms = attrNames sha256; 83 }; 84 }; 85 in ··· 88 # https://cwiki.apache.org/confluence/display/HADOOP/Hadoop+Java+Versions 89 hadoop_3_3 = common rec { 90 pname = "hadoop"; 91 - version = "3.3.1"; 92 untarDir = "${pname}-${version}"; 93 - sha256 = rec { 94 - x86_64-linux = "1b3v16ihysqaxw8za1r5jlnphy8dwhivdx2d0z64309w57ihlxxd"; 95 x86_64-darwin = x86_64-linux; 96 - aarch64-linux = "00ln18vpi07jq2slk3kplyhcj8ad41n0yl880q5cihilk7daclxz"; 97 aarch64-darwin = aarch64-linux; 98 }; 99 jdk = jdk11_headless; ··· 116 }; 117 hadoop_3_2 = common rec { 118 pname = "hadoop"; 119 - version = "3.2.2"; 120 - sha256.x86_64-linux = "1hxq297cqvkfgz2yfdiwa3l28g44i2abv5921k2d6b4pqd33prwp"; 121 jdk = jdk8_headless; 122 # not using native libs because of broken openssl_1_0_2 dependency 123 # can be manually overriden ··· 125 }; 126 hadoop2 = common rec { 127 pname = "hadoop"; 128 - version = "2.10.1"; 129 - sha256.x86_64-linux = "1w31x4bk9f2swnx8qxx0cgwfg8vbpm6cy5lvfnbbpl3rsjhmyg97"; 130 jdk = jdk8_headless; 131 tests = nixosTests.hadoop2; 132 };
··· 26 assert elem stdenv.system [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ]; 27 28 let 29 + common = { pname, versions, untarDir ? "${pname}-${version}", hash, jdk, openssl ? null, nativeLibs ? [ ], libPatches ? "", tests }: 30 stdenv.mkDerivation rec { 31 + inherit pname jdk libPatches untarDir openssl; 32 + version = versions.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}"); 33 src = fetchurl { 34 url = "mirror://apache/hadoop/common/hadoop-${version}/hadoop-${version}" + optionalString stdenv.isAarch64 "-aarch64" + ".tar.gz"; 35 + hash = hash.${stdenv.system}; 36 }; 37 doCheck = true; 38 ··· 80 computers, each of which may be prone to failures. 81 ''; 82 maintainers = with maintainers; [ illustris ]; 83 + platforms = attrNames hash; 84 }; 85 }; 86 in ··· 89 # https://cwiki.apache.org/confluence/display/HADOOP/Hadoop+Java+Versions 90 hadoop_3_3 = common rec { 91 pname = "hadoop"; 92 + versions = rec { 93 + x86_64-linux = "3.3.3"; 94 + x86_64-darwin = x86_64-linux; 95 + aarch64-linux = "3.3.1"; 96 + aarch64-darwin = aarch64-linux; 97 + }; 98 untarDir = "${pname}-${version}"; 99 + hash = rec { 100 + x86_64-linux = "sha256-+nHGG7qkJxKa7wn+wCizTdVCxlrZD9zOxefvk9g7h2Q="; 101 x86_64-darwin = x86_64-linux; 102 + aarch64-linux = "sha256-v1Om2pk0wsgKBghRD2wgTSHJoKd3jkm1wPKAeDcKlgI="; 103 aarch64-darwin = aarch64-linux; 104 }; 105 jdk = jdk11_headless; ··· 122 }; 123 hadoop_3_2 = common rec { 124 pname = "hadoop"; 125 + versions.x86_64-linux = "3.2.3"; 126 + hash.x86_64-linux = "sha256-Q2/a1LcKutpJoGySB0qlCcYE2bvC/HoG/dp9nBikuNU="; 127 jdk = jdk8_headless; 128 # not using native libs because of broken openssl_1_0_2 dependency 129 # can be manually overriden ··· 131 }; 132 hadoop2 = common rec { 133 pname = "hadoop"; 134 + versions.x86_64-linux = "2.10.2"; 135 + hash.x86_64-linux = "sha256-xhA4zxqIRGNhIeBnJO9dLKf/gx/Bq+uIyyZwsIafEyo="; 136 jdk = jdk8_headless; 137 tests = nixosTests.hadoop2; 138 };
+49
pkgs/applications/networking/cluster/kyverno/default.nix
···
··· 1 + { lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, kyverno }: 2 + 3 + buildGoModule rec { 4 + pname = "kyverno"; 5 + version = "1.7.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "kyverno"; 9 + repo = "kyverno"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-MHEVGJNuZozug0l+V1bRIykOe5PGA3aU3wfBV2TH/Lo="; 12 + }; 13 + 14 + ldflags = [ 15 + "-s" "-w" 16 + "-X github.com/kyverno/kyverno/pkg/version.BuildVersion=v${version}" 17 + "-X github.com/kyverno/kyverno/pkg/version.BuildHash=${version}" 18 + "-X github.com/kyverno/kyverno/pkg/version.BuildTime=1970-01-01_00:00:00" 19 + ]; 20 + 21 + vendorSha256 = "sha256-DUe1cy6PgI5qiB9BpDJxnTlBFuy/BmyqCoxRo7Ums1I="; 22 + 23 + subPackages = [ "cmd/cli/kubectl-kyverno" ]; 24 + 25 + nativeBuildInputs = [ installShellFiles ]; 26 + postInstall = '' 27 + # we have no integration between krew and kubectl 28 + # so better rename binary to kyverno and use as a standalone 29 + mv $out/bin/kubectl-kyverno $out/bin/kyverno 30 + installShellCompletion --cmd kyverno \ 31 + --bash <($out/bin/kyverno completion bash) \ 32 + --zsh <($out/bin/kyverno completion zsh) \ 33 + --fish <($out/bin/kyverno completion fish) 34 + ''; 35 + 36 + passthru.tests.version = testers.testVersion { 37 + package = kyverno; 38 + command = "kyverno version"; 39 + inherit version; 40 + }; 41 + 42 + meta = with lib; { 43 + description = "Kubernetes Native Policy Management"; 44 + homepage = "https://kyverno.io/"; 45 + changelog = "https://github.com/kyverno/kyverno/releases/tag/v${version}"; 46 + license = licenses.asl20; 47 + maintainers = with maintainers; [ bryanasdev000 ]; 48 + }; 49 + }
+3 -3
pkgs/applications/networking/cluster/terraform/default.nix
··· 169 mkTerraform = attrs: pluggable (generic attrs); 170 171 terraform_1 = mkTerraform { 172 - version = "1.2.4"; 173 - sha256 = "sha256-FpRn0cFO3/CKdFDeAIu02Huez4Jpunpf6QH9KFVn2lQ="; 174 - vendorSha256 = "sha256-1RKnNF3NC0fGiU2VKz43UBGP33QrLxESVuH6IV6kYqA="; 175 patches = [ ./provider-path-0_15.patch ]; 176 passthru = { 177 inherit plugins;
··· 169 mkTerraform = attrs: pluggable (generic attrs); 170 171 terraform_1 = mkTerraform { 172 + version = "1.2.5"; 173 + sha256 = "sha256-dj6q+FwsXphR1e/LQApqBr7ytVM5FXexSbNklnU1jao="; 174 + vendorSha256 = "sha256-Whe1prBGsE0q0QdNkzAKwvAP7EVlnD/985gjngh+VI4="; 175 patches = [ ./provider-path-0_15.patch ]; 176 passthru = { 177 inherit plugins;
+1 -1
pkgs/applications/networking/cluster/velero/default.nix
··· 14 15 ldflags = [ 16 "-s" "-w" 17 - "-X github.com/vmware-tanzu/velero/pkg/buildinfo.Version=${version}" 18 "-X github.com/vmware-tanzu/velero/pkg/buildinfo.ImageRegistry=velero" 19 "-X github.com/vmware-tanzu/velero/pkg/buildinfo.GitTreeState=clean" 20 "-X github.com/vmware-tanzu/velero/pkg/buildinfo.GitSHA=none"
··· 14 15 ldflags = [ 16 "-s" "-w" 17 + "-X github.com/vmware-tanzu/velero/pkg/buildinfo.Version=v${version}" 18 "-X github.com/vmware-tanzu/velero/pkg/buildinfo.ImageRegistry=velero" 19 "-X github.com/vmware-tanzu/velero/pkg/buildinfo.GitTreeState=clean" 20 "-X github.com/vmware-tanzu/velero/pkg/buildinfo.GitSHA=none"
+14 -10
pkgs/applications/networking/instant-messengers/zulip-term/default.nix
··· 7 8 python3.pkgs.buildPythonApplication rec { 9 pname = "zulip-term"; 10 - version = "0.6.0"; 11 12 # no tests on PyPI 13 src = fetchFromGitHub { 14 owner = "zulip"; 15 repo = "zulip-terminal"; 16 rev = version; 17 - sha256 = "sha256-nlvZaGMVRRCu8PZHxPWjNSxkqhZs0T/tE1js/3pDUFk="; 18 }; 19 20 - patches = [ 21 - ./pytest-executable-name.patch 22 - ]; 23 - 24 propagatedBuildInputs = with python3.pkgs; [ 25 - urwid 26 - zulip 27 - urwid-readline 28 beautifulsoup4 29 lxml 30 - typing-extensions 31 python-dateutil 32 pytz 33 tzlocal 34 ]; 35 36 checkInputs = [ ··· 43 44 makeWrapperArgs = [ 45 "--prefix" "PATH" ":" (lib.makeBinPath [ libnotify ]) 46 ]; 47 48 meta = with lib; {
··· 7 8 python3.pkgs.buildPythonApplication rec { 9 pname = "zulip-term"; 10 + version = "0.7.0"; 11 12 # no tests on PyPI 13 src = fetchFromGitHub { 14 owner = "zulip"; 15 repo = "zulip-terminal"; 16 rev = version; 17 + sha256 = "sha256-ZouUU4p1FSGMxPuzDo5P971R+rDXpBdJn2MqvkJO+Fw="; 18 }; 19 20 propagatedBuildInputs = with python3.pkgs; [ 21 beautifulsoup4 22 lxml 23 + pygments 24 + pyperclip 25 python-dateutil 26 pytz 27 + typing-extensions 28 tzlocal 29 + urwid 30 + urwid-readline 31 + zulip 32 ]; 33 34 checkInputs = [ ··· 41 42 makeWrapperArgs = [ 43 "--prefix" "PATH" ":" (lib.makeBinPath [ libnotify ]) 44 + ]; 45 + 46 + disabledTests = [ 47 + # IndexError: list index out of range 48 + "test_main_multiple_notify_options" 49 + "test_main_multiple_autohide_options" 50 ]; 51 52 meta = with lib; {
-13
pkgs/applications/networking/instant-messengers/zulip-term/pytest-executable-name.patch
··· 1 - diff --git a/tests/cli/test_run.py b/tests/cli/test_run.py 2 - index 459aa82..c6e434e 100644 3 - --- a/tests/cli/test_run.py 4 - +++ b/tests/cli/test_run.py 5 - @@ -180,7 +180,7 @@ def test_main_multiple_autohide_options(capsys, options): 6 - assert str(e.value) == "2" 7 - captured = capsys.readouterr() 8 - lines = captured.err.strip('\n') 9 - - lines = lines.split("pytest: ", 1)[1] 10 - + lines = lines.split("__main__.py: ", 1)[1] 11 - expected = ("error: argument {}: not allowed " 12 - "with argument {}".format(options[1], options[0])) 13 - assert lines == expected
···
+133 -148
pkgs/applications/networking/n8n/node-packages.nix
··· 148 sha512 = "yWshY9cdPthlebnb3Zuz/j0Lv4kjU6u7PR5sW7A9FF7EX+0irMRJAtyTq5TPiDHJfjH8gTSlnIYFj9m7Ed76IQ=="; 149 }; 150 }; 151 - "@azure/identity-2.0.5" = { 152 name = "_at_azure_slash_identity"; 153 packageName = "@azure/identity"; 154 - version = "2.0.5"; 155 src = fetchurl { 156 - url = "https://registry.npmjs.org/@azure/identity/-/identity-2.0.5.tgz"; 157 - sha512 = "fSQTu9dS0P+lw1Gfct6t7TuRYybULL/E3wJjXLc1xr6RQXpmenJspi0lKzq3XFjLP5MzBlToKY3ZkYoAXPz1zA=="; 158 }; 159 }; 160 "@azure/keyvault-keys-4.4.0" = { ··· 175 sha512 = "aK4s3Xxjrx3daZr3VylxejK3vG5ExXck5WOHDJ8in/k9AqlfIyFMMT1uG7u8mNjX+QRILTIn0/Xgschfh/dQ9g=="; 176 }; 177 }; 178 - "@azure/msal-browser-2.26.0" = { 179 name = "_at_azure_slash_msal-browser"; 180 packageName = "@azure/msal-browser"; 181 - version = "2.26.0"; 182 src = fetchurl { 183 - url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.26.0.tgz"; 184 - sha512 = "mSyZORSgeMEWz5Wo5alUqjxP/HKt/XcViZqc3dnKFM9347qYPIWsAlzHkEmmafNr1VGUo7MeqB0emZCOQrl04w=="; 185 }; 186 }; 187 - "@azure/msal-common-4.5.1" = { 188 name = "_at_azure_slash_msal-common"; 189 packageName = "@azure/msal-common"; 190 - version = "4.5.1"; 191 src = fetchurl { 192 - url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-4.5.1.tgz"; 193 - sha512 = "/i5dXM+QAtO+6atYd5oHGBAx48EGSISkXNXViheliOQe+SIFMDo3gSq3lL54W0suOSAsVPws3XnTaIHlla0PIQ=="; 194 }; 195 }; 196 - "@azure/msal-common-7.0.0" = { 197 - name = "_at_azure_slash_msal-common"; 198 - packageName = "@azure/msal-common"; 199 - version = "7.0.0"; 200 - src = fetchurl { 201 - url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-7.0.0.tgz"; 202 - sha512 = "EkaHGjv0kw1RljhboeffM91b+v9d5VtmyG+0a/gvdqjbLu3kDzEfoaS5BNM9QqMzbxgZylsjAjQDtxdHLX/ziA=="; 203 - }; 204 - }; 205 - "@azure/msal-node-1.10.0" = { 206 name = "_at_azure_slash_msal-node"; 207 packageName = "@azure/msal-node"; 208 - version = "1.10.0"; 209 src = fetchurl { 210 - url = "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.10.0.tgz"; 211 - sha512 = "oSv9mg199FpRTe+fZ3o9NDYpKShOHqeceaNcCHJcKUaAaCojAbfbxD1Cvsti8BEsLKE6x0HcnjilnM1MKmZekA=="; 212 }; 213 }; 214 - "@azure/storage-blob-12.10.0" = { 215 name = "_at_azure_slash_storage-blob"; 216 packageName = "@azure/storage-blob"; 217 - version = "12.10.0"; 218 src = fetchurl { 219 - url = "https://registry.npmjs.org/@azure/storage-blob/-/storage-blob-12.10.0.tgz"; 220 - sha512 = "FBEPKGnvtQJS8V8Tg1P9obgmVD9AodrIfwtwhBpsjenClhFyugMp3HPJY0tF7rInUB/CivKBCbnQKrUnKxqxzw=="; 221 }; 222 }; 223 - "@babel/parser-7.18.6" = { 224 name = "_at_babel_slash_parser"; 225 packageName = "@babel/parser"; 226 - version = "7.18.6"; 227 src = fetchurl { 228 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz"; 229 - sha512 = "uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw=="; 230 }; 231 }; 232 "@babel/runtime-7.18.6" = { ··· 733 sha512 = "/SNsDidUFCvqqcWDwxv2feww/yqhNeTRL5CVoL3jU4Goc4kKEL10T7Eye65ZqPNi4HRx8sAEX59pV1aEH7drNA=="; 734 }; 735 }; 736 - "@types/node-18.0.1" = { 737 name = "_at_types_slash_node"; 738 packageName = "@types/node"; 739 - version = "18.0.1"; 740 src = fetchurl { 741 - url = "https://registry.npmjs.org/@types/node/-/node-18.0.1.tgz"; 742 - sha512 = "CmR8+Tsy95hhwtZBKJBs0/FFq4XX7sDZHlGGf+0q+BRZfMbOTkzkj0AFAuTyXbObDIoanaBBW0+KEW+m3N16Wg=="; 743 }; 744 }; 745 "@types/node-fetch-2.6.2" = { ··· 850 sha512 = "QcJ5ZczaXAqbVD3o8mw/mEBhRvO5UAdTtbvgwL/OgoWubvNBh6/MxLBAigtcgIFaq3shon9m3POIxQaLQt4fxQ=="; 851 }; 852 }; 853 - "@vue/compiler-sfc-2.7.2" = { 854 name = "_at_vue_slash_compiler-sfc"; 855 packageName = "@vue/compiler-sfc"; 856 - version = "2.7.2"; 857 src = fetchurl { 858 - url = "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-2.7.2.tgz"; 859 - sha512 = "khG5m63A4DSeHEOe5yyjHQY2TAE0pUXqKqxgauNUcFaa8M4+J55OWhagy8Bk8O6cO4GhKbQf2NDYzceijmOy8A=="; 860 }; 861 }; 862 "abbrev-1.1.1" = { ··· 1219 sha512 = "z4oo33lmnvvNRqfUe3YjDGGpqu/L2+wXBIhMtwq6oqZ+exOUAkQYM6zd2VWKF7AIlajOF8ZZuPFfryTG9iLC/w=="; 1220 }; 1221 }; 1222 - "aws-sdk-2.1167.0" = { 1223 name = "aws-sdk"; 1224 packageName = "aws-sdk"; 1225 - version = "2.1167.0"; 1226 src = fetchurl { 1227 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1167.0.tgz"; 1228 - sha512 = "hUJzAqWVfNYpct1S+GjyPIc2s+GZcAhbWVqIG4qbLYZ3+sBTcjv3lLH5zx7K+qcTGINDU0g4EsMi6hIrAU+blg=="; 1229 }; 1230 }; 1231 "aws-sign2-0.7.0" = { ··· 2191 sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="; 2192 }; 2193 }; 2194 - "core-js-3.23.3" = { 2195 name = "core-js"; 2196 packageName = "core-js"; 2197 - version = "3.23.3"; 2198 src = fetchurl { 2199 - url = "https://registry.npmjs.org/core-js/-/core-js-3.23.3.tgz"; 2200 - sha512 = "oAKwkj9xcWNBAvGbT//WiCdOMpb9XQG92/Fe3ABFM/R16BsHgePG00mFOgKf7IsCtfj8tA1kHtf/VwErhriz5Q=="; 2201 }; 2202 }; 2203 "core-util-is-1.0.2" = { ··· 3604 sha512 = "4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw=="; 3605 }; 3606 }; 3607 - "ics-2.35.0" = { 3608 name = "ics"; 3609 packageName = "ics"; 3610 - version = "2.35.0"; 3611 src = fetchurl { 3612 - url = "https://registry.npmjs.org/ics/-/ics-2.35.0.tgz"; 3613 - sha512 = "uxHoiu9VnE/1RUIWoUqn9GVswUzrejHFa5Gk20gGySw+2FO8xzgJe7GLFk+hzmevHViG/6zANLhjVY6kFWctKQ=="; 3614 }; 3615 }; 3616 "ieee754-1.1.13" = { ··· 4369 sha512 = "xOqorG21Va+3CjpFOfFTU7SWohHH2uIX9ZY4Byz6J+lvpfvc486tOAT/G9GfbrKtJ9O7NCX9o0aC2lxqbnZ9EA=="; 4370 }; 4371 }; 4372 - "libphonenumber-js-1.10.7" = { 4373 name = "libphonenumber-js"; 4374 packageName = "libphonenumber-js"; 4375 - version = "1.10.7"; 4376 src = fetchurl { 4377 - url = "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.10.7.tgz"; 4378 - sha512 = "jZXLCCWMe1b/HXkjiLeYt2JsytZMcqH26jLFIdzFDFF0xvSUWrYKyvPlyPG+XJzEyKUFbcZxLdWGMwQsWaHDxQ=="; 4379 }; 4380 }; 4381 "libqp-1.1.0" = { ··· 4621 sha512 = "A9SzX4hMKWS25MyalwcOnNoplyHbkNVsjidhTp8ru0Sj23wY9GWBKS8gAIGDSAqeWjIjvE4KBEl24XXAs+v4wQ=="; 4622 }; 4623 }; 4624 - "logform-2.4.1" = { 4625 name = "logform"; 4626 packageName = "logform"; 4627 - version = "2.4.1"; 4628 src = fetchurl { 4629 - url = "https://registry.npmjs.org/logform/-/logform-2.4.1.tgz"; 4630 - sha512 = "7XB/tqc3VRbri9pRjU6E97mQ8vC27ivJ3lct4jhyT+n0JNDd4YKldFl0D75NqDp46hk8RC7Ma1Vjv/UPf67S+A=="; 4631 }; 4632 }; 4633 "long-4.0.0" = { ··· 4693 sha512 = "IXAq50s4qwrOBrXJklY+KhgZF+5y98PDaNo0gi/v2KQBFLyWr+JyFvijZXkGKjQj/h9c0OwoE+JZbwUXce76hQ=="; 4694 }; 4695 }; 4696 - "luxon-2.4.0" = { 4697 name = "luxon"; 4698 packageName = "luxon"; 4699 - version = "2.4.0"; 4700 src = fetchurl { 4701 - url = "https://registry.npmjs.org/luxon/-/luxon-2.4.0.tgz"; 4702 - sha512 = "w+NAwWOUL5hO0SgwOHsMBAmZ15SoknmQXhSO0hIbJCAmPKSsGeK8MlmhYh2w6Iib38IxN2M+/ooXWLbeis7GuA=="; 4703 }; 4704 }; 4705 "mailparser-3.5.0" = { ··· 4747 sha512 = "etgt+n4LlOkGSJbBTV9VROHA5R7ekIPS4vfh+bCAoJgRrJWdqJCBbpS3osRJ/HrT7R68MzMiY3L3sDJ/Fd8aBg=="; 4748 }; 4749 }; 4750 - "mappersmith-2.39.1" = { 4751 name = "mappersmith"; 4752 packageName = "mappersmith"; 4753 - version = "2.39.1"; 4754 src = fetchurl { 4755 - url = "https://registry.npmjs.org/mappersmith/-/mappersmith-2.39.1.tgz"; 4756 - sha512 = "f0QbIwG7CrwhIu7CZts2BsXyMhhZvmEeEtlHC+At23h4//mFVk0cRNZI+v21lzvvWAIBeE55AwEER7koi8iz/A=="; 4757 }; 4758 }; 4759 "material-colors-1.2.6" = { ··· 4954 sha512 = "lLzfLHcyc10MKQnNUCv7dMcoY/2Qxd6wJfbqCcVk3LDb8An4hF6ohk5AztrvgKhJCqj36uyzi/p5se+tvyD+Wg=="; 4955 }; 4956 }; 4957 - "moment-2.29.3" = { 4958 name = "moment"; 4959 packageName = "moment"; 4960 - version = "2.29.3"; 4961 src = fetchurl { 4962 - url = "https://registry.npmjs.org/moment/-/moment-2.29.3.tgz"; 4963 - sha512 = "c6YRvhEo//6T2Jz/vVtYzqBzwvPT95JBQ+smCytzf7c50oMZRsR/a4w88aD34I+/QVSfnoAnSBFPJHItlOMJVw=="; 4964 }; 4965 }; 4966 "moment-timezone-0.5.34" = { ··· 5089 sha512 = "z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q=="; 5090 }; 5091 }; 5092 - "n8n-core-0.125.0" = { 5093 name = "n8n-core"; 5094 packageName = "n8n-core"; 5095 - version = "0.125.0"; 5096 src = fetchurl { 5097 - url = "https://registry.npmjs.org/n8n-core/-/n8n-core-0.125.0.tgz"; 5098 - sha512 = "xywzkbtSkhxMzCQNZacklxdqAxl6sVgIJLJ8IUuHtfdcS7E6VJNJ5SIT/Ypl+E3UAsfH1kiHHdlkDgLGyB20tA=="; 5099 }; 5100 }; 5101 - "n8n-design-system-0.25.0" = { 5102 name = "n8n-design-system"; 5103 packageName = "n8n-design-system"; 5104 - version = "0.25.0"; 5105 src = fetchurl { 5106 - url = "https://registry.npmjs.org/n8n-design-system/-/n8n-design-system-0.25.0.tgz"; 5107 - sha512 = "vS1dIW6n3/MxrKFJ8EpIt4oMNnvYmoweL2kncDja7CpvOO3Zqsa0ElqUvhbbxypk0DcfSQMonNWfSonGrNIgeg=="; 5108 }; 5109 }; 5110 - "n8n-editor-ui-0.151.0" = { 5111 name = "n8n-editor-ui"; 5112 packageName = "n8n-editor-ui"; 5113 - version = "0.151.0"; 5114 src = fetchurl { 5115 - url = "https://registry.npmjs.org/n8n-editor-ui/-/n8n-editor-ui-0.151.0.tgz"; 5116 - sha512 = "3VbZm2jfOC4BXUDzhdBvtx3L+XPnr2LdLVLQ2yrx6HvDFUpMExuxmoQ3I8/aDTo5asVDEHgi7TKkISqY8LKi8A=="; 5117 }; 5118 }; 5119 - "n8n-nodes-base-0.183.0" = { 5120 name = "n8n-nodes-base"; 5121 packageName = "n8n-nodes-base"; 5122 - version = "0.183.0"; 5123 src = fetchurl { 5124 - url = "https://registry.npmjs.org/n8n-nodes-base/-/n8n-nodes-base-0.183.0.tgz"; 5125 - sha512 = "JH7FodkX+RtvmyqxMyro9hskhLNSigYUOcnX/6568dipH3ZiOgk+GDQD0VApBoOFpV1GHuWF85onkMoEiEJ3HA=="; 5126 }; 5127 }; 5128 - "n8n-workflow-0.107.0" = { 5129 name = "n8n-workflow"; 5130 packageName = "n8n-workflow"; 5131 - version = "0.107.0"; 5132 src = fetchurl { 5133 - url = "https://registry.npmjs.org/n8n-workflow/-/n8n-workflow-0.107.0.tgz"; 5134 - sha512 = "+SuZ+5aA+sEovnkkobdZNEGFW/0oCTItCpXaL2+umI0TFrqgL8NGGVKwYLIkX6YATa5W3LVgbEszKDECg2sPJA=="; 5135 }; 5136 }; 5137 "named-placeholders-1.1.2" = { ··· 5305 sha512 = "KUdDsspqx89sD4UUyUKzdlUOper3hRkDVkrKh/89G+d9WKsU5ox51NWS4tB1XR5dPUdR4SP0E3molyEfOvSa3g=="; 5306 }; 5307 }; 5308 - "nodemailer-6.7.6" = { 5309 name = "nodemailer"; 5310 packageName = "nodemailer"; 5311 - version = "6.7.6"; 5312 src = fetchurl { 5313 - url = "https://registry.npmjs.org/nodemailer/-/nodemailer-6.7.6.tgz"; 5314 - sha512 = "/6KF/umU7r7X21Y648/yiRLrgkfz0dmpyuo4BfgYWIpnT/jCbkPTvegMfxCsDAu+O810p2L1BGXieMTPp3nJVA=="; 5315 }; 5316 }; 5317 "nopt-5.0.0" = { ··· 8005 sha512 = "ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw=="; 8006 }; 8007 }; 8008 - "vm2-3.9.9" = { 8009 name = "vm2"; 8010 packageName = "vm2"; 8011 - version = "3.9.9"; 8012 src = fetchurl { 8013 - url = "https://registry.npmjs.org/vm2/-/vm2-3.9.9.tgz"; 8014 - sha512 = "xwTm7NLh/uOjARRBs8/95H0e8fT3Ukw5D/JJWhxMbhKzNh1Nu981jQKvkep9iKYNxzlVrdzD0mlBGkDKZWprlw=="; 8015 }; 8016 }; 8017 - "vue-2.7.2" = { 8018 name = "vue"; 8019 packageName = "vue"; 8020 - version = "2.7.2"; 8021 src = fetchurl { 8022 - url = "https://registry.npmjs.org/vue/-/vue-2.7.2.tgz"; 8023 - sha512 = "fQPKEfdiUP4bDlrGEjI5MOTkC5s/XIbnfKAx0B3MxJHI4qwh8FPLSo8/9tFkgFiRH3HwvcHjZQ1tCTifOUH0tg=="; 8024 }; 8025 }; 8026 "vue-color-2.8.1" = { ··· 8032 sha512 = "BoLCEHisXi2QgwlhZBg9UepvzZZmi4176vbr+31Shen5WWZwSLVgdScEPcB+yrAtuHAz42309C0A4+WiL9lNBw=="; 8033 }; 8034 }; 8035 - "vue-fragment-1.6.0" = { 8036 name = "vue-fragment"; 8037 packageName = "vue-fragment"; 8038 - version = "1.6.0"; 8039 src = fetchurl { 8040 - url = "https://registry.npmjs.org/vue-fragment/-/vue-fragment-1.6.0.tgz"; 8041 - sha512 = "a5T8ZZZK/EQzgVShEl374HbobUJ0a7v12BzOzS6Z/wd/5EE/5SffcyHC+7bf9hP3L7Yc0hhY/GhMdwFQ25O/8A=="; 8042 }; 8043 }; 8044 "vue-i18n-8.27.2" = { ··· 8425 n8n = nodeEnv.buildNodePackage { 8426 name = "n8n"; 8427 packageName = "n8n"; 8428 - version = "0.185.0"; 8429 src = fetchurl { 8430 - url = "https://registry.npmjs.org/n8n/-/n8n-0.185.0.tgz"; 8431 - sha512 = "S3NBZkON4drha+QMTSmRlFq81F5ENW4Swe6lIsosdTQJziSoHmXb2gKogLYfTYAXSq4BasfVmcgYHDFB/fGQMg=="; 8432 }; 8433 dependencies = [ 8434 sources."@apidevtools/json-schema-ref-parser-8.0.0" ··· 8457 }) 8458 (sources."@azure/core-client-1.6.0" // { 8459 dependencies = [ 8460 - sources."@azure/core-tracing-1.0.1" 8461 sources."tslib-2.4.0" 8462 ]; 8463 }) 8464 (sources."@azure/core-http-2.2.5" // { 8465 dependencies = [ 8466 sources."tough-cookie-4.0.0" 8467 sources."tslib-2.4.0" 8468 sources."universalify-0.1.2" ··· 8470 }) 8471 (sources."@azure/core-lro-2.2.4" // { 8472 dependencies = [ 8473 sources."tslib-2.4.0" 8474 ]; 8475 }) ··· 8480 }) 8481 (sources."@azure/core-rest-pipeline-1.9.0" // { 8482 dependencies = [ 8483 - sources."@azure/core-tracing-1.0.1" 8484 sources."tslib-2.4.0" 8485 ]; 8486 }) 8487 - (sources."@azure/core-tracing-1.0.0-preview.13" // { 8488 dependencies = [ 8489 sources."tslib-2.4.0" 8490 ]; ··· 8494 sources."tslib-2.4.0" 8495 ]; 8496 }) 8497 - (sources."@azure/identity-2.0.5" // { 8498 dependencies = [ 8499 sources."jwa-2.0.0" 8500 sources."jws-4.0.0" ··· 8504 }) 8505 (sources."@azure/keyvault-keys-4.4.0" // { 8506 dependencies = [ 8507 sources."tslib-2.4.0" 8508 ]; 8509 }) ··· 8512 sources."tslib-2.4.0" 8513 ]; 8514 }) 8515 - (sources."@azure/msal-browser-2.26.0" // { 8516 - dependencies = [ 8517 - sources."@azure/msal-common-7.0.0" 8518 - ]; 8519 - }) 8520 - sources."@azure/msal-common-4.5.1" 8521 - (sources."@azure/msal-node-1.10.0" // { 8522 - dependencies = [ 8523 - sources."@azure/msal-common-7.0.0" 8524 - ]; 8525 - }) 8526 - (sources."@azure/storage-blob-12.10.0" // { 8527 dependencies = [ 8528 sources."tslib-2.4.0" 8529 ]; 8530 }) 8531 - sources."@babel/parser-7.18.6" 8532 sources."@babel/runtime-7.18.6" 8533 sources."@colors/colors-1.5.0" 8534 (sources."@dabh/diagnostics-2.0.3" // { ··· 8618 sources."@types/mime-1.3.2" 8619 sources."@types/minimatch-3.0.5" 8620 sources."@types/multer-1.4.7" 8621 - sources."@types/node-18.0.1" 8622 (sources."@types/node-fetch-2.6.2" // { 8623 dependencies = [ 8624 sources."form-data-3.0.1" ··· 8635 sources."@types/tough-cookie-2.3.8" 8636 sources."@types/tunnel-0.0.3" 8637 sources."@types/yamljs-0.2.31" 8638 - sources."@vue/compiler-sfc-2.7.2" 8639 sources."abbrev-1.1.1" 8640 sources."accepts-1.3.8" 8641 sources."access-control-1.0.1" ··· 8687 ]; 8688 }) 8689 sources."avsc-5.7.4" 8690 - (sources."aws-sdk-2.1167.0" // { 8691 dependencies = [ 8692 sources."buffer-4.9.2" 8693 sources."events-1.1.1" ··· 8860 sources."cookie-0.4.1" 8861 sources."cookie-parser-1.4.6" 8862 sources."cookie-signature-1.0.6" 8863 - sources."core-js-3.23.3" 8864 sources."core-util-is-1.0.3" 8865 sources."crc-32-1.2.2" 8866 sources."cron-1.7.2" ··· 9053 sources."https-proxy-agent-5.0.1" 9054 sources."hyperlinker-1.0.0" 9055 sources."iconv-lite-0.4.24" 9056 - sources."ics-2.35.0" 9057 sources."ieee754-1.2.1" 9058 sources."ignore-5.2.0" 9059 (sources."imap-0.8.19" // { ··· 9150 sources."iconv-lite-0.6.3" 9151 ]; 9152 }) 9153 - sources."libphonenumber-js-1.10.7" 9154 sources."libqp-1.1.0" 9155 sources."limiter-1.1.5" 9156 sources."linkify-it-4.0.0" ··· 9186 sources."lodash.uniqby-4.7.0" 9187 sources."lodash.unset-4.5.2" 9188 sources."lodash.zipobject-4.1.3" 9189 - sources."logform-2.4.1" 9190 sources."long-4.0.0" 9191 sources."lossless-json-1.0.5" 9192 (sources."lower-case-2.0.2" // { ··· 9201 sources."yallist-2.1.2" 9202 ]; 9203 }) 9204 - sources."luxon-2.4.0" 9205 (sources."mailparser-3.5.0" // { 9206 dependencies = [ 9207 sources."iconv-lite-0.6.3" ··· 9216 }) 9217 sources."make-error-1.3.6" 9218 sources."make-error-cause-2.3.0" 9219 - sources."mappersmith-2.39.1" 9220 sources."material-colors-1.2.6" 9221 sources."md5-2.3.0" 9222 sources."media-typer-0.3.0" ··· 9245 sources."normalize-path-2.1.1" 9246 ]; 9247 }) 9248 - sources."moment-2.29.3" 9249 sources."moment-timezone-0.5.34" 9250 sources."monaco-editor-0.30.1" 9251 sources."mongodb-3.7.3" ··· 9277 ]; 9278 }) 9279 sources."mz-2.7.0" 9280 - sources."n8n-core-0.125.0" 9281 - sources."n8n-design-system-0.25.0" 9282 - sources."n8n-editor-ui-0.151.0" 9283 - (sources."n8n-nodes-base-0.183.0" // { 9284 dependencies = [ 9285 sources."iconv-lite-0.6.3" 9286 ]; 9287 }) 9288 - sources."n8n-workflow-0.107.0" 9289 (sources."named-placeholders-1.1.2" // { 9290 dependencies = [ 9291 sources."lru-cache-4.1.5" ··· 9317 sources."node-html-parser-5.3.3" 9318 sources."node-ssh-12.0.4" 9319 sources."nodeify-1.0.1" 9320 - sources."nodemailer-6.7.6" 9321 sources."nopt-5.0.0" 9322 sources."normalize-path-3.0.0" 9323 sources."normalize-wheel-1.0.1" ··· 9746 sources."core-util-is-1.0.2" 9747 ]; 9748 }) 9749 - sources."vm2-3.9.9" 9750 - sources."vue-2.7.2" 9751 sources."vue-color-2.8.1" 9752 - sources."vue-fragment-1.6.0" 9753 sources."vue-i18n-8.27.2" 9754 sources."vue2-boring-avatars-0.3.4" 9755 sources."webidl-conversions-3.0.1"
··· 148 sha512 = "yWshY9cdPthlebnb3Zuz/j0Lv4kjU6u7PR5sW7A9FF7EX+0irMRJAtyTq5TPiDHJfjH8gTSlnIYFj9m7Ed76IQ=="; 149 }; 150 }; 151 + "@azure/identity-2.1.0" = { 152 name = "_at_azure_slash_identity"; 153 packageName = "@azure/identity"; 154 + version = "2.1.0"; 155 src = fetchurl { 156 + url = "https://registry.npmjs.org/@azure/identity/-/identity-2.1.0.tgz"; 157 + sha512 = "BPDz1sK7Ul9t0l9YKLEa8PHqWU4iCfhGJ+ELJl6c8CP3TpJt2urNCbm0ZHsthmxRsYoMPbz2Dvzj30zXZVmAFw=="; 158 }; 159 }; 160 "@azure/keyvault-keys-4.4.0" = { ··· 175 sha512 = "aK4s3Xxjrx3daZr3VylxejK3vG5ExXck5WOHDJ8in/k9AqlfIyFMMT1uG7u8mNjX+QRILTIn0/Xgschfh/dQ9g=="; 176 }; 177 }; 178 + "@azure/msal-browser-2.27.0" = { 179 name = "_at_azure_slash_msal-browser"; 180 packageName = "@azure/msal-browser"; 181 + version = "2.27.0"; 182 src = fetchurl { 183 + url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.27.0.tgz"; 184 + sha512 = "PyATq2WvK+x32waRqqikym8wvn939iO9UhpFqhLwitNrfLa3PHUgJuuI9oLSQOS3/UzjYb8aqN+XzchU3n/ZuQ=="; 185 }; 186 }; 187 + "@azure/msal-common-7.1.0" = { 188 name = "_at_azure_slash_msal-common"; 189 packageName = "@azure/msal-common"; 190 + version = "7.1.0"; 191 src = fetchurl { 192 + url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-7.1.0.tgz"; 193 + sha512 = "WyfqE5mY/rggjqvq0Q5DxLnA33KSb0vfsUjxa95rycFknI03L5GPYI4HTU9D+g0PL5TtsQGnV3xzAGq9BFCVJQ=="; 194 }; 195 }; 196 + "@azure/msal-node-1.11.0" = { 197 name = "_at_azure_slash_msal-node"; 198 packageName = "@azure/msal-node"; 199 + version = "1.11.0"; 200 src = fetchurl { 201 + url = "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.11.0.tgz"; 202 + sha512 = "KW/XEexfCrPzdYbjY7NVmhq9okZT3Jvck55CGXpz9W5asxeq3EtrP45p+ZXtQVEfko0YJdolpCNqWUyXvanWZg=="; 203 }; 204 }; 205 + "@azure/storage-blob-12.11.0" = { 206 name = "_at_azure_slash_storage-blob"; 207 packageName = "@azure/storage-blob"; 208 + version = "12.11.0"; 209 src = fetchurl { 210 + url = "https://registry.npmjs.org/@azure/storage-blob/-/storage-blob-12.11.0.tgz"; 211 + sha512 = "na+FisoARuaOWaHWpmdtk3FeuTWf2VWamdJ9/TJJzj5ZdXPLC3juoDgFs6XVuJIoK30yuBpyFBEDXVRK4pB7Tg=="; 212 }; 213 }; 214 + "@babel/parser-7.18.8" = { 215 name = "_at_babel_slash_parser"; 216 packageName = "@babel/parser"; 217 + version = "7.18.8"; 218 src = fetchurl { 219 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz"; 220 + sha512 = "RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA=="; 221 }; 222 }; 223 "@babel/runtime-7.18.6" = { ··· 724 sha512 = "/SNsDidUFCvqqcWDwxv2feww/yqhNeTRL5CVoL3jU4Goc4kKEL10T7Eye65ZqPNi4HRx8sAEX59pV1aEH7drNA=="; 725 }; 726 }; 727 + "@types/node-18.0.3" = { 728 name = "_at_types_slash_node"; 729 packageName = "@types/node"; 730 + version = "18.0.3"; 731 src = fetchurl { 732 + url = "https://registry.npmjs.org/@types/node/-/node-18.0.3.tgz"; 733 + sha512 = "HzNRZtp4eepNitP+BD6k2L6DROIDG4Q0fm4x+dwfsr6LGmROENnok75VGw40628xf+iR24WeMFcHuuBDUAzzsQ=="; 734 }; 735 }; 736 "@types/node-fetch-2.6.2" = { ··· 841 sha512 = "QcJ5ZczaXAqbVD3o8mw/mEBhRvO5UAdTtbvgwL/OgoWubvNBh6/MxLBAigtcgIFaq3shon9m3POIxQaLQt4fxQ=="; 842 }; 843 }; 844 + "@vue/compiler-sfc-2.7.5" = { 845 name = "_at_vue_slash_compiler-sfc"; 846 packageName = "@vue/compiler-sfc"; 847 + version = "2.7.5"; 848 src = fetchurl { 849 + url = "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-2.7.5.tgz"; 850 + sha512 = "f2xlkMzBLbTAUy13N4aJBnmb7+86WJqoGqHDibkGHd1/CabpNVvzhpBFlfWJjBrGWIcWywNGgGSuoWzpCUuD4w=="; 851 }; 852 }; 853 "abbrev-1.1.1" = { ··· 1210 sha512 = "z4oo33lmnvvNRqfUe3YjDGGpqu/L2+wXBIhMtwq6oqZ+exOUAkQYM6zd2VWKF7AIlajOF8ZZuPFfryTG9iLC/w=="; 1211 }; 1212 }; 1213 + "aws-sdk-2.1173.0" = { 1214 name = "aws-sdk"; 1215 packageName = "aws-sdk"; 1216 + version = "2.1173.0"; 1217 src = fetchurl { 1218 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1173.0.tgz"; 1219 + sha512 = "RR5OENCE5N7J9sp6Are+8WacIa4sGgeVi3K0wezV97nDTHXJD82hSiaRCCN/xGfnB/GcWtPIBCetRD2tpiCN2w=="; 1220 }; 1221 }; 1222 "aws-sign2-0.7.0" = { ··· 2182 sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="; 2183 }; 2184 }; 2185 + "core-js-3.23.4" = { 2186 name = "core-js"; 2187 packageName = "core-js"; 2188 + version = "3.23.4"; 2189 src = fetchurl { 2190 + url = "https://registry.npmjs.org/core-js/-/core-js-3.23.4.tgz"; 2191 + sha512 = "vjsKqRc1RyAJC3Ye2kYqgfdThb3zYnx9CrqoCcjMOENMtQPC7ZViBvlDxwYU/2z2NI/IPuiXw5mT4hWhddqjzQ=="; 2192 }; 2193 }; 2194 "core-util-is-1.0.2" = { ··· 3595 sha512 = "4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw=="; 3596 }; 3597 }; 3598 + "ics-2.37.0" = { 3599 name = "ics"; 3600 packageName = "ics"; 3601 + version = "2.37.0"; 3602 src = fetchurl { 3603 + url = "https://registry.npmjs.org/ics/-/ics-2.37.0.tgz"; 3604 + sha512 = "pwjHe4nPFB/YulKlNo35z8BjjHej0PE/FcET/P7zMH+6pAfME1+NiUSFu/QbJN+o7AOJVXous626kNxrb33blg=="; 3605 }; 3606 }; 3607 "ieee754-1.1.13" = { ··· 4360 sha512 = "xOqorG21Va+3CjpFOfFTU7SWohHH2uIX9ZY4Byz6J+lvpfvc486tOAT/G9GfbrKtJ9O7NCX9o0aC2lxqbnZ9EA=="; 4361 }; 4362 }; 4363 + "libphonenumber-js-1.10.8" = { 4364 name = "libphonenumber-js"; 4365 packageName = "libphonenumber-js"; 4366 + version = "1.10.8"; 4367 src = fetchurl { 4368 + url = "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.10.8.tgz"; 4369 + sha512 = "MGgHrKRGE7sg7y0DikHybRDgTXcYv4HL+WwhDm5UAiChCNb5tcy5OEaU8XTTt5bDBwhZGCJNxoGMVBpZ4RfhIg=="; 4370 }; 4371 }; 4372 "libqp-1.1.0" = { ··· 4612 sha512 = "A9SzX4hMKWS25MyalwcOnNoplyHbkNVsjidhTp8ru0Sj23wY9GWBKS8gAIGDSAqeWjIjvE4KBEl24XXAs+v4wQ=="; 4613 }; 4614 }; 4615 + "logform-2.4.2" = { 4616 name = "logform"; 4617 packageName = "logform"; 4618 + version = "2.4.2"; 4619 src = fetchurl { 4620 + url = "https://registry.npmjs.org/logform/-/logform-2.4.2.tgz"; 4621 + sha512 = "W4c9himeAwXEdZ05dQNerhFz2XG80P9Oj0loPUMV23VC2it0orMHQhJm4hdnnor3rd1HsGf6a2lPwBM1zeXHGw=="; 4622 }; 4623 }; 4624 "long-4.0.0" = { ··· 4684 sha512 = "IXAq50s4qwrOBrXJklY+KhgZF+5y98PDaNo0gi/v2KQBFLyWr+JyFvijZXkGKjQj/h9c0OwoE+JZbwUXce76hQ=="; 4685 }; 4686 }; 4687 + "luxon-2.5.0" = { 4688 name = "luxon"; 4689 packageName = "luxon"; 4690 + version = "2.5.0"; 4691 src = fetchurl { 4692 + url = "https://registry.npmjs.org/luxon/-/luxon-2.5.0.tgz"; 4693 + sha512 = "IDkEPB80Rb6gCAU+FEib0t4FeJ4uVOuX1CQ9GsvU3O+JAGIgu0J7sf1OarXKaKDygTZIoJyU6YdZzTFRu+YR0A=="; 4694 }; 4695 }; 4696 "mailparser-3.5.0" = { ··· 4738 sha512 = "etgt+n4LlOkGSJbBTV9VROHA5R7ekIPS4vfh+bCAoJgRrJWdqJCBbpS3osRJ/HrT7R68MzMiY3L3sDJ/Fd8aBg=="; 4739 }; 4740 }; 4741 + "mappersmith-2.40.0" = { 4742 name = "mappersmith"; 4743 packageName = "mappersmith"; 4744 + version = "2.40.0"; 4745 src = fetchurl { 4746 + url = "https://registry.npmjs.org/mappersmith/-/mappersmith-2.40.0.tgz"; 4747 + sha512 = "Es99fy0E52fxmhRvCyed7WVlSyuz6ME/wOsRpSmi0GcbMEZ6y5D2GL4+qNGPCc2P270J5yw8L2zg+K4BWACcHg=="; 4748 }; 4749 }; 4750 "material-colors-1.2.6" = { ··· 4945 sha512 = "lLzfLHcyc10MKQnNUCv7dMcoY/2Qxd6wJfbqCcVk3LDb8An4hF6ohk5AztrvgKhJCqj36uyzi/p5se+tvyD+Wg=="; 4946 }; 4947 }; 4948 + "moment-2.29.4" = { 4949 name = "moment"; 4950 packageName = "moment"; 4951 + version = "2.29.4"; 4952 src = fetchurl { 4953 + url = "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz"; 4954 + sha512 = "5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w=="; 4955 }; 4956 }; 4957 "moment-timezone-0.5.34" = { ··· 5080 sha512 = "z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q=="; 5081 }; 5082 }; 5083 + "n8n-core-0.126.0" = { 5084 name = "n8n-core"; 5085 packageName = "n8n-core"; 5086 + version = "0.126.0"; 5087 src = fetchurl { 5088 + url = "https://registry.npmjs.org/n8n-core/-/n8n-core-0.126.0.tgz"; 5089 + sha512 = "+vXSQenGtjBBT+i5N3GZRYtbTxqXcWDOSPIZdO4HLVkt7YzfjF0ZFAILgs1baGaSEsXZuM6OE8uk5TKsjnUYKg=="; 5090 }; 5091 }; 5092 + "n8n-design-system-0.26.0" = { 5093 name = "n8n-design-system"; 5094 packageName = "n8n-design-system"; 5095 + version = "0.26.0"; 5096 src = fetchurl { 5097 + url = "https://registry.npmjs.org/n8n-design-system/-/n8n-design-system-0.26.0.tgz"; 5098 + sha512 = "wiD3V2Fkqs1jgNJBl+nvrbTDmDFVGyxJ0N6PY8/2tO1TxwWbWO03uj1dbGjzuepYGChyMnCM8h2pZplYRJbemw=="; 5099 }; 5100 }; 5101 + "n8n-editor-ui-0.152.0" = { 5102 name = "n8n-editor-ui"; 5103 packageName = "n8n-editor-ui"; 5104 + version = "0.152.0"; 5105 src = fetchurl { 5106 + url = "https://registry.npmjs.org/n8n-editor-ui/-/n8n-editor-ui-0.152.0.tgz"; 5107 + sha512 = "Gz65kORkN4aNtwcHxc9rOugX+hPoG5g6v4+Fv5sEW40ac6jxw9ZT3ApkJ8+UpE/7jvoLFmzhks8gar1I85Yh3w=="; 5108 }; 5109 }; 5110 + "n8n-nodes-base-0.184.0" = { 5111 name = "n8n-nodes-base"; 5112 packageName = "n8n-nodes-base"; 5113 + version = "0.184.0"; 5114 src = fetchurl { 5115 + url = "https://registry.npmjs.org/n8n-nodes-base/-/n8n-nodes-base-0.184.0.tgz"; 5116 + sha512 = "9jrZejz8INnkU8avs+BohvrlQ+YZcJnh1CIy0m7Q5+mkYQE8t/aoazU/k79TL93QXRfxYrNNa/34DtqbMgkcWw=="; 5117 }; 5118 }; 5119 + "n8n-workflow-0.108.0" = { 5120 name = "n8n-workflow"; 5121 packageName = "n8n-workflow"; 5122 + version = "0.108.0"; 5123 src = fetchurl { 5124 + url = "https://registry.npmjs.org/n8n-workflow/-/n8n-workflow-0.108.0.tgz"; 5125 + sha512 = "l9fXbNcXsMZkRZU9Ourn3MxCNTujub2ScZBXNefvvwPlto1Mr8602JpNP0v0dKYFd3+gJefgWXXCUKkfkuqTGQ=="; 5126 }; 5127 }; 5128 "named-placeholders-1.1.2" = { ··· 5296 sha512 = "KUdDsspqx89sD4UUyUKzdlUOper3hRkDVkrKh/89G+d9WKsU5ox51NWS4tB1XR5dPUdR4SP0E3molyEfOvSa3g=="; 5297 }; 5298 }; 5299 + "nodemailer-6.7.7" = { 5300 name = "nodemailer"; 5301 packageName = "nodemailer"; 5302 + version = "6.7.7"; 5303 src = fetchurl { 5304 + url = "https://registry.npmjs.org/nodemailer/-/nodemailer-6.7.7.tgz"; 5305 + sha512 = "pOLC/s+2I1EXuSqO5Wa34i3kXZG3gugDssH+ZNCevHad65tc8vQlCQpOLaUjopvkRQKm2Cki2aME7fEOPRy3bA=="; 5306 }; 5307 }; 5308 "nopt-5.0.0" = { ··· 7996 sha512 = "ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw=="; 7997 }; 7998 }; 7999 + "vm2-3.9.10" = { 8000 name = "vm2"; 8001 packageName = "vm2"; 8002 + version = "3.9.10"; 8003 src = fetchurl { 8004 + url = "https://registry.npmjs.org/vm2/-/vm2-3.9.10.tgz"; 8005 + sha512 = "AuECTSvwu2OHLAZYhG716YzwodKCIJxB6u1zG7PgSQwIgAlEaoXH52bxdcvT8GkGjnYK7r7yWDW0m0sOsPuBjQ=="; 8006 }; 8007 }; 8008 + "vue-2.7.5" = { 8009 name = "vue"; 8010 packageName = "vue"; 8011 + version = "2.7.5"; 8012 src = fetchurl { 8013 + url = "https://registry.npmjs.org/vue/-/vue-2.7.5.tgz"; 8014 + sha512 = "mUDXXgBIFr9dk0k/3dpB6wtnCxRhe9mbGxWLtha9mTUrEWkdkZW1d58vl98VKWH067NA8f1Wj4Qwq7y7DDYfyw=="; 8015 }; 8016 }; 8017 "vue-color-2.8.1" = { ··· 8023 sha512 = "BoLCEHisXi2QgwlhZBg9UepvzZZmi4176vbr+31Shen5WWZwSLVgdScEPcB+yrAtuHAz42309C0A4+WiL9lNBw=="; 8024 }; 8025 }; 8026 + "vue-fragment-1.5.1" = { 8027 name = "vue-fragment"; 8028 packageName = "vue-fragment"; 8029 + version = "1.5.1"; 8030 src = fetchurl { 8031 + url = "https://registry.npmjs.org/vue-fragment/-/vue-fragment-1.5.1.tgz"; 8032 + sha512 = "ig6eES6TcMBbANW71ylB+AJgRN+Zksb3f50AxjGpAk6hMzqmeuD80qeh4LJP0jVw2dMBMjgRUfIkrvxygoRgtQ=="; 8033 }; 8034 }; 8035 "vue-i18n-8.27.2" = { ··· 8416 n8n = nodeEnv.buildNodePackage { 8417 name = "n8n"; 8418 packageName = "n8n"; 8419 + version = "0.186.0"; 8420 src = fetchurl { 8421 + url = "https://registry.npmjs.org/n8n/-/n8n-0.186.0.tgz"; 8422 + sha512 = "2AGjWTEw0vvySVoBjuZogDXEtn0QTFhaOXF/l99jA+xI3P/QwAHGycdv/uBG9f5gMsvHtypSNX5lkx0NLUKWhg=="; 8423 }; 8424 dependencies = [ 8425 sources."@apidevtools/json-schema-ref-parser-8.0.0" ··· 8448 }) 8449 (sources."@azure/core-client-1.6.0" // { 8450 dependencies = [ 8451 sources."tslib-2.4.0" 8452 ]; 8453 }) 8454 (sources."@azure/core-http-2.2.5" // { 8455 dependencies = [ 8456 + sources."@azure/core-tracing-1.0.0-preview.13" 8457 sources."tough-cookie-4.0.0" 8458 sources."tslib-2.4.0" 8459 sources."universalify-0.1.2" ··· 8461 }) 8462 (sources."@azure/core-lro-2.2.4" // { 8463 dependencies = [ 8464 + sources."@azure/core-tracing-1.0.0-preview.13" 8465 sources."tslib-2.4.0" 8466 ]; 8467 }) ··· 8472 }) 8473 (sources."@azure/core-rest-pipeline-1.9.0" // { 8474 dependencies = [ 8475 sources."tslib-2.4.0" 8476 ]; 8477 }) 8478 + (sources."@azure/core-tracing-1.0.1" // { 8479 dependencies = [ 8480 sources."tslib-2.4.0" 8481 ]; ··· 8485 sources."tslib-2.4.0" 8486 ]; 8487 }) 8488 + (sources."@azure/identity-2.1.0" // { 8489 dependencies = [ 8490 sources."jwa-2.0.0" 8491 sources."jws-4.0.0" ··· 8495 }) 8496 (sources."@azure/keyvault-keys-4.4.0" // { 8497 dependencies = [ 8498 + sources."@azure/core-tracing-1.0.0-preview.13" 8499 sources."tslib-2.4.0" 8500 ]; 8501 }) ··· 8504 sources."tslib-2.4.0" 8505 ]; 8506 }) 8507 + sources."@azure/msal-browser-2.27.0" 8508 + sources."@azure/msal-common-7.1.0" 8509 + sources."@azure/msal-node-1.11.0" 8510 + (sources."@azure/storage-blob-12.11.0" // { 8511 dependencies = [ 8512 + sources."@azure/core-tracing-1.0.0-preview.13" 8513 sources."tslib-2.4.0" 8514 ]; 8515 }) 8516 + sources."@babel/parser-7.18.8" 8517 sources."@babel/runtime-7.18.6" 8518 sources."@colors/colors-1.5.0" 8519 (sources."@dabh/diagnostics-2.0.3" // { ··· 8603 sources."@types/mime-1.3.2" 8604 sources."@types/minimatch-3.0.5" 8605 sources."@types/multer-1.4.7" 8606 + sources."@types/node-18.0.3" 8607 (sources."@types/node-fetch-2.6.2" // { 8608 dependencies = [ 8609 sources."form-data-3.0.1" ··· 8620 sources."@types/tough-cookie-2.3.8" 8621 sources."@types/tunnel-0.0.3" 8622 sources."@types/yamljs-0.2.31" 8623 + sources."@vue/compiler-sfc-2.7.5" 8624 sources."abbrev-1.1.1" 8625 sources."accepts-1.3.8" 8626 sources."access-control-1.0.1" ··· 8672 ]; 8673 }) 8674 sources."avsc-5.7.4" 8675 + (sources."aws-sdk-2.1173.0" // { 8676 dependencies = [ 8677 sources."buffer-4.9.2" 8678 sources."events-1.1.1" ··· 8845 sources."cookie-0.4.1" 8846 sources."cookie-parser-1.4.6" 8847 sources."cookie-signature-1.0.6" 8848 + sources."core-js-3.23.4" 8849 sources."core-util-is-1.0.3" 8850 sources."crc-32-1.2.2" 8851 sources."cron-1.7.2" ··· 9038 sources."https-proxy-agent-5.0.1" 9039 sources."hyperlinker-1.0.0" 9040 sources."iconv-lite-0.4.24" 9041 + sources."ics-2.37.0" 9042 sources."ieee754-1.2.1" 9043 sources."ignore-5.2.0" 9044 (sources."imap-0.8.19" // { ··· 9135 sources."iconv-lite-0.6.3" 9136 ]; 9137 }) 9138 + sources."libphonenumber-js-1.10.8" 9139 sources."libqp-1.1.0" 9140 sources."limiter-1.1.5" 9141 sources."linkify-it-4.0.0" ··· 9171 sources."lodash.uniqby-4.7.0" 9172 sources."lodash.unset-4.5.2" 9173 sources."lodash.zipobject-4.1.3" 9174 + sources."logform-2.4.2" 9175 sources."long-4.0.0" 9176 sources."lossless-json-1.0.5" 9177 (sources."lower-case-2.0.2" // { ··· 9186 sources."yallist-2.1.2" 9187 ]; 9188 }) 9189 + sources."luxon-2.5.0" 9190 (sources."mailparser-3.5.0" // { 9191 dependencies = [ 9192 sources."iconv-lite-0.6.3" ··· 9201 }) 9202 sources."make-error-1.3.6" 9203 sources."make-error-cause-2.3.0" 9204 + sources."mappersmith-2.40.0" 9205 sources."material-colors-1.2.6" 9206 sources."md5-2.3.0" 9207 sources."media-typer-0.3.0" ··· 9230 sources."normalize-path-2.1.1" 9231 ]; 9232 }) 9233 + sources."moment-2.29.4" 9234 sources."moment-timezone-0.5.34" 9235 sources."monaco-editor-0.30.1" 9236 sources."mongodb-3.7.3" ··· 9262 ]; 9263 }) 9264 sources."mz-2.7.0" 9265 + sources."n8n-core-0.126.0" 9266 + sources."n8n-design-system-0.26.0" 9267 + sources."n8n-editor-ui-0.152.0" 9268 + (sources."n8n-nodes-base-0.184.0" // { 9269 dependencies = [ 9270 sources."iconv-lite-0.6.3" 9271 ]; 9272 }) 9273 + sources."n8n-workflow-0.108.0" 9274 (sources."named-placeholders-1.1.2" // { 9275 dependencies = [ 9276 sources."lru-cache-4.1.5" ··· 9302 sources."node-html-parser-5.3.3" 9303 sources."node-ssh-12.0.4" 9304 sources."nodeify-1.0.1" 9305 + sources."nodemailer-6.7.7" 9306 sources."nopt-5.0.0" 9307 sources."normalize-path-3.0.0" 9308 sources."normalize-wheel-1.0.1" ··· 9731 sources."core-util-is-1.0.2" 9732 ]; 9733 }) 9734 + sources."vm2-3.9.10" 9735 + sources."vue-2.7.5" 9736 sources."vue-color-2.8.1" 9737 + sources."vue-fragment-1.5.1" 9738 sources."vue-i18n-8.27.2" 9739 sources."vue2-boring-avatars-0.3.4" 9740 sources."webidl-conversions-3.0.1"
+6 -4
pkgs/applications/networking/remote/vmware-horizon-client/default.nix
··· 18 19 # For USB support, ensure that /var/run/vmware/<YOUR-UID> 20 # exists and is owned by you. Then run vmware-usbarbitrator as root. 21 - bins = [ "vmware-view" "vmware-usbarbitrator" ]; 22 23 # This forces the default GTK theme (Adwaita) because Horizon is prone to 24 # UI usability issues when using non-default themes, such as Adwaita-dark. ··· 30 ''; 31 32 vmwareHorizonClientFiles = stdenv.mkDerivation { 33 - name = "vmwareHorizonClientFiles"; 34 inherit version; 35 src = fetchurl { 36 url = "https://download3.vmware.com/software/CART23FQ1_LIN_2203_TARBALL/VMware-Horizon-Client-Linux-2203-8.5.0-19586897.tar.gz"; ··· 104 name = "vmware-view"; 105 desktopName = "VMware Horizon Client"; 106 icon = "${vmwareHorizonClientFiles}/share/icons/vmware-view.png"; 107 - exec = "${vmwareFHSUserEnv "vmware-view"}/bin/vmware-view %u"; 108 mimeTypes = [ "x-scheme-handler/vmware-view" ]; 109 }; 110 ··· 131 passthru.updateScript = ./update.sh; 132 133 meta = with lib; { 134 - mainProgram = "vmware-view"; 135 description = "Allows you to connect to your VMware Horizon virtual desktop"; 136 homepage = "https://www.vmware.com/go/viewclients"; 137 license = licenses.unfree;
··· 18 19 # For USB support, ensure that /var/run/vmware/<YOUR-UID> 20 # exists and is owned by you. Then run vmware-usbarbitrator as root. 21 + bins = [ "vmware-view" "vmware-view-legacy" "vmware-usbarbitrator" ]; 22 + 23 + mainProgram = "vmware-view-legacy"; 24 25 # This forces the default GTK theme (Adwaita) because Horizon is prone to 26 # UI usability issues when using non-default themes, such as Adwaita-dark. ··· 32 ''; 33 34 vmwareHorizonClientFiles = stdenv.mkDerivation { 35 + pname = "vmware-horizon-files"; 36 inherit version; 37 src = fetchurl { 38 url = "https://download3.vmware.com/software/CART23FQ1_LIN_2203_TARBALL/VMware-Horizon-Client-Linux-2203-8.5.0-19586897.tar.gz"; ··· 106 name = "vmware-view"; 107 desktopName = "VMware Horizon Client"; 108 icon = "${vmwareHorizonClientFiles}/share/icons/vmware-view.png"; 109 + exec = "${vmwareFHSUserEnv mainProgram}/bin/${mainProgram} %u"; 110 mimeTypes = [ "x-scheme-handler/vmware-view" ]; 111 }; 112 ··· 133 passthru.updateScript = ./update.sh; 134 135 meta = with lib; { 136 + inherit mainProgram; 137 description = "Allows you to connect to your VMware Horizon virtual desktop"; 138 homepage = "https://www.vmware.com/go/viewclients"; 139 license = licenses.unfree;
+5 -3
pkgs/applications/networking/sync/rsync/rrsync.nix
··· 1 - { lib, stdenv, fetchurl, perl, rsync, fetchpatch }: 2 3 stdenv.mkDerivation { 4 pname = "rrsync"; 5 inherit (rsync) version srcs; 6 7 - buildInputs = [ rsync perl ]; 8 - 9 # Skip configure and build phases. 10 # We just want something from the support directory 11 dontConfigure = true;
··· 1 + { stdenv, python3, rsync }: 2 3 stdenv.mkDerivation { 4 pname = "rrsync"; 5 inherit (rsync) version srcs; 6 7 + buildInputs = [ 8 + rsync 9 + (python3.withPackages (pythonPackages: with pythonPackages; [ braceexpand ])) 10 + ]; 11 # Skip configure and build phases. 12 # We just want something from the support directory 13 dontConfigure = true;
+2 -2
pkgs/applications/office/qownnotes/default.nix
··· 5 6 mkDerivation rec { 7 pname = "qownnotes"; 8 - version = "22.6.1"; 9 10 src = fetchurl { 11 url = "https://download.tuxfamily.org/${pname}/src/${pname}-${version}.tar.xz"; 12 # Fetch the checksum of current version with curl: 13 # curl https://download.tuxfamily.org/qownnotes/src/qownnotes-<version>.tar.xz.sha256 14 - sha256 = "c5b2075d42298d28f901ad2df8eb65f5a61aa59727fae9eeb1f92dac1b63d8ba"; 15 }; 16 17 nativeBuildInputs = [ qmake qttools ];
··· 5 6 mkDerivation rec { 7 pname = "qownnotes"; 8 + version = "22.7.1"; 9 10 src = fetchurl { 11 url = "https://download.tuxfamily.org/${pname}/src/${pname}-${version}.tar.xz"; 12 # Fetch the checksum of current version with curl: 13 # curl https://download.tuxfamily.org/qownnotes/src/qownnotes-<version>.tar.xz.sha256 14 + sha256 = "9431a3315a533799525217e5ba03757b3c39e8259bf307c81330304f043b8b77"; 15 }; 16 17 nativeBuildInputs = [ qmake qttools ];
+3 -3
pkgs/applications/science/machine-learning/nengo-gui/default.nix
··· 2 3 python3Packages.buildPythonPackage rec { 4 pname = "nengo-gui"; 5 - version = "0.4.8"; 6 7 src = fetchFromGitHub { 8 owner = "nengo"; 9 repo = "nengo-gui"; 10 - rev = "v${version}"; 11 - sha256 = "1awb0h2l6yifb77zah7a4qzxqvkk4ac5fynangalidr10sk9rzk3"; 12 }; 13 14 propagatedBuildInputs = with python3Packages; [ nengo ];
··· 2 3 python3Packages.buildPythonPackage rec { 4 pname = "nengo-gui"; 5 + version = "0.4.9"; 6 7 src = fetchFromGitHub { 8 owner = "nengo"; 9 repo = "nengo-gui"; 10 + rev = "refs/tags/v${version}"; 11 + sha256 = "sha256-aBi4roe9pqPmpbW5zrbDoIvyH5mTKgIzL2O5j1+VBMY="; 12 }; 13 14 propagatedBuildInputs = with python3Packages; [ nengo ];
+22 -13
pkgs/applications/science/math/lp_solve/default.nix
··· 1 - { lib, stdenv, fetchurl, cctools, fixDarwinDylibNames }: 2 3 stdenv.mkDerivation rec { 4 - 5 pname = "lp_solve"; 6 version = "5.5.2.11"; 7 ··· 13 nativeBuildInputs = lib.optionals stdenv.isDarwin [ 14 cctools 15 fixDarwinDylibNames 16 ]; 17 18 dontConfigure = true; 19 20 - buildPhase = let 21 - ccc = if stdenv.isDarwin then "ccc.osx" else "ccc"; 22 - in '' 23 - runHook preBuild 24 25 - (cd lpsolve55 && bash -x -e ${ccc}) 26 - (cd lp_solve && bash -x -e ${ccc}) 27 28 - runHook postBuild 29 - ''; 30 31 installPhase = '' 32 runHook preInstall ··· 44 45 meta = with lib; { 46 description = "A Mixed Integer Linear Programming (MILP) solver"; 47 - homepage = "http://lpsolve.sourceforge.net"; 48 - license = licenses.gpl2Plus; 49 maintainers = with maintainers; [ smironov ]; 50 - platforms = platforms.unix; 51 }; 52 }
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , cctools 5 + , fixDarwinDylibNames 6 + , autoSignDarwinBinariesHook 7 + }: 8 9 stdenv.mkDerivation rec { 10 pname = "lp_solve"; 11 version = "5.5.2.11"; 12 ··· 18 nativeBuildInputs = lib.optionals stdenv.isDarwin [ 19 cctools 20 fixDarwinDylibNames 21 + ] ++ lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [ 22 + autoSignDarwinBinariesHook 23 ]; 24 25 dontConfigure = true; 26 27 + buildPhase = 28 + let 29 + ccc = if stdenv.isDarwin then "ccc.osx" else "ccc"; 30 + in 31 + '' 32 + runHook preBuild 33 34 + (cd lpsolve55 && bash -x -e ${ccc}) 35 + (cd lp_solve && bash -x -e ${ccc}) 36 37 + runHook postBuild 38 + ''; 39 40 installPhase = '' 41 runHook preInstall ··· 53 54 meta = with lib; { 55 description = "A Mixed Integer Linear Programming (MILP) solver"; 56 + homepage = "http://lpsolve.sourceforge.net"; 57 + license = licenses.gpl2Plus; 58 maintainers = with maintainers; [ smironov ]; 59 + platforms = platforms.unix; 60 }; 61 }
+13
pkgs/applications/science/misc/graphia/breakpad-sigstksz.patch
···
··· 1 + diff --git a/source/thirdparty/breakpad/src/client/linux/handler/exception_handler.cc b/source/thirdparty/breakpad/src/client/linux/handler/exception_handler.cc 2 + index ca353c4099..499be0a986 100644 3 + --- a/source/thirdparty/breakpad/src/client/linux/handler/exception_handler.cc 4 + +++ b/source/thirdparty/breakpad/src/client/linux/handler/exception_handler.cc 5 + @@ -138,7 +138,7 @@ void InstallAlternateStackLocked() { 6 + // SIGSTKSZ may be too small to prevent the signal handlers from overrunning 7 + // the alternative stack. Ensure that the size of the alternative stack is 8 + // large enough. 9 + - static const unsigned kSigStackSize = std::max(16384, SIGSTKSZ); 10 + + const unsigned kSigStackSize = std::max<unsigned>(16384, SIGSTKSZ); 11 + 12 + // Only set an alternative stack if there isn't already one, or if the current 13 + // one is too small.
+18 -4
pkgs/applications/science/misc/graphia/default.nix
··· 1 - { stdenv, lib, cmake, fetchFromGitHub 2 - , wrapQtAppsHook, qtbase, qtquickcontrols2, qtgraphicaleffects 3 }: 4 5 stdenv.mkDerivation rec { 6 pname = "graphia"; 7 - version = "2.2"; 8 9 src = fetchFromGitHub { 10 owner = "graphia-app"; 11 repo = "graphia"; 12 rev = version; 13 - sha256 = "sha256:05givvvg743sawqy2vhljkfgn5v1s907sflsnsv11ddx6x51na1w"; 14 }; 15 16 nativeBuildInputs = [ 17 cmake 18 wrapQtAppsHook 19 ]; 20 buildInputs = [ 21 qtbase 22 qtquickcontrols2
··· 1 + { stdenv 2 + , lib 3 + , cmake 4 + , fetchFromGitHub 5 + , wrapQtAppsHook 6 + , qtbase 7 + , qtquickcontrols2 8 + , qtgraphicaleffects 9 }: 10 11 stdenv.mkDerivation rec { 12 pname = "graphia"; 13 + version = "3.0"; 14 15 src = fetchFromGitHub { 16 owner = "graphia-app"; 17 repo = "graphia"; 18 rev = version; 19 + sha256 = "sha256-9JIVMtu8wlux7vIapOQQIemE7ehIol2XZuIvwLfB8fY="; 20 }; 21 22 + patches = [ 23 + # Fix for a breakpad incompatibility with glibc>2.33 24 + # https://github.com/pytorch/pytorch/issues/70297 25 + # https://github.com/google/breakpad/commit/605c51ed96ad44b34c457bbca320e74e194c317e 26 + ./breakpad-sigstksz.patch 27 + ]; 28 + 29 nativeBuildInputs = [ 30 cmake 31 wrapQtAppsHook 32 ]; 33 + 34 buildInputs = [ 35 qtbase 36 qtquickcontrols2
+12 -2
pkgs/applications/system/glances/default.nix
··· 1 - { stdenv, buildPythonApplication, fetchFromGitHub, isPyPy, lib 2 , defusedxml, future, packaging, psutil, setuptools 3 # Optional dependencies: 4 , bottle, pysnmp ··· 20 }; 21 22 # Some tests fail in the sandbox (they e.g. require access to /sys/class/power_supply): 23 - patches = lib.optional (doCheck && stdenv.isLinux) ./skip-failing-tests.patch; 24 25 # On Darwin this package segfaults due to mismatch of pure and impure 26 # CoreFoundation. This issues was solved for binaries but for interpreted
··· 1 + { stdenv, buildPythonApplication, fetchFromGitHub, fetchpatch, isPyPy, lib 2 , defusedxml, future, packaging, psutil, setuptools 3 # Optional dependencies: 4 , bottle, pysnmp ··· 20 }; 21 22 # Some tests fail in the sandbox (they e.g. require access to /sys/class/power_supply): 23 + patches = lib.optional (doCheck && stdenv.isLinux) ./skip-failing-tests.patch 24 + ++ lib.optional (doCheck && stdenv.isDarwin) 25 + [ 26 + # Fix "TypeError: unsupported operand type(s) for +=: 'int' and 'NoneType'" on darwin 27 + # https://github.com/nicolargo/glances/pull/2082 28 + (fetchpatch { 29 + name = "fix-typeerror-when-testing-on-darwin.patch"; 30 + url = "https://patch-diff.githubusercontent.com/raw/nicolargo/glances/pull/2082.patch"; 31 + sha256 = "sha256-MIePPywZ2dTTqXjf7EJiHlQ7eltiHzgocqrnLeLJwZ4="; 32 + }) 33 + ]; 34 35 # On Darwin this package segfaults due to mismatch of pure and impure 36 # CoreFoundation. This issues was solved for binaries but for interpreted
+2 -2
pkgs/applications/terminal-emulators/gnome-console/default.nix
··· 22 23 stdenv.mkDerivation rec { 24 pname = "gnome-console"; 25 - version = "42.beta"; 26 27 src = fetchurl { 28 url = "mirror://gnome/sources/gnome-console/${lib.versions.major version}/${pname}-${version}.tar.xz"; 29 - sha256 = "Lq/shyAhDcwB5HqpihvGx2+xwVU2Xax7/NerFwR36DQ="; 30 }; 31 32 buildInputs = [
··· 22 23 stdenv.mkDerivation rec { 24 pname = "gnome-console"; 25 + version = "42.0"; 26 27 src = fetchurl { 28 url = "mirror://gnome/sources/gnome-console/${lib.versions.major version}/${pname}-${version}.tar.xz"; 29 + sha256 = "Fae8i72047ZZ//DFK2GdxilxkPhnRp2D4wOvSzibuaM="; 30 }; 31 32 buildInputs = [
+3 -3
pkgs/applications/version-management/git-and-tools/gh/default.nix
··· 2 3 buildGoModule rec { 4 pname = "gh"; 5 - version = "2.13.0"; 6 7 src = fetchFromGitHub { 8 owner = "cli"; 9 repo = "cli"; 10 rev = "v${version}"; 11 - sha256 = "sha256-9FWmEujTUWexyqNQVagU/U9AyOZJdWL5y4Q0ZHRBxcc="; 12 }; 13 14 - vendorSha256 = "sha256-a/+Dj66zT/W8rxvvXnJSdoyYhajMY1T3kEbrpC24tMU="; 15 16 nativeBuildInputs = [ installShellFiles ]; 17
··· 2 3 buildGoModule rec { 4 pname = "gh"; 5 + version = "2.14.1"; 6 7 src = fetchFromGitHub { 8 owner = "cli"; 9 repo = "cli"; 10 rev = "v${version}"; 11 + sha256 = "sha256-Mp8frinjAdsNYIFLFsk8yCeQLgo6cW33B4JadNHbifE="; 12 }; 13 14 + vendorSha256 = "sha256-yhUP6BaR2xloy3/g7pKhn5ljwTEm8XwPaOiZCIfIM7E="; 15 16 nativeBuildInputs = [ installShellFiles ]; 17
+2 -2
pkgs/applications/version-management/git-and-tools/tig/default.nix
··· 4 5 stdenv.mkDerivation rec { 6 pname = "tig"; 7 - version = "2.5.5"; 8 9 src = fetchFromGitHub { 10 owner = "jonas"; 11 repo = pname; 12 rev = "${pname}-${version}"; 13 - sha256 = "1yx63jfbaa5h0d3lfqlczs9l7j2rnhp5jpa8qcjn4z1n415ay2x5"; 14 }; 15 16 nativeBuildInputs = [ makeWrapper autoreconfHook asciidoc xmlto docbook_xsl docbook_xml_dtd_45 findXMLCatalogs pkg-config ];
··· 4 5 stdenv.mkDerivation rec { 6 pname = "tig"; 7 + version = "2.5.6"; 8 9 src = fetchFromGitHub { 10 owner = "jonas"; 11 repo = pname; 12 rev = "${pname}-${version}"; 13 + sha256 = "sha256-WJtva3LbzVqtcAt0kmnti3RZTPg/CBjk6JQYa2VzpSQ="; 14 }; 15 16 nativeBuildInputs = [ makeWrapper autoreconfHook asciidoc xmlto docbook_xsl docbook_xml_dtd_45 findXMLCatalogs pkg-config ];
+2 -2
pkgs/applications/video/ffmpeg-normalize/default.nix
··· 7 8 buildPythonApplication rec { 9 pname = "ffmpeg-normalize"; 10 - version = "1.23.0"; 11 12 src = fetchPypi { 13 inherit pname version; 14 - sha256 = "sha256-DSBh3m7gGm5fWH47YWALlyhi4x6A2RcVrpuDDpXolSI="; 15 }; 16 17 propagatedBuildInputs = [ ffmpeg ffmpeg-progress-yield ];
··· 7 8 buildPythonApplication rec { 9 pname = "ffmpeg-normalize"; 10 + version = "1.23.1"; 11 12 src = fetchPypi { 13 inherit pname version; 14 + sha256 = "sha256-23s5mYwoIUiBs1MXGJVepycGj8e1xCuFAgim5NHKZRc="; 15 }; 16 17 propagatedBuildInputs = [ ffmpeg ffmpeg-progress-yield ];
+39
pkgs/applications/video/media-downloader/default.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , qt5 6 + , ffmpeg-full 7 + , aria2 8 + , yt-dlp 9 + , python3 10 + }: 11 + 12 + stdenv.mkDerivation rec { 13 + pname = "media-downloader"; 14 + version = "2.4.0"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "mhogomchungu"; 18 + repo = pname; 19 + rev = "${version}"; 20 + sha256 = "sha256-EyfhomwBtdAt6HGRwnpiijm2D1LfaCAoG5qk3orDG98="; 21 + }; 22 + 23 + nativeBuildInputs = [ cmake qt5.wrapQtAppsHook ]; 24 + 25 + preFixup = '' 26 + qtWrapperArgs+=( 27 + --prefix PATH : "${lib.makeBinPath [ ffmpeg-full aria2 yt-dlp python3 ]}" 28 + ) 29 + ''; 30 + 31 + meta = with lib; { 32 + description = "A Qt/C++ GUI front end to youtube-dl"; 33 + homepage = "https://github.com/mhogomchungu/media-downloader"; 34 + license = licenses.gpl2Plus; 35 + broken = stdenv.isDarwin; 36 + platforms = platforms.unix; 37 + maintainers = with maintainers; [ zendo ]; 38 + }; 39 + }
+1 -1
pkgs/build-support/dotnet/nuget-to-nix/nuget-to-nix.sh
··· 25 26 pkg_src="$(jq --raw-output '.source' "$(dirname "$pkg_spec")/.nupkg.metadata")" 27 if [[ $pkg_src != https://api.nuget.org/* ]]; then 28 - pkg_source_url="${nuget_sources_cache[$pkg_src]:=$(curl --fail "$pkg_src" | jq --raw-output '.resources[] | select(."@type" == "PackageBaseAddress/3.0.0")."@id"')}" 29 pkg_url="$pkg_source_url${pkg_name,,}/${pkg_version,,}/${pkg_name,,}.${pkg_version,,}.nupkg" 30 echo " (fetchNuGet { pname = \"$pkg_name\"; version = \"$pkg_version\"; sha256 = \"$pkg_sha256\"; url = \"$pkg_url\"; })" >> ${tmpfile} 31 else
··· 25 26 pkg_src="$(jq --raw-output '.source' "$(dirname "$pkg_spec")/.nupkg.metadata")" 27 if [[ $pkg_src != https://api.nuget.org/* ]]; then 28 + pkg_source_url="${nuget_sources_cache[$pkg_src]:=$(curl -n --fail "$pkg_src" | jq --raw-output '.resources[] | select(."@type" == "PackageBaseAddress/3.0.0")."@id"')}" 29 pkg_url="$pkg_source_url${pkg_name,,}/${pkg_version,,}/${pkg_name,,}.${pkg_version,,}.nupkg" 30 echo " (fetchNuGet { pname = \"$pkg_name\"; version = \"$pkg_version\"; sha256 = \"$pkg_sha256\"; url = \"$pkg_url\"; })" >> ${tmpfile} 31 else
+2 -15
pkgs/build-support/emacs/wrapper.nix
··· 135 ''} 136 } 137 138 - siteAutoloads="$out/share/emacs/site-lisp/nix-generated-autoload.el" 139 - touch $siteAutoloads 140 - 141 # Iterate over the array of inputs (avoiding nix's own interpolation) 142 for pkg in "''${requires[@]}"; do 143 linkEmacsPackage $pkg 144 - find $pkg -name "*-autoloads.el" \ 145 - -exec echo \(load \"{}\" \'noerror \'nomessage\) \; >> $siteAutoloads 146 done 147 - echo "(provide 'nix-generated-autoload)" >> $siteAutoloads 148 149 siteStart="$out/share/emacs/site-lisp/site-start.el" 150 siteStartByteCompiled="$siteStart"c ··· 180 > "$subdirs" 181 182 # Byte-compiling improves start-up time only slightly, but costs nothing. 183 - $emacs/bin/emacs --batch -f batch-byte-compile "$siteStart" "$subdirs" "$siteAutoloads" 184 185 ${optionalString nativeComp '' 186 $emacs/bin/emacs --batch \ 187 --eval "(add-to-list 'native-comp-eln-load-path \"$out/share/emacs/native-lisp/\")" \ 188 - -f batch-native-compile "$siteStart" "$subdirs" "$siteAutoloads" 189 ''} 190 ''; 191 ··· 197 # Wrap emacs and friends so they find our site-start.el before the original. 198 for prog in $emacs/bin/*; do # */ 199 local progname=$(basename "$prog") 200 - local autoloadExpression="" 201 rm -f "$out/bin/$progname" 202 - if [[ $progname == emacs ]]; then 203 - # progs other than "emacs" do not understand the `-l` switches 204 - autoloadExpression="-l cl-loaddefs -l nix-generated-autoload" 205 - fi 206 207 substitute ${./wrapper.sh} $out/bin/$progname \ 208 --subst-var-by bash ${emacs.stdenv.shell} \ 209 --subst-var-by wrapperSiteLisp "$deps/share/emacs/site-lisp" \ 210 --subst-var-by wrapperSiteLispNative "$deps/share/emacs/native-lisp:" \ 211 - --subst-var autoloadExpression \ 212 --subst-var prog 213 chmod +x $out/bin/$progname 214 done ··· 228 --subst-var-by bash ${emacs.stdenv.shell} \ 229 --subst-var-by wrapperSiteLisp "$deps/share/emacs/site-lisp" \ 230 --subst-var-by wrapperSiteLispNative "$deps/share/emacs/native-lisp:" \ 231 - --subst-var-by autoloadExpression "-l cl-loaddefs -l nix-generated-autoload" \ 232 --subst-var-by prog "$emacs/Applications/Emacs.app/Contents/MacOS/Emacs" 233 chmod +x $out/Applications/Emacs.app/Contents/MacOS/Emacs 234 fi
··· 135 ''} 136 } 137 138 # Iterate over the array of inputs (avoiding nix's own interpolation) 139 for pkg in "''${requires[@]}"; do 140 linkEmacsPackage $pkg 141 done 142 143 siteStart="$out/share/emacs/site-lisp/site-start.el" 144 siteStartByteCompiled="$siteStart"c ··· 174 > "$subdirs" 175 176 # Byte-compiling improves start-up time only slightly, but costs nothing. 177 + $emacs/bin/emacs --batch -f batch-byte-compile "$siteStart" "$subdirs" 178 179 ${optionalString nativeComp '' 180 $emacs/bin/emacs --batch \ 181 --eval "(add-to-list 'native-comp-eln-load-path \"$out/share/emacs/native-lisp/\")" \ 182 + -f batch-native-compile "$siteStart" "$subdirs" 183 ''} 184 ''; 185 ··· 191 # Wrap emacs and friends so they find our site-start.el before the original. 192 for prog in $emacs/bin/*; do # */ 193 local progname=$(basename "$prog") 194 rm -f "$out/bin/$progname" 195 196 substitute ${./wrapper.sh} $out/bin/$progname \ 197 --subst-var-by bash ${emacs.stdenv.shell} \ 198 --subst-var-by wrapperSiteLisp "$deps/share/emacs/site-lisp" \ 199 --subst-var-by wrapperSiteLispNative "$deps/share/emacs/native-lisp:" \ 200 --subst-var prog 201 chmod +x $out/bin/$progname 202 done ··· 216 --subst-var-by bash ${emacs.stdenv.shell} \ 217 --subst-var-by wrapperSiteLisp "$deps/share/emacs/site-lisp" \ 218 --subst-var-by wrapperSiteLispNative "$deps/share/emacs/native-lisp:" \ 219 --subst-var-by prog "$emacs/Applications/Emacs.app/Contents/MacOS/Emacs" 220 chmod +x $out/Applications/Emacs.app/Contents/MacOS/Emacs 221 fi
+1 -1
pkgs/build-support/emacs/wrapper.sh
··· 44 export EMACSNATIVELOADPATH="${newNativeLoadPath[*]}" 45 export emacsWithPackages_siteLispNative=@wrapperSiteLispNative@ 46 47 - exec @prog@ @autoloadExpression@ "$@"
··· 44 export EMACSNATIVELOADPATH="${newNativeLoadPath[*]}" 45 export emacsWithPackages_siteLispNative=@wrapperSiteLispNative@ 46 47 + exec @prog@ "$@"
+3 -3
pkgs/data/icons/papirus-icon-theme/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchurl, gtk3, pantheon, breeze-icons, gnome-icon-theme, hicolor-icon-theme, papirus-folders, color ? "blue" }: 2 3 stdenv.mkDerivation rec { 4 pname = "papirus-icon-theme"; ··· 28 mv {,e}Papirus* $out/share/icons 29 30 for theme in $out/share/icons/*; do 31 - ${papirus-folders}/bin/papirus-folders -t $theme -o -C ${color} 32 - gtk-update-icon-cache $theme 33 done 34 35 runHook postInstall
··· 1 + { lib, stdenv, fetchFromGitHub, fetchurl, gtk3, pantheon, breeze-icons, gnome-icon-theme, hicolor-icon-theme, papirus-folders, color ? null }: 2 3 stdenv.mkDerivation rec { 4 pname = "papirus-icon-theme"; ··· 28 mv {,e}Papirus* $out/share/icons 29 30 for theme in $out/share/icons/*; do 31 + ${lib.optionalString (color != null) "${papirus-folders}/bin/papirus-folders -t $theme -o -C ${color}"} 32 + gtk-update-icon-cache --force $theme 33 done 34 35 runHook postInstall
+28 -8
pkgs/data/icons/zafiro-icons/default.nix
··· 1 - { lib, stdenvNoCC, fetchFromGitHub, gtk3, breeze-icons, gnome-icon-theme, numix-icon-theme, numix-icon-theme-circle, hicolor-icon-theme, jdupes }: 2 3 stdenvNoCC.mkDerivation rec { 4 pname = "zafiro-icons"; 5 - version = "1.2"; 6 7 src = fetchFromGitHub { 8 owner = "zayronxio"; 9 repo = pname; 10 rev = version; 11 - sha256 = "sha256-Awc5Sw4X25pXEd4Ob0u6A6Uu0e8FYfwp0fEl90vrsUE="; 12 }; 13 14 nativeBuildInputs = [ ··· 33 installPhase = '' 34 runHook preInstall 35 36 - # remove copy file, as it is there clearly by mistake 37 - rm "apps/scalable/android-sdk (copia 1).svg" 38 39 - mkdir -p $out/share/icons/Zafiro-icons 40 - cp -a * $out/share/icons/Zafiro-icons 41 42 - gtk-update-icon-cache $out/share/icons/Zafiro-icons 43 44 jdupes --link-soft --recurse $out/share 45 46 runHook postInstall 47 ''; 48 49 meta = with lib; { 50 description = "Icon pack flat with light colors";
··· 1 + { lib 2 + , stdenvNoCC 3 + , fetchFromGitHub 4 + , gtk3 5 + , breeze-icons 6 + , gnome-icon-theme 7 + , numix-icon-theme 8 + , numix-icon-theme-circle 9 + , hicolor-icon-theme 10 + , jdupes 11 + , gitUpdater 12 + }: 13 14 stdenvNoCC.mkDerivation rec { 15 pname = "zafiro-icons"; 16 + version = "1.3"; 17 18 src = fetchFromGitHub { 19 owner = "zayronxio"; 20 repo = pname; 21 rev = version; 22 + sha256 = "sha256-IbFnlUOSADYMNMfvRuRPndxcQbnV12BqMDb9bJRjnoU="; 23 }; 24 25 nativeBuildInputs = [ ··· 44 installPhase = '' 45 runHook preInstall 46 47 + mkdir -p $out/share/icons 48 49 + for theme in Dark Light; do 50 + cp -a $theme $out/share/icons/Zafiro-icons-$theme 51 52 + # remove unneeded files 53 + rm $out/share/icons/Zafiro-icons-$theme/_config.yml 54 + 55 + # remove files with non-ascii characters in name 56 + # https://github.com/zayronxio/Zafiro-icons/issues/111 57 + rm $out/share/icons/Zafiro-icons-$theme/apps/scalable/βTORRENT.svg 58 + 59 + gtk-update-icon-cache $out/share/icons/Zafiro-icons-$theme 60 + done 61 62 jdupes --link-soft --recurse $out/share 63 64 runHook postInstall 65 ''; 66 + 67 + passthru.updateScript = gitUpdater { inherit pname version; }; 68 69 meta = with lib; { 70 description = "Icon pack flat with light colors";
+4 -4
pkgs/data/misc/hackage/pin.json
··· 1 { 2 - "commit": "e304e8df4de976f80d5d58e47cf560be91055799", 3 - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/e304e8df4de976f80d5d58e47cf560be91055799.tar.gz", 4 - "sha256": "10xws4lazlx8bx26xc8h6c7ab7gkzc01an7nwip3bghc1h92zr4m", 5 - "msg": "Update from Hackage at 2022-07-02T15:59:48Z" 6 }
··· 1 { 2 + "commit": "c096b9d83b86ab92dffac5d97927e8458ebd4dfa", 3 + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/c096b9d83b86ab92dffac5d97927e8458ebd4dfa.tar.gz", 4 + "sha256": "1j9j97zn8qhxsigi73319l0dairkymjk6mknsgindzgsvrrag9xg", 5 + "msg": "Update from Hackage at 2022-07-07T10:54:07Z" 6 }
+2 -2
pkgs/data/themes/flat-remix-gtk/default.nix
··· 6 7 stdenv.mkDerivation rec { 8 pname = "flat-remix-gtk"; 9 - version = "20220527"; 10 11 src = fetchFromGitHub { 12 owner = "daniruiz"; 13 repo = pname; 14 rev = version; 15 - sha256 = "sha256-mT7dRhLnJg5vZCmT0HbP6GXSjKFQ55BqisvCMwV3Zxc="; 16 }; 17 18 dontBuild = true;
··· 6 7 stdenv.mkDerivation rec { 8 pname = "flat-remix-gtk"; 9 + version = "20220627"; 10 11 src = fetchFromGitHub { 12 owner = "daniruiz"; 13 repo = pname; 14 rev = version; 15 + sha256 = "sha256-z/ILu8UPbyEN/ejsxZ3CII3y3dI04ZNa1i6nyjKFis8="; 16 }; 17 18 dontBuild = true;
+5 -1
pkgs/desktops/lxqt/xdg-desktop-portal-lxqt/default.nix
··· 4 , cmake 5 , kwindowsystem 6 , libfm-qt 7 , qtx11extras 8 , lxqtUpdateScript 9 }: 10 11 mkDerivation rec { ··· 26 buildInputs = [ 27 kwindowsystem 28 libfm-qt 29 qtx11extras 30 - ]; 31 32 passthru.updateScript = lxqtUpdateScript { inherit pname version src; }; 33
··· 4 , cmake 5 , kwindowsystem 6 , libfm-qt 7 + , lxqt-qtplugin 8 , qtx11extras 9 , lxqtUpdateScript 10 + , extraQtStyles ? [] 11 }: 12 13 mkDerivation rec { ··· 28 buildInputs = [ 29 kwindowsystem 30 libfm-qt 31 + lxqt-qtplugin 32 qtx11extras 33 + ] 34 + ++ extraQtStyles; 35 36 passthru.updateScript = lxqtUpdateScript { inherit pname version src; }; 37
+2 -2
pkgs/desktops/pantheon/desktop/wingpanel-indicators/notifications/default.nix
··· 16 17 stdenv.mkDerivation rec { 18 pname = "wingpanel-indicator-notifications"; 19 - version = "6.0.5"; 20 21 src = fetchFromGitHub { 22 owner = "elementary"; 23 repo = pname; 24 rev = version; 25 - sha256 = "sha256-Y/oDD/AsA9ZiKsfEV3/jnT3tmQYAIIToAZjMRVriK98="; 26 }; 27 28 nativeBuildInputs = [
··· 16 17 stdenv.mkDerivation rec { 18 pname = "wingpanel-indicator-notifications"; 19 + version = "6.0.6"; 20 21 src = fetchFromGitHub { 22 owner = "elementary"; 23 repo = pname; 24 rev = version; 25 + sha256 = "sha256-wAoLU59hEYubWn9o7cVlZ/mJoxJJjEkJA9xu9gwxQ7o="; 26 }; 27 28 nativeBuildInputs = [
+1 -1
pkgs/desktops/plasma-5/fetch.sh
··· 1 - WGET_ARGS=( https://download.kde.org/stable/plasma/5.25.2/ -A '*.tar.xz' )
··· 1 + WGET_ARGS=( https://download.kde.org/stable/plasma/5.25.3/ -A '*.tar.xz' )
+212 -212
pkgs/desktops/plasma-5/srcs.nix
··· 4 5 { 6 bluedevil = { 7 - version = "5.25.2"; 8 src = fetchurl { 9 - url = "${mirror}/stable/plasma/5.25.2/bluedevil-5.25.2.tar.xz"; 10 - sha256 = "0sx8qbmig787jmfixmv6ajawv6j846gcbj67szkfw4r4yqpsagr1"; 11 - name = "bluedevil-5.25.2.tar.xz"; 12 }; 13 }; 14 breeze = { 15 - version = "5.25.2"; 16 src = fetchurl { 17 - url = "${mirror}/stable/plasma/5.25.2/breeze-5.25.2.tar.xz"; 18 - sha256 = "198vzmhljbwrzn48x7g8caj2qwj3q82n6xlj50lpvxcmc0cv740w"; 19 - name = "breeze-5.25.2.tar.xz"; 20 }; 21 }; 22 breeze-grub = { 23 - version = "5.25.2"; 24 src = fetchurl { 25 - url = "${mirror}/stable/plasma/5.25.2/breeze-grub-5.25.2.tar.xz"; 26 - sha256 = "1fnqfmjzlhw1lizax0225qypdm7k4zpxc90s57f2n2173qgi3qfc"; 27 - name = "breeze-grub-5.25.2.tar.xz"; 28 }; 29 }; 30 breeze-gtk = { 31 - version = "5.25.2"; 32 src = fetchurl { 33 - url = "${mirror}/stable/plasma/5.25.2/breeze-gtk-5.25.2.tar.xz"; 34 - sha256 = "0vzl0nf39ky3f4jdsmm7hz9kj6yacjjx5mawgzv417zaa6khg8id"; 35 - name = "breeze-gtk-5.25.2.tar.xz"; 36 }; 37 }; 38 breeze-plymouth = { 39 - version = "5.25.2"; 40 src = fetchurl { 41 - url = "${mirror}/stable/plasma/5.25.2/breeze-plymouth-5.25.2.tar.xz"; 42 - sha256 = "026np3kkh6sd0rji7bl2x84za0bpgsljl2dmb3lhwydn93vpv9n1"; 43 - name = "breeze-plymouth-5.25.2.tar.xz"; 44 }; 45 }; 46 discover = { 47 - version = "5.25.2"; 48 src = fetchurl { 49 - url = "${mirror}/stable/plasma/5.25.2/discover-5.25.2.tar.xz"; 50 - sha256 = "1cgalkajbpnpn6vzr84sqkvfdvsanx5l9pxhdkrd94s27gbr9l8c"; 51 - name = "discover-5.25.2.tar.xz"; 52 }; 53 }; 54 drkonqi = { 55 - version = "5.25.2"; 56 src = fetchurl { 57 - url = "${mirror}/stable/plasma/5.25.2/drkonqi-5.25.2.tar.xz"; 58 - sha256 = "1a9y88vkq6qiaiabwy1a13cycj4n79ikn4zdk10zrkgqlnvbyq3y"; 59 - name = "drkonqi-5.25.2.tar.xz"; 60 }; 61 }; 62 kactivitymanagerd = { 63 - version = "5.25.2"; 64 src = fetchurl { 65 - url = "${mirror}/stable/plasma/5.25.2/kactivitymanagerd-5.25.2.tar.xz"; 66 - sha256 = "06arr36kapjq0gbvk7wnwdgzn8bj64h2cpcrhvzjwmgh4azsz2ww"; 67 - name = "kactivitymanagerd-5.25.2.tar.xz"; 68 }; 69 }; 70 kde-cli-tools = { 71 - version = "5.25.2"; 72 src = fetchurl { 73 - url = "${mirror}/stable/plasma/5.25.2/kde-cli-tools-5.25.2.tar.xz"; 74 - sha256 = "1s6v8xnx1d51lax02fkrx191jxiw6mbsixiw4hvh91viwdckmwr3"; 75 - name = "kde-cli-tools-5.25.2.tar.xz"; 76 }; 77 }; 78 kde-gtk-config = { 79 - version = "5.25.2"; 80 src = fetchurl { 81 - url = "${mirror}/stable/plasma/5.25.2/kde-gtk-config-5.25.2.tar.xz"; 82 - sha256 = "1v5j2jy90mi309v43fgn3fadk0gapzvn48zizns6avc9v6h9kgvq"; 83 - name = "kde-gtk-config-5.25.2.tar.xz"; 84 }; 85 }; 86 kdecoration = { 87 - version = "5.25.2"; 88 src = fetchurl { 89 - url = "${mirror}/stable/plasma/5.25.2/kdecoration-5.25.2.tar.xz"; 90 - sha256 = "1ynghykyv0h4g3micdc3qf8xxy3vxrdd01gy31jskisksgjkyvw7"; 91 - name = "kdecoration-5.25.2.tar.xz"; 92 }; 93 }; 94 kdeplasma-addons = { 95 - version = "5.25.2"; 96 src = fetchurl { 97 - url = "${mirror}/stable/plasma/5.25.2/kdeplasma-addons-5.25.2.tar.xz"; 98 - sha256 = "04n00s6z2cvwax1i8vs1f3by72qzpicsyw3c366kxnaiz3lklqzk"; 99 - name = "kdeplasma-addons-5.25.2.tar.xz"; 100 }; 101 }; 102 kgamma5 = { 103 - version = "5.25.2"; 104 src = fetchurl { 105 - url = "${mirror}/stable/plasma/5.25.2/kgamma5-5.25.2.tar.xz"; 106 - sha256 = "0z784j2lyrwl0rlxivgcb91rcpziqnvvfhxzdjk8mkc7j9cxznkx"; 107 - name = "kgamma5-5.25.2.tar.xz"; 108 }; 109 }; 110 khotkeys = { 111 - version = "5.25.2"; 112 src = fetchurl { 113 - url = "${mirror}/stable/plasma/5.25.2/khotkeys-5.25.2.tar.xz"; 114 - sha256 = "1yr0zydpsl26gmn4n72lql9n4fxrfbzi405srd2694yaxl5xyzl1"; 115 - name = "khotkeys-5.25.2.tar.xz"; 116 }; 117 }; 118 kinfocenter = { 119 - version = "5.25.2"; 120 src = fetchurl { 121 - url = "${mirror}/stable/plasma/5.25.2/kinfocenter-5.25.2.tar.xz"; 122 - sha256 = "004sgb89h0024bliha0bzfzx82d0qi62zicnq68jqngbj5hkmaqm"; 123 - name = "kinfocenter-5.25.2.tar.xz"; 124 }; 125 }; 126 kmenuedit = { 127 - version = "5.25.2"; 128 src = fetchurl { 129 - url = "${mirror}/stable/plasma/5.25.2/kmenuedit-5.25.2.tar.xz"; 130 - sha256 = "0d9ldili1zjv4ri1b779zl0kyfxl818n3r7j8cqd3jyfrmh45jgi"; 131 - name = "kmenuedit-5.25.2.tar.xz"; 132 }; 133 }; 134 kscreen = { 135 - version = "5.25.2"; 136 src = fetchurl { 137 - url = "${mirror}/stable/plasma/5.25.2/kscreen-5.25.2.tar.xz"; 138 - sha256 = "0llassqfn24vkc88pagd0haqdlblg5ha09rw5q4cc6irvqwrvaxa"; 139 - name = "kscreen-5.25.2.tar.xz"; 140 }; 141 }; 142 kscreenlocker = { 143 - version = "5.25.2"; 144 src = fetchurl { 145 - url = "${mirror}/stable/plasma/5.25.2/kscreenlocker-5.25.2.tar.xz"; 146 - sha256 = "15zkmxwcv9cdaczxvjpipngv77dqhn0s26678831axfjzh7v89iy"; 147 - name = "kscreenlocker-5.25.2.tar.xz"; 148 }; 149 }; 150 ksshaskpass = { 151 - version = "5.25.2"; 152 src = fetchurl { 153 - url = "${mirror}/stable/plasma/5.25.2/ksshaskpass-5.25.2.tar.xz"; 154 - sha256 = "1zwhrzclbg3mxdwif13f9avv01kykwi8b3j9qk4ycfrwdvwidnd6"; 155 - name = "ksshaskpass-5.25.2.tar.xz"; 156 }; 157 }; 158 ksystemstats = { 159 - version = "5.25.2"; 160 src = fetchurl { 161 - url = "${mirror}/stable/plasma/5.25.2/ksystemstats-5.25.2.tar.xz"; 162 - sha256 = "1i6sg5j97w4nl508yl80v2rnr9zmb5f6ymvjvvkfbigp62yz8gcf"; 163 - name = "ksystemstats-5.25.2.tar.xz"; 164 }; 165 }; 166 kwallet-pam = { 167 - version = "5.25.2"; 168 src = fetchurl { 169 - url = "${mirror}/stable/plasma/5.25.2/kwallet-pam-5.25.2.tar.xz"; 170 - sha256 = "0pffi0jkfib01aqqif5401avkljxsi468wg5nva1fg3h8w9i7xqd"; 171 - name = "kwallet-pam-5.25.2.tar.xz"; 172 }; 173 }; 174 kwayland-integration = { 175 - version = "5.25.2"; 176 src = fetchurl { 177 - url = "${mirror}/stable/plasma/5.25.2/kwayland-integration-5.25.2.tar.xz"; 178 - sha256 = "1praxpzsbwb7b1p6rsnrmv9wdn5p0j28vch6ydj2qc25f8h7nvfj"; 179 - name = "kwayland-integration-5.25.2.tar.xz"; 180 }; 181 }; 182 kwin = { 183 - version = "5.25.2"; 184 src = fetchurl { 185 - url = "${mirror}/stable/plasma/5.25.2/kwin-5.25.2.tar.xz"; 186 - sha256 = "1mskwppqv3ismlg4r8fmlrya455mds8ng36lma4acj13vsh1wx2l"; 187 - name = "kwin-5.25.2.tar.xz"; 188 }; 189 }; 190 kwrited = { 191 - version = "5.25.2"; 192 src = fetchurl { 193 - url = "${mirror}/stable/plasma/5.25.2/kwrited-5.25.2.tar.xz"; 194 - sha256 = "02c24ywwrzyz5k54ywh32lx2yrjd0xydn1f20h9h6cx16fmlwdq3"; 195 - name = "kwrited-5.25.2.tar.xz"; 196 }; 197 }; 198 layer-shell-qt = { 199 - version = "5.25.2"; 200 src = fetchurl { 201 - url = "${mirror}/stable/plasma/5.25.2/layer-shell-qt-5.25.2.tar.xz"; 202 - sha256 = "14xk9hjxm267dfb8dxgwdjmws95nqc9ygr51mdzsyxqwis9v1i4m"; 203 - name = "layer-shell-qt-5.25.2.tar.xz"; 204 }; 205 }; 206 libkscreen = { 207 - version = "5.25.2"; 208 src = fetchurl { 209 - url = "${mirror}/stable/plasma/5.25.2/libkscreen-5.25.2.tar.xz"; 210 - sha256 = "0jy2p87jj39c75jmj95jqpilphwhzqf7m1qljhbrjgr2w1adnz9p"; 211 - name = "libkscreen-5.25.2.tar.xz"; 212 }; 213 }; 214 libksysguard = { 215 - version = "5.25.2"; 216 src = fetchurl { 217 - url = "${mirror}/stable/plasma/5.25.2/libksysguard-5.25.2.tar.xz"; 218 - sha256 = "020wxlkj03sj0d81r1f8axw4i78gg45cm3zf6ikhyvka9hbh5xcy"; 219 - name = "libksysguard-5.25.2.tar.xz"; 220 }; 221 }; 222 milou = { 223 - version = "5.25.2"; 224 src = fetchurl { 225 - url = "${mirror}/stable/plasma/5.25.2/milou-5.25.2.tar.xz"; 226 - sha256 = "15gf3mgbx8z4cahw6w978r5inpn9rfhzj7x5sfhi6w631nasd1yl"; 227 - name = "milou-5.25.2.tar.xz"; 228 }; 229 }; 230 oxygen = { 231 - version = "5.25.2"; 232 src = fetchurl { 233 - url = "${mirror}/stable/plasma/5.25.2/oxygen-5.25.2.tar.xz"; 234 - sha256 = "0d7705s5lp4lac7rn7q7sy2l0n5519zqfpx6746434z505zc1krc"; 235 - name = "oxygen-5.25.2.tar.xz"; 236 }; 237 }; 238 oxygen-sounds = { 239 - version = "5.25.2"; 240 src = fetchurl { 241 - url = "${mirror}/stable/plasma/5.25.2/oxygen-sounds-5.25.2.tar.xz"; 242 - sha256 = "13hhvfndz57gsdb70jnb12vcich4bfrm0rvb12zaza5j1qk939k7"; 243 - name = "oxygen-sounds-5.25.2.tar.xz"; 244 }; 245 }; 246 plasma-browser-integration = { 247 - version = "5.25.2"; 248 src = fetchurl { 249 - url = "${mirror}/stable/plasma/5.25.2/plasma-browser-integration-5.25.2.tar.xz"; 250 - sha256 = "0fyqd160c0ap3z8k2p16x4k8hvbdmnfp2hbx0p93d3acpi9vpqa3"; 251 - name = "plasma-browser-integration-5.25.2.tar.xz"; 252 }; 253 }; 254 plasma-desktop = { 255 - version = "5.25.2"; 256 src = fetchurl { 257 - url = "${mirror}/stable/plasma/5.25.2/plasma-desktop-5.25.2.tar.xz"; 258 - sha256 = "09pnxh29xzag90sxdcjw8jafwrlpm8d4bl0xws74df94kqkcira1"; 259 - name = "plasma-desktop-5.25.2.tar.xz"; 260 }; 261 }; 262 plasma-disks = { 263 - version = "5.25.2"; 264 src = fetchurl { 265 - url = "${mirror}/stable/plasma/5.25.2/plasma-disks-5.25.2.tar.xz"; 266 - sha256 = "1fvka372hjqb2m6m5479g9w9z96hygiaqm2jzh9f5qn6aj4baq84"; 267 - name = "plasma-disks-5.25.2.tar.xz"; 268 }; 269 }; 270 plasma-firewall = { 271 - version = "5.25.2"; 272 src = fetchurl { 273 - url = "${mirror}/stable/plasma/5.25.2/plasma-firewall-5.25.2.tar.xz"; 274 - sha256 = "0gciy4nl7dcghgwcy7kx3zbsgvygs90wfrzr1nkk2vgphgvr4c6c"; 275 - name = "plasma-firewall-5.25.2.tar.xz"; 276 }; 277 }; 278 plasma-integration = { 279 - version = "5.25.2"; 280 src = fetchurl { 281 - url = "${mirror}/stable/plasma/5.25.2/plasma-integration-5.25.2.tar.xz"; 282 - sha256 = "1mvzxasr3m2jf7kvx5df0ijilbs7nvw3kxpsa543c2bmp6ib9zla"; 283 - name = "plasma-integration-5.25.2.tar.xz"; 284 }; 285 }; 286 plasma-mobile = { 287 - version = "5.25.2"; 288 src = fetchurl { 289 - url = "${mirror}/stable/plasma/5.25.2/plasma-mobile-5.25.2.tar.xz"; 290 - sha256 = "0jgrw9wp0l289sygpr0mg7zcjg97bdgl039vdabf4ixd721swmz8"; 291 - name = "plasma-mobile-5.25.2.tar.xz"; 292 }; 293 }; 294 plasma-nano = { 295 - version = "5.25.2"; 296 src = fetchurl { 297 - url = "${mirror}/stable/plasma/5.25.2/plasma-nano-5.25.2.tar.xz"; 298 - sha256 = "1byhcnbjy691jkmhd7pch0rxhi6bbrzhzx47c97mqgxid5a8j0bk"; 299 - name = "plasma-nano-5.25.2.tar.xz"; 300 }; 301 }; 302 plasma-nm = { 303 - version = "5.25.2"; 304 src = fetchurl { 305 - url = "${mirror}/stable/plasma/5.25.2/plasma-nm-5.25.2.tar.xz"; 306 - sha256 = "1hwxsprrwxap5q707jv9w8i7l3rql33dwh66fwqrjjm5v3ncac48"; 307 - name = "plasma-nm-5.25.2.tar.xz"; 308 }; 309 }; 310 plasma-pa = { 311 - version = "5.25.2"; 312 src = fetchurl { 313 - url = "${mirror}/stable/plasma/5.25.2/plasma-pa-5.25.2.tar.xz"; 314 - sha256 = "1k925flcmgi78rln7nb0vh43gdf1001wk68n3zdx6wmhscpbjwwd"; 315 - name = "plasma-pa-5.25.2.tar.xz"; 316 }; 317 }; 318 plasma-sdk = { 319 - version = "5.25.2"; 320 src = fetchurl { 321 - url = "${mirror}/stable/plasma/5.25.2/plasma-sdk-5.25.2.tar.xz"; 322 - sha256 = "15iaw4lggsmd4hhgdkwcp4q3j1y9rxjngc5gxh7ah28ijmq6fnr1"; 323 - name = "plasma-sdk-5.25.2.tar.xz"; 324 }; 325 }; 326 plasma-systemmonitor = { 327 - version = "5.25.2"; 328 src = fetchurl { 329 - url = "${mirror}/stable/plasma/5.25.2/plasma-systemmonitor-5.25.2.tar.xz"; 330 - sha256 = "02jw59b7190wqkhyz4w8zcdydxpp9kq1dxd9x51wy0wpcp6igina"; 331 - name = "plasma-systemmonitor-5.25.2.tar.xz"; 332 }; 333 }; 334 plasma-tests = { 335 - version = "5.25.2"; 336 src = fetchurl { 337 - url = "${mirror}/stable/plasma/5.25.2/plasma-tests-5.25.2.tar.xz"; 338 - sha256 = "0zq4w8js35b9p0gih7x92iscmm2snwgm7bclrh29gvxyfsjir8wa"; 339 - name = "plasma-tests-5.25.2.tar.xz"; 340 }; 341 }; 342 plasma-thunderbolt = { 343 - version = "5.25.2"; 344 src = fetchurl { 345 - url = "${mirror}/stable/plasma/5.25.2/plasma-thunderbolt-5.25.2.tar.xz"; 346 - sha256 = "1mjh14yfap7jr181xvkar9hgmqzvghb4rs2d45b1ddwz3n340ak6"; 347 - name = "plasma-thunderbolt-5.25.2.tar.xz"; 348 }; 349 }; 350 plasma-vault = { 351 - version = "5.25.2"; 352 src = fetchurl { 353 - url = "${mirror}/stable/plasma/5.25.2/plasma-vault-5.25.2.tar.xz"; 354 - sha256 = "12z4kcrsp5jy16x4kssc9l7d2acbkg30jyg6f77jqh1ra671y1a5"; 355 - name = "plasma-vault-5.25.2.tar.xz"; 356 }; 357 }; 358 plasma-workspace = { 359 - version = "5.25.2"; 360 src = fetchurl { 361 - url = "${mirror}/stable/plasma/5.25.2/plasma-workspace-5.25.2.tar.xz"; 362 - sha256 = "16chbhmby9ixyh46xqsa0nd6yhpf3xlk2sv43g34my1hkhp63r6w"; 363 - name = "plasma-workspace-5.25.2.tar.xz"; 364 }; 365 }; 366 plasma-workspace-wallpapers = { 367 - version = "5.25.2"; 368 src = fetchurl { 369 - url = "${mirror}/stable/plasma/5.25.2/plasma-workspace-wallpapers-5.25.2.tar.xz"; 370 - sha256 = "12r2zfz63xgfv0sxv1px7hbwan9pv3ik5h7lkfhcjbi9bhav2pyr"; 371 - name = "plasma-workspace-wallpapers-5.25.2.tar.xz"; 372 }; 373 }; 374 plymouth-kcm = { 375 - version = "5.25.2"; 376 src = fetchurl { 377 - url = "${mirror}/stable/plasma/5.25.2/plymouth-kcm-5.25.2.tar.xz"; 378 - sha256 = "04wfd5a63zbnvsngxpj0jvvhjhcchk2nd0ln8i2zdhhr0xlsbiw1"; 379 - name = "plymouth-kcm-5.25.2.tar.xz"; 380 }; 381 }; 382 polkit-kde-agent = { 383 - version = "1-5.25.2"; 384 src = fetchurl { 385 - url = "${mirror}/stable/plasma/5.25.2/polkit-kde-agent-1-5.25.2.tar.xz"; 386 - sha256 = "1hcyw7qzryvqlszqv7lmhmhz7fbjd4961xq7hh18glm53rrz3z31"; 387 - name = "polkit-kde-agent-1-5.25.2.tar.xz"; 388 }; 389 }; 390 powerdevil = { 391 - version = "5.25.2"; 392 src = fetchurl { 393 - url = "${mirror}/stable/plasma/5.25.2/powerdevil-5.25.2.tar.xz"; 394 - sha256 = "1ahq10mrnryq87ihj5b6a1ifjnyam7sxcgbr3avc2jpb4q8njmb6"; 395 - name = "powerdevil-5.25.2.tar.xz"; 396 }; 397 }; 398 qqc2-breeze-style = { 399 - version = "5.25.2"; 400 src = fetchurl { 401 - url = "${mirror}/stable/plasma/5.25.2/qqc2-breeze-style-5.25.2.tar.xz"; 402 - sha256 = "1l8133qlqhdq8y42yiy0njgfv9lzxlc6fdicfmr21bfvj3aj20mk"; 403 - name = "qqc2-breeze-style-5.25.2.tar.xz"; 404 }; 405 }; 406 sddm-kcm = { 407 - version = "5.25.2"; 408 src = fetchurl { 409 - url = "${mirror}/stable/plasma/5.25.2/sddm-kcm-5.25.2.tar.xz"; 410 - sha256 = "0idr9ckrbyh66m0lbza66z2v24pfzwx04np84242p79kyqgjlljf"; 411 - name = "sddm-kcm-5.25.2.tar.xz"; 412 }; 413 }; 414 systemsettings = { 415 - version = "5.25.2"; 416 src = fetchurl { 417 - url = "${mirror}/stable/plasma/5.25.2/systemsettings-5.25.2.tar.xz"; 418 - sha256 = "1bz00nnrmpm2kjcapzaxkhx0j4a2vn0nhshgch65h7f3kjp4z0nm"; 419 - name = "systemsettings-5.25.2.tar.xz"; 420 }; 421 }; 422 xdg-desktop-portal-kde = { 423 - version = "5.25.2"; 424 src = fetchurl { 425 - url = "${mirror}/stable/plasma/5.25.2/xdg-desktop-portal-kde-5.25.2.tar.xz"; 426 - sha256 = "1sjm15z83s6vna78ffn390sdr4pnyw5yl8lq0jz79mkxyz2w4y2h"; 427 - name = "xdg-desktop-portal-kde-5.25.2.tar.xz"; 428 }; 429 }; 430 }
··· 4 5 { 6 bluedevil = { 7 + version = "5.25.3"; 8 src = fetchurl { 9 + url = "${mirror}/stable/plasma/5.25.3/bluedevil-5.25.3.tar.xz"; 10 + sha256 = "059nm5rd5l8ql78slrjcgkjhka7g1rnh0f1nbgf57qccs7wp6qb5"; 11 + name = "bluedevil-5.25.3.tar.xz"; 12 }; 13 }; 14 breeze = { 15 + version = "5.25.3"; 16 src = fetchurl { 17 + url = "${mirror}/stable/plasma/5.25.3/breeze-5.25.3.tar.xz"; 18 + sha256 = "0za75ckgfcdxrh2qxgyl2c1273g2xqwmd55njsis1yvwryadypqw"; 19 + name = "breeze-5.25.3.tar.xz"; 20 }; 21 }; 22 breeze-grub = { 23 + version = "5.25.3"; 24 src = fetchurl { 25 + url = "${mirror}/stable/plasma/5.25.3/breeze-grub-5.25.3.tar.xz"; 26 + sha256 = "12l6skbbr4wv86k5f8969lg9m30x2nrgm38w0mr7fnsqavpbm7v6"; 27 + name = "breeze-grub-5.25.3.tar.xz"; 28 }; 29 }; 30 breeze-gtk = { 31 + version = "5.25.3"; 32 src = fetchurl { 33 + url = "${mirror}/stable/plasma/5.25.3/breeze-gtk-5.25.3.tar.xz"; 34 + sha256 = "1nmnxrhidv420bqm97cgmck44kzi6sdqaqg3bim07hbnzbq76d6r"; 35 + name = "breeze-gtk-5.25.3.tar.xz"; 36 }; 37 }; 38 breeze-plymouth = { 39 + version = "5.25.3"; 40 src = fetchurl { 41 + url = "${mirror}/stable/plasma/5.25.3/breeze-plymouth-5.25.3.tar.xz"; 42 + sha256 = "1lvsr48mrfjjvs132x2bn4dpwals8k8xinddn9nxykvqw5fiw3wd"; 43 + name = "breeze-plymouth-5.25.3.tar.xz"; 44 }; 45 }; 46 discover = { 47 + version = "5.25.3"; 48 src = fetchurl { 49 + url = "${mirror}/stable/plasma/5.25.3/discover-5.25.3.tar.xz"; 50 + sha256 = "0bdg5gxl4zymmy44pvxs9nlk71psdra3778z20ss1j1k3x8dhlrs"; 51 + name = "discover-5.25.3.tar.xz"; 52 }; 53 }; 54 drkonqi = { 55 + version = "5.25.3"; 56 src = fetchurl { 57 + url = "${mirror}/stable/plasma/5.25.3/drkonqi-5.25.3.tar.xz"; 58 + sha256 = "11g6pqxb4gjcg9jsm3z9yiqljkks30i2mvanvas5ds1y4py3q7a1"; 59 + name = "drkonqi-5.25.3.tar.xz"; 60 }; 61 }; 62 kactivitymanagerd = { 63 + version = "5.25.3"; 64 src = fetchurl { 65 + url = "${mirror}/stable/plasma/5.25.3/kactivitymanagerd-5.25.3.tar.xz"; 66 + sha256 = "1095rmvgc9fzflpd9l1kzwdgk5zh7wxyyx7vzzb1kpdhvg4nwx57"; 67 + name = "kactivitymanagerd-5.25.3.tar.xz"; 68 }; 69 }; 70 kde-cli-tools = { 71 + version = "5.25.3"; 72 src = fetchurl { 73 + url = "${mirror}/stable/plasma/5.25.3/kde-cli-tools-5.25.3.tar.xz"; 74 + sha256 = "0m8v51ngxfwjianvw1ydr2dpblgik8kv7zw8mi95361kck9jh31h"; 75 + name = "kde-cli-tools-5.25.3.tar.xz"; 76 }; 77 }; 78 kde-gtk-config = { 79 + version = "5.25.3"; 80 src = fetchurl { 81 + url = "${mirror}/stable/plasma/5.25.3/kde-gtk-config-5.25.3.tar.xz"; 82 + sha256 = "0xjb0vff7mw1kfj5b472plclk80hdqxi2858m3nmkh41bl6a523r"; 83 + name = "kde-gtk-config-5.25.3.tar.xz"; 84 }; 85 }; 86 kdecoration = { 87 + version = "5.25.3"; 88 src = fetchurl { 89 + url = "${mirror}/stable/plasma/5.25.3/kdecoration-5.25.3.tar.xz"; 90 + sha256 = "0b6ynqkndmlac89hv339k365m7wykp9y238df62jlq4vpr1r9x9y"; 91 + name = "kdecoration-5.25.3.tar.xz"; 92 }; 93 }; 94 kdeplasma-addons = { 95 + version = "5.25.3"; 96 src = fetchurl { 97 + url = "${mirror}/stable/plasma/5.25.3/kdeplasma-addons-5.25.3.tar.xz"; 98 + sha256 = "0z976qy49dbvn8nskkrwc1zfnjd3gdzbxzwkg0ini6vypfysybqm"; 99 + name = "kdeplasma-addons-5.25.3.tar.xz"; 100 }; 101 }; 102 kgamma5 = { 103 + version = "5.25.3"; 104 src = fetchurl { 105 + url = "${mirror}/stable/plasma/5.25.3/kgamma5-5.25.3.tar.xz"; 106 + sha256 = "10750h6pb98c39s6ijk353jahwjhnj2nqmsmspx9jdz8ig20ygm0"; 107 + name = "kgamma5-5.25.3.tar.xz"; 108 }; 109 }; 110 khotkeys = { 111 + version = "5.25.3"; 112 src = fetchurl { 113 + url = "${mirror}/stable/plasma/5.25.3/khotkeys-5.25.3.tar.xz"; 114 + sha256 = "1v4c7lljdvl56mkk8hgbrrx13jdsq7mg8ggrf3qnv1x48yi31rdj"; 115 + name = "khotkeys-5.25.3.tar.xz"; 116 }; 117 }; 118 kinfocenter = { 119 + version = "5.25.3"; 120 src = fetchurl { 121 + url = "${mirror}/stable/plasma/5.25.3/kinfocenter-5.25.3.tar.xz"; 122 + sha256 = "17hkyraqk4cwrv3rnlbw5jby7v8yv4mfxign1f3n5ldq76v9van1"; 123 + name = "kinfocenter-5.25.3.tar.xz"; 124 }; 125 }; 126 kmenuedit = { 127 + version = "5.25.3"; 128 src = fetchurl { 129 + url = "${mirror}/stable/plasma/5.25.3/kmenuedit-5.25.3.tar.xz"; 130 + sha256 = "0y374al92r0v5adi7jxj6lghbhjg07ym78xsx09qn48h5c0s34pp"; 131 + name = "kmenuedit-5.25.3.tar.xz"; 132 }; 133 }; 134 kscreen = { 135 + version = "5.25.3"; 136 src = fetchurl { 137 + url = "${mirror}/stable/plasma/5.25.3/kscreen-5.25.3.tar.xz"; 138 + sha256 = "0p9pzigll9b5jj232sz05znf5syycif0dzvccxds6z0yr124jlvz"; 139 + name = "kscreen-5.25.3.tar.xz"; 140 }; 141 }; 142 kscreenlocker = { 143 + version = "5.25.3"; 144 src = fetchurl { 145 + url = "${mirror}/stable/plasma/5.25.3/kscreenlocker-5.25.3.tar.xz"; 146 + sha256 = "1kii3r3j89avwyb00wrw80k5sj0q4wqgmy1q0yxfps9jk729k3wc"; 147 + name = "kscreenlocker-5.25.3.tar.xz"; 148 }; 149 }; 150 ksshaskpass = { 151 + version = "5.25.3"; 152 src = fetchurl { 153 + url = "${mirror}/stable/plasma/5.25.3/ksshaskpass-5.25.3.tar.xz"; 154 + sha256 = "0sfl77szvfq9c7v0gsv5nnf7h5kxigyy2z2p1cwmhm1pq4n606nk"; 155 + name = "ksshaskpass-5.25.3.tar.xz"; 156 }; 157 }; 158 ksystemstats = { 159 + version = "5.25.3"; 160 src = fetchurl { 161 + url = "${mirror}/stable/plasma/5.25.3/ksystemstats-5.25.3.tar.xz"; 162 + sha256 = "0s08mazc081wxbccmb4s35i7p57an8nlxmw25lh1j83jj06gyd4f"; 163 + name = "ksystemstats-5.25.3.tar.xz"; 164 }; 165 }; 166 kwallet-pam = { 167 + version = "5.25.3"; 168 src = fetchurl { 169 + url = "${mirror}/stable/plasma/5.25.3/kwallet-pam-5.25.3.tar.xz"; 170 + sha256 = "1i345vl0sfzg8zmz6h8hsxmx9cbdb7072avc6yz42ra9yf4372jb"; 171 + name = "kwallet-pam-5.25.3.tar.xz"; 172 }; 173 }; 174 kwayland-integration = { 175 + version = "5.25.3"; 176 src = fetchurl { 177 + url = "${mirror}/stable/plasma/5.25.3/kwayland-integration-5.25.3.tar.xz"; 178 + sha256 = "0d45wigxspvv561fjam8yiyq6277n5wgv2sn8ymvqbal8v801bjf"; 179 + name = "kwayland-integration-5.25.3.tar.xz"; 180 }; 181 }; 182 kwin = { 183 + version = "5.25.3"; 184 src = fetchurl { 185 + url = "${mirror}/stable/plasma/5.25.3/kwin-5.25.3.tar.xz"; 186 + sha256 = "1vyh5ymvkzxsgs4904ijac6xrb5fgxpypc8mlnwcca1gd9xpr4jj"; 187 + name = "kwin-5.25.3.tar.xz"; 188 }; 189 }; 190 kwrited = { 191 + version = "5.25.3"; 192 src = fetchurl { 193 + url = "${mirror}/stable/plasma/5.25.3/kwrited-5.25.3.tar.xz"; 194 + sha256 = "133ampgha0348m5ild1dg48jpblk4c16d6nk759yywz8125wyapc"; 195 + name = "kwrited-5.25.3.tar.xz"; 196 }; 197 }; 198 layer-shell-qt = { 199 + version = "5.25.3"; 200 src = fetchurl { 201 + url = "${mirror}/stable/plasma/5.25.3/layer-shell-qt-5.25.3.tar.xz"; 202 + sha256 = "06rxqm4wh4mcszrwb2dbgpxj3dqfx0rccyyjp091lbsncqm1gib0"; 203 + name = "layer-shell-qt-5.25.3.tar.xz"; 204 }; 205 }; 206 libkscreen = { 207 + version = "5.25.3"; 208 src = fetchurl { 209 + url = "${mirror}/stable/plasma/5.25.3/libkscreen-5.25.3.tar.xz"; 210 + sha256 = "1mxkrk04wcyw4xbfiyxbp5iwnhqr10yk39zx5bbjd9zag0vdi7z5"; 211 + name = "libkscreen-5.25.3.tar.xz"; 212 }; 213 }; 214 libksysguard = { 215 + version = "5.25.3"; 216 src = fetchurl { 217 + url = "${mirror}/stable/plasma/5.25.3/libksysguard-5.25.3.tar.xz"; 218 + sha256 = "1mrrrxjvqmrnkjwafvqrd2hlvl9gr9y4hn7dv0gf70lp5bl06i89"; 219 + name = "libksysguard-5.25.3.tar.xz"; 220 }; 221 }; 222 milou = { 223 + version = "5.25.3"; 224 src = fetchurl { 225 + url = "${mirror}/stable/plasma/5.25.3/milou-5.25.3.tar.xz"; 226 + sha256 = "1xb3i5dn6r4mglci8llchjz484zsw3kqyl9ag8wch54b5cjmz4ap"; 227 + name = "milou-5.25.3.tar.xz"; 228 }; 229 }; 230 oxygen = { 231 + version = "5.25.3"; 232 src = fetchurl { 233 + url = "${mirror}/stable/plasma/5.25.3/oxygen-5.25.3.tar.xz"; 234 + sha256 = "0ynkmnmd1x36zn6x4chvpsrsi5rfqmk45qqxdx60x0w1hhi3x6bh"; 235 + name = "oxygen-5.25.3.tar.xz"; 236 }; 237 }; 238 oxygen-sounds = { 239 + version = "5.25.3"; 240 src = fetchurl { 241 + url = "${mirror}/stable/plasma/5.25.3/oxygen-sounds-5.25.3.tar.xz"; 242 + sha256 = "1hdqdq3qxpcyfs5gsmlpb3pjvixyr1ny4qwqq18givz8jbah3vkz"; 243 + name = "oxygen-sounds-5.25.3.tar.xz"; 244 }; 245 }; 246 plasma-browser-integration = { 247 + version = "5.25.3"; 248 src = fetchurl { 249 + url = "${mirror}/stable/plasma/5.25.3/plasma-browser-integration-5.25.3.tar.xz"; 250 + sha256 = "1krf9fchs3w0r1irzrdrxgwcgfsyhm2384q0c5vp5xg7dh10xvz2"; 251 + name = "plasma-browser-integration-5.25.3.tar.xz"; 252 }; 253 }; 254 plasma-desktop = { 255 + version = "5.25.3"; 256 src = fetchurl { 257 + url = "${mirror}/stable/plasma/5.25.3/plasma-desktop-5.25.3.tar.xz"; 258 + sha256 = "134dgqqak5d3427znlj138f0k48qhkzs7pqi19yn89fbzw5vg8s8"; 259 + name = "plasma-desktop-5.25.3.tar.xz"; 260 }; 261 }; 262 plasma-disks = { 263 + version = "5.25.3"; 264 src = fetchurl { 265 + url = "${mirror}/stable/plasma/5.25.3/plasma-disks-5.25.3.tar.xz"; 266 + sha256 = "1dyxa5x4v6w8fn8956wcc9mvncnjf43cpn0algp54f9ndy1jaalw"; 267 + name = "plasma-disks-5.25.3.tar.xz"; 268 }; 269 }; 270 plasma-firewall = { 271 + version = "5.25.3"; 272 src = fetchurl { 273 + url = "${mirror}/stable/plasma/5.25.3/plasma-firewall-5.25.3.tar.xz"; 274 + sha256 = "0cwk4scadk4pd7v93arkrn1wgyc4d81995znp23vd9pmlaazyikv"; 275 + name = "plasma-firewall-5.25.3.tar.xz"; 276 }; 277 }; 278 plasma-integration = { 279 + version = "5.25.3"; 280 src = fetchurl { 281 + url = "${mirror}/stable/plasma/5.25.3/plasma-integration-5.25.3.tar.xz"; 282 + sha256 = "1wsz0vbb0kj4542h7zca9yc6xz90ziv4lbm39d7dxr9hm94cdbjk"; 283 + name = "plasma-integration-5.25.3.tar.xz"; 284 }; 285 }; 286 plasma-mobile = { 287 + version = "5.25.3"; 288 src = fetchurl { 289 + url = "${mirror}/stable/plasma/5.25.3/plasma-mobile-5.25.3.tar.xz"; 290 + sha256 = "1dzfbqg2zmdr0dlm99c3pj9iy6yagshlfj9x018sa0bzjysf29g3"; 291 + name = "plasma-mobile-5.25.3.tar.xz"; 292 }; 293 }; 294 plasma-nano = { 295 + version = "5.25.3"; 296 src = fetchurl { 297 + url = "${mirror}/stable/plasma/5.25.3/plasma-nano-5.25.3.tar.xz"; 298 + sha256 = "00m95c1cb3g8v8w0d4vnbnjhjmr5hw7gljn8nc705mpxsx03c3kd"; 299 + name = "plasma-nano-5.25.3.tar.xz"; 300 }; 301 }; 302 plasma-nm = { 303 + version = "5.25.3"; 304 src = fetchurl { 305 + url = "${mirror}/stable/plasma/5.25.3/plasma-nm-5.25.3.tar.xz"; 306 + sha256 = "0k8zwjjy8d5lp1slky13fx5j6kjsbs4irz3x5fm54aki15hdcjx7"; 307 + name = "plasma-nm-5.25.3.tar.xz"; 308 }; 309 }; 310 plasma-pa = { 311 + version = "5.25.3"; 312 src = fetchurl { 313 + url = "${mirror}/stable/plasma/5.25.3/plasma-pa-5.25.3.tar.xz"; 314 + sha256 = "17881v0fff5mbgh6rgx4a2hk9m35flqijckwlyj2kcrcsqi3aq21"; 315 + name = "plasma-pa-5.25.3.tar.xz"; 316 }; 317 }; 318 plasma-sdk = { 319 + version = "5.25.3"; 320 src = fetchurl { 321 + url = "${mirror}/stable/plasma/5.25.3/plasma-sdk-5.25.3.tar.xz"; 322 + sha256 = "1hhffvqvxlhdyg8v7b7drb0n4fnkxlvy0xfffnnln66pknxk7s5w"; 323 + name = "plasma-sdk-5.25.3.tar.xz"; 324 }; 325 }; 326 plasma-systemmonitor = { 327 + version = "5.25.3"; 328 src = fetchurl { 329 + url = "${mirror}/stable/plasma/5.25.3/plasma-systemmonitor-5.25.3.tar.xz"; 330 + sha256 = "07mxkm0ynq0xiqc1p4iqjc4c1x7198hr15r9ysajgs0sf9bcd6hx"; 331 + name = "plasma-systemmonitor-5.25.3.tar.xz"; 332 }; 333 }; 334 plasma-tests = { 335 + version = "5.25.3"; 336 src = fetchurl { 337 + url = "${mirror}/stable/plasma/5.25.3/plasma-tests-5.25.3.tar.xz"; 338 + sha256 = "0d7vhb75p2rhfbysa7bg80836ycryg4jcn91grag8y7pcq6m6zzn"; 339 + name = "plasma-tests-5.25.3.tar.xz"; 340 }; 341 }; 342 plasma-thunderbolt = { 343 + version = "5.25.3"; 344 src = fetchurl { 345 + url = "${mirror}/stable/plasma/5.25.3/plasma-thunderbolt-5.25.3.tar.xz"; 346 + sha256 = "05bdq7vdwpyyrfgvp48m8dbsjhvnaf84zhbcyjvjygvlhzdm8j57"; 347 + name = "plasma-thunderbolt-5.25.3.tar.xz"; 348 }; 349 }; 350 plasma-vault = { 351 + version = "5.25.3"; 352 src = fetchurl { 353 + url = "${mirror}/stable/plasma/5.25.3/plasma-vault-5.25.3.tar.xz"; 354 + sha256 = "1phb7rygvm2c0n0yf5xyj3xpm1apfq3knfyiasgbjl4z6aimq406"; 355 + name = "plasma-vault-5.25.3.tar.xz"; 356 }; 357 }; 358 plasma-workspace = { 359 + version = "5.25.3.1"; 360 src = fetchurl { 361 + url = "${mirror}/stable/plasma/5.25.3/plasma-workspace-5.25.3.1.tar.xz"; 362 + sha256 = "09hgd1k0095s18a4147qihbsl5v8hadj7hm3zixf362sydgkal51"; 363 + name = "plasma-workspace-5.25.3.1.tar.xz"; 364 }; 365 }; 366 plasma-workspace-wallpapers = { 367 + version = "5.25.3"; 368 src = fetchurl { 369 + url = "${mirror}/stable/plasma/5.25.3/plasma-workspace-wallpapers-5.25.3.tar.xz"; 370 + sha256 = "15swpsqjdxxzkjw0phs4h7p3l4lfshsqv6pk3qbfbp91dd05cplh"; 371 + name = "plasma-workspace-wallpapers-5.25.3.tar.xz"; 372 }; 373 }; 374 plymouth-kcm = { 375 + version = "5.25.3"; 376 src = fetchurl { 377 + url = "${mirror}/stable/plasma/5.25.3/plymouth-kcm-5.25.3.tar.xz"; 378 + sha256 = "0sb0gh0sh8lc13pbqkl8icjakzk0h7r3l6v3kwg0jyvmk0if1bpj"; 379 + name = "plymouth-kcm-5.25.3.tar.xz"; 380 }; 381 }; 382 polkit-kde-agent = { 383 + version = "1-5.25.3"; 384 src = fetchurl { 385 + url = "${mirror}/stable/plasma/5.25.3/polkit-kde-agent-1-5.25.3.tar.xz"; 386 + sha256 = "0j067ps86zk38r0spcfpv33mxiagdnrkyy033v8gnsiayhrp9pcm"; 387 + name = "polkit-kde-agent-1-5.25.3.tar.xz"; 388 }; 389 }; 390 powerdevil = { 391 + version = "5.25.3"; 392 src = fetchurl { 393 + url = "${mirror}/stable/plasma/5.25.3/powerdevil-5.25.3.tar.xz"; 394 + sha256 = "1lfws0rj2kbqvgm7gb4h6gmrpa71jbqgfmvmd2n4l9bxxx73rbh2"; 395 + name = "powerdevil-5.25.3.tar.xz"; 396 }; 397 }; 398 qqc2-breeze-style = { 399 + version = "5.25.3"; 400 src = fetchurl { 401 + url = "${mirror}/stable/plasma/5.25.3/qqc2-breeze-style-5.25.3.tar.xz"; 402 + sha256 = "1j714iaysfqkr997q94pv2abj433ps43myy37p8ss0v8pra9hn5c"; 403 + name = "qqc2-breeze-style-5.25.3.tar.xz"; 404 }; 405 }; 406 sddm-kcm = { 407 + version = "5.25.3"; 408 src = fetchurl { 409 + url = "${mirror}/stable/plasma/5.25.3/sddm-kcm-5.25.3.tar.xz"; 410 + sha256 = "1mipvf25vjhdrww9cinp4v7g73swk364zfkyk4fypw8bccrbfpsd"; 411 + name = "sddm-kcm-5.25.3.tar.xz"; 412 }; 413 }; 414 systemsettings = { 415 + version = "5.25.3"; 416 src = fetchurl { 417 + url = "${mirror}/stable/plasma/5.25.3/systemsettings-5.25.3.tar.xz"; 418 + sha256 = "00n4r51qp03cwfsdrsza2nv5558zs8dyd6fywcycjd1ryqiyrl4r"; 419 + name = "systemsettings-5.25.3.tar.xz"; 420 }; 421 }; 422 xdg-desktop-portal-kde = { 423 + version = "5.25.3"; 424 src = fetchurl { 425 + url = "${mirror}/stable/plasma/5.25.3/xdg-desktop-portal-kde-5.25.3.tar.xz"; 426 + sha256 = "07pcpxq7j1b62wwds6q2niyh74dc9i2lwvka77g1ii55syybm7n7"; 427 + name = "xdg-desktop-portal-kde-5.25.3.tar.xz"; 428 }; 429 }; 430 }
+3 -4
pkgs/development/compilers/crystal2nix/default.nix
··· 2 3 crystal.buildCrystalPackage rec { 4 pname = "crystal2nix"; 5 - version = "0.1.1"; 6 7 src = fetchFromGitHub { 8 owner = "peterhoeg"; 9 repo = "crystal2nix"; 10 rev = "v${version}"; 11 - sha256 = "sha256-LKZychkhWy/rVdrP3Yo6g8CL1pGdiZlBykzFjnWh0fg="; 12 }; 13 14 format = "shards"; ··· 25 # temporarily off. We need the checks to execute the wrapped binary 26 doCheck = false; 27 28 - # it requires an internet connection when run 29 - doInstallCheck = false; 30 31 meta = with lib; { 32 description = "Utility to convert Crystal's shard.lock files to a Nix file";
··· 2 3 crystal.buildCrystalPackage rec { 4 pname = "crystal2nix"; 5 + version = "0.3.0"; 6 7 src = fetchFromGitHub { 8 owner = "peterhoeg"; 9 repo = "crystal2nix"; 10 rev = "v${version}"; 11 + hash = "sha256-gb2vgKWVXwYWfUUcFvOLFF0qB4CTBekEllpyKduU1Mo="; 12 }; 13 14 format = "shards"; ··· 25 # temporarily off. We need the checks to execute the wrapped binary 26 doCheck = false; 27 28 + doInstallCheck = true; 29 30 meta = with lib; { 31 description = "Utility to convert Crystal's shard.lock files to a Nix file";
+8 -10
pkgs/development/compilers/crystal2nix/shards.nix
··· 1 { 2 - json_mapping = { 3 - owner = "crystal-lang"; 4 - repo = "json_mapping.cr"; 5 - rev = "v0.1.0"; 6 - sha256 = "1qq5vs2085x7cwmp96rrjns0yz9kiz1lycxynfbz5psxll6b8p55"; 7 }; 8 - yaml_mapping = { 9 - owner = "crystal-lang"; 10 - repo = "yaml_mapping.cr"; 11 - rev = "v0.1.0"; 12 - sha256 = "02spz1521g59ar6rp0znnr01di766kknbjxjnygs39yn0cmpzqc1"; 13 }; 14 }
··· 1 { 2 + spectator = { 3 + url = "https://gitlab.com/arctic-fox/spectator.git"; 4 + rev = "v0.10.5"; 5 + sha256 = "1fgjz5vg59h4m25v4fjklimcdn62ngqbchm00kw1160ggjpgpzw2"; 6 }; 7 + version_from_shard = { 8 + url = "https://github.com/hugopl/version_from_shard.git"; 9 + rev = "v1.2.5"; 10 + sha256 = "0xizj0q4rd541rwjbx04cjifc2gfx4l5v6q2y7gmd0ndjmkgb8ik"; 11 }; 12 }
+2 -2
pkgs/development/compilers/mono/6.nix
··· 2 3 callPackage ./generic.nix ({ 4 inherit Foundation libobjc; 5 - version = "6.12.0.122"; 6 srcArchiveSuffix = "tar.xz"; 7 - sha256 = "sha256-KcJ3Zg/F51ExB67hy/jFBXyTcKTN/tovx4G+aYbYnSM="; 8 enableParallelBuilding = true; 9 })
··· 2 3 callPackage ./generic.nix ({ 4 inherit Foundation libobjc; 5 + version = "6.12.0.182"; 6 srcArchiveSuffix = "tar.xz"; 7 + sha256 = "sha256-VzZqarTztezxEdSFSAMWFbOhANuHxnn8AG6Mik79lCQ="; 8 enableParallelBuilding = true; 9 })
+1 -2
pkgs/development/compilers/mono/generic.nix
··· 76 inherit enableParallelBuilding; 77 78 meta = with lib; { 79 - # Per nixpkgs#151720 the build failures for aarch64-darwin are fixed upstream, but a 80 - # stable release with the fix is not available yet. 81 broken = stdenv.isDarwin && stdenv.isAarch64 && lib.versionOlder version "6.12.0.129"; 82 homepage = "https://mono-project.com/"; 83 description = "Cross platform, open source .NET development framework";
··· 76 inherit enableParallelBuilding; 77 78 meta = with lib; { 79 + # Per nixpkgs#151720 the build failures for aarch64-darwin are fixed since 6.12.0.129 80 broken = stdenv.isDarwin && stdenv.isAarch64 && lib.versionOlder version "6.12.0.129"; 81 homepage = "https://mono-project.com/"; 82 description = "Cross platform, open source .NET development framework";
+5 -5
pkgs/development/compilers/terra/default.nix
··· 2 , symlinkJoin, breakpointHook, cudaPackages, enableCUDA ? false }: 3 4 let 5 - luajitRev = "9143e86498436892cb4316550be4d45b68a61224"; 6 luajitBase = "LuaJIT-${luajitRev}"; 7 luajitArchive = "${luajitBase}.tar.gz"; 8 luajitSrc = fetchFromGitHub { 9 owner = "LuaJIT"; 10 repo = "LuaJIT"; 11 rev = luajitRev; 12 - sha256 = "1zw1yr0375d6jr5x20zvkvk76hkaqamjynbswpl604w6r6id070b"; 13 }; 14 15 llvmMerged = symlinkJoin { ··· 30 31 in stdenv.mkDerivation rec { 32 pname = "terra"; 33 - version = "1.0.0-beta5"; 34 35 src = fetchFromGitHub { 36 owner = "terralang"; 37 repo = "terra"; 38 - rev = "bcc5a81649cb91aaaff33790b39c87feb5f7a4c2"; 39 - sha256 = "0jb147vbvix3zvrq6ln321jdxjgr6z68pdrirjp4zqmx78yqlcx3"; 40 }; 41 42 nativeBuildInputs = [ cmake ];
··· 2 , symlinkJoin, breakpointHook, cudaPackages, enableCUDA ? false }: 3 4 let 5 + luajitRev = "6053b04815ecbc8eec1e361ceb64e68fb8fac1b3"; 6 luajitBase = "LuaJIT-${luajitRev}"; 7 luajitArchive = "${luajitBase}.tar.gz"; 8 luajitSrc = fetchFromGitHub { 9 owner = "LuaJIT"; 10 repo = "LuaJIT"; 11 rev = luajitRev; 12 + sha256 = "1caxm1js877mky8hci1km3ycz2hbwpm6xbyjha72gfc7lr6pc429"; 13 }; 14 15 llvmMerged = symlinkJoin { ··· 30 31 in stdenv.mkDerivation rec { 32 pname = "terra"; 33 + version = "1.0.4"; 34 35 src = fetchFromGitHub { 36 owner = "terralang"; 37 repo = "terra"; 38 + rev = "release-${version}"; 39 + sha256 = "07715qsc316h0mmsjifr1ja5fbp216ji70hpq665r0v5ikiqjfsv"; 40 }; 41 42 nativeBuildInputs = [ cmake ];
-57
pkgs/development/compilers/zig/0.8.1.nix
··· 1 - { lib 2 - , fetchFromGitHub 3 - , cmake 4 - , llvmPackages 5 - , libxml2 6 - , zlib 7 - }: 8 - 9 - let 10 - inherit (llvmPackages) stdenv; 11 - in 12 - stdenv.mkDerivation rec { 13 - pname = "zig"; 14 - version = "0.8.1"; 15 - 16 - src = fetchFromGitHub { 17 - owner = "ziglang"; 18 - repo = pname; 19 - rev = version; 20 - hash = "sha256-zMSOH8ZWcvzHRwOgGIbLO9Q6jf1P5QL5KCMD+frp+JA="; 21 - }; 22 - 23 - nativeBuildInputs = [ 24 - cmake 25 - llvmPackages.llvm.dev 26 - ]; 27 - buildInputs = [ 28 - libxml2 29 - zlib 30 - ] ++ (with llvmPackages; [ 31 - libclang 32 - lld 33 - llvm 34 - ]); 35 - 36 - preBuild = '' 37 - export HOME=$TMPDIR; 38 - ''; 39 - 40 - doCheck = true; 41 - checkPhase = '' 42 - runHook preCheck 43 - ./zig test --cache-dir "$TMPDIR" -I $src/test $src/test/behavior.zig 44 - runHook postCheck 45 - ''; 46 - 47 - meta = with lib; { 48 - homepage = "https://ziglang.org/"; 49 - description = 50 - "General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software"; 51 - license = licenses.mit; 52 - maintainers = with maintainers; [ andrewrk AndersonTorres ]; 53 - platforms = platforms.unix; 54 - broken = stdenv.isDarwin; # See https://github.com/NixOS/nixpkgs/issues/86299 55 - }; 56 - } 57 -
···
+2
pkgs/development/coq-modules/coqeal/default.nix
··· 10 11 inherit version; 12 defaultVersion = with versions; switch [ coq.version mathcomp.version ] [ 13 { cases = [ (range "8.10" "8.15") (isGe "1.12.0") ]; out = "1.1.0"; } 14 { cases = [ (isGe "8.10") (range "1.11.0" "1.12.0") ]; out = "1.0.5"; } 15 { cases = [ (isGe "8.7") "1.11.0" ]; out = "1.0.4"; } 16 { cases = [ (isGe "8.7") "1.10.0" ]; out = "1.0.3"; } 17 ] null; 18 19 release."1.1.0".sha256 = "1vyhfna5frkkq2fl1fkg2mwzpg09k3sbzxxpyp14fjay81xajrxr"; 20 release."1.0.6".sha256 = "0lqkyfj4qbq8wr3yk8qgn7mclw582n3fjl9l19yp8cnchspzywx0"; 21 release."1.0.5".sha256 = "0cmvky8glb5z2dy3q62aln6qbav4lrf2q1589f6h1gn5bgjrbzkm";
··· 10 11 inherit version; 12 defaultVersion = with versions; switch [ coq.version mathcomp.version ] [ 13 + { cases = [ (range "8.13" "8.15") (isGe "1.13.0") ]; out = "1.1.1"; } 14 { cases = [ (range "8.10" "8.15") (isGe "1.12.0") ]; out = "1.1.0"; } 15 { cases = [ (isGe "8.10") (range "1.11.0" "1.12.0") ]; out = "1.0.5"; } 16 { cases = [ (isGe "8.7") "1.11.0" ]; out = "1.0.4"; } 17 { cases = [ (isGe "8.7") "1.10.0" ]; out = "1.0.3"; } 18 ] null; 19 20 + release."1.1.1".sha256 = "sha256-ExAdC3WuArNxS+Sa1r4x5aT7ylbCvP/BZXfkdQNAvZ8="; 21 release."1.1.0".sha256 = "1vyhfna5frkkq2fl1fkg2mwzpg09k3sbzxxpyp14fjay81xajrxr"; 22 release."1.0.6".sha256 = "0lqkyfj4qbq8wr3yk8qgn7mclw582n3fjl9l19yp8cnchspzywx0"; 23 release."1.0.5".sha256 = "0cmvky8glb5z2dy3q62aln6qbav4lrf2q1589f6h1gn5bgjrbzkm";
+7 -25
pkgs/development/haskell-modules/configuration-common.nix
··· 352 lvmrun = disableHardening ["format"] (dontCheck super.lvmrun); 353 matplotlib = dontCheck super.matplotlib; 354 355 # https://github.com/matterhorn-chat/matterhorn/issues/679 they do not want to be on stackage 356 # Needs brick ^>= 0.70 357 matterhorn = doJailbreak (super.matterhorn.overrideScope (self: super: { 358 - brick = self.brick_0_70_1; 359 })); 360 361 memcache = dontCheck super.memcache; ··· 627 628 # 2022-03-19: Testsuite is failing: https://github.com/puffnfresh/haskell-jwt/issues/2 629 jwt = dontCheck super.jwt; 630 - 631 - # 2022-03-16: ghc 9 support has not been merged: https://github.com/hasura/monad-validate/pull/5 632 - monad-validate = appendPatch (fetchpatch { 633 - url = "https://github.com/hasura/monad-validate/commit/7ba916e23c219a8cd397e2a1801c74682b52fcf0.patch"; 634 - sha256 = "sha256-udJ+/2VvfWA5Bm36nftH0sbPNuMkWj8rCh9cNN2f9Zw="; 635 - }) (dontCheck super.monad-validate); 636 637 # Build the latest git version instead of the official release. This isn't 638 # ideal, but Chris doesn't seem to make official releases any more. ··· 1293 1294 # 2021-12-26: Too strict bounds on doctest 1295 polysemy-plugin = doJailbreak super.polysemy-plugin; 1296 - 1297 - # Test suite requires running a database server. Testing is done upstream. 1298 - hasql-notifications = dontCheck super.hasql-notifications; 1299 - hasql-pool = dontCheck super.hasql-pool; 1300 1301 # hasn‘t bumped upper bounds 1302 # upstream: https://github.com/obsidiansystems/which/pull/6 ··· 2558 lsp-types = self.lsp-types_1_5_0_0; 2559 }); 2560 2561 - # A delay between futhark package uploads caused us to end up with conflicting 2562 - # versions of futhark and futhark-manifest 2563 - futhark = assert super.futhark.version == "0.21.12"; overrideCabal (drv: { 2564 - editedCabalFile = null; 2565 - revision = null; 2566 - version = "0.21.13"; 2567 - sha256 = "0bzqlsaaqbbi47zvmvv7hd6hcz54hzw676rh9nxcjxgff3hzqb08"; 2568 - libraryHaskellDepends = drv.libraryHaskellDepends or [] ++ [ 2569 - self.fgl 2570 - self.fgl-visualize 2571 - self.co-log-core 2572 - ]; 2573 - }) (super.futhark.override { 2574 lsp = self.lsp_1_5_0_0; 2575 - }); 2576 2577 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super // (let 2578 # We need to build purescript with these dependencies and thus also its reverse
··· 352 lvmrun = disableHardening ["format"] (dontCheck super.lvmrun); 353 matplotlib = dontCheck super.matplotlib; 354 355 + brick_0_71_1 = super.brick_0_71_1.overrideScope (self: super: { 356 + vty = self.vty_5_36; 357 + }); 358 + 359 # https://github.com/matterhorn-chat/matterhorn/issues/679 they do not want to be on stackage 360 # Needs brick ^>= 0.70 361 matterhorn = doJailbreak (super.matterhorn.overrideScope (self: super: { 362 + brick = self.brick_0_71_1; 363 })); 364 365 memcache = dontCheck super.memcache; ··· 631 632 # 2022-03-19: Testsuite is failing: https://github.com/puffnfresh/haskell-jwt/issues/2 633 jwt = dontCheck super.jwt; 634 635 # Build the latest git version instead of the official release. This isn't 636 # ideal, but Chris doesn't seem to make official releases any more. ··· 1291 1292 # 2021-12-26: Too strict bounds on doctest 1293 polysemy-plugin = doJailbreak super.polysemy-plugin; 1294 1295 # hasn‘t bumped upper bounds 1296 # upstream: https://github.com/obsidiansystems/which/pull/6 ··· 2552 lsp-types = self.lsp-types_1_5_0_0; 2553 }); 2554 2555 + futhark = super.futhark.override { 2556 lsp = self.lsp_1_5_0_0; 2557 + }; 2558 2559 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super // (let 2560 # We need to build purescript with these dependencies and thus also its reverse
-10
pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
··· 155 ] ++ drv.testFlags or []; 156 }) (doJailbreak super.hpack); 157 158 - validity = pkgs.lib.pipe super.validity [ 159 - # head.hackage patch 160 - (appendPatch (pkgs.fetchpatch { 161 - url = "https://gitlab.haskell.org/ghc/head.hackage/-/raw/9110e6972b5daf085e19cad41f97920d3ddac499/patches/validity-0.12.0.0.patch"; 162 - sha256 = "0hzns596dxvyn8irgi7aflx76wak1qi13chkkvl0055pkgykm08f"; 163 - })) 164 - # head.hackage ignores test suite 165 - dontCheck 166 - ]; 167 - 168 # lens >= 5.1 supports 9.2.1 169 lens = doDistribute self.lens_5_1_1; 170
··· 155 ] ++ drv.testFlags or []; 156 }) (doJailbreak super.hpack); 157 158 # lens >= 5.1 supports 9.2.1 159 lens = doDistribute self.lens_5_1_1; 160
+3 -3
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 821 - config-parser 822 - Configurable 823 - configuration 824 - - configurator-pg 825 - config-value-getopt 826 - confsolve 827 - congruence-relation ··· 2073 - hasql-cursor-transaction 2074 - hasql-explain-tests 2075 - hasql-generic 2076 - - hasql-implicits 2077 - hasql-resource-pool 2078 - hasql-simple 2079 - hasql-streams-example ··· 2458 - hspec-snap 2459 - hspec-structured-formatter 2460 - hspec-tables 2461 - - hspec-wai-json 2462 - HsPerl5 2463 - hs-pgms 2464 - hspkcs11 ··· 2677 - interval 2678 - interval-algebra 2679 - interval-patterns 2680 - IntFormats 2681 - int-multimap 2682 - intricacy ··· 4012 - postgresql-tx-simple 4013 - postgresql-tx-squeal 4014 - postgresql-typed-lifted 4015 - postgres-tmp 4016 - postgrest-ws 4017 - postgres-websockets ··· 4142 - push-notifications 4143 - putlenses 4144 - puzzle-draw 4145 - pyffi 4146 - pyfi 4147 - python-pickle
··· 821 - config-parser 822 - Configurable 823 - configuration 824 - config-value-getopt 825 - confsolve 826 - congruence-relation ··· 2072 - hasql-cursor-transaction 2073 - hasql-explain-tests 2074 - hasql-generic 2075 - hasql-resource-pool 2076 - hasql-simple 2077 - hasql-streams-example ··· 2456 - hspec-snap 2457 - hspec-structured-formatter 2458 - hspec-tables 2459 - HsPerl5 2460 - hs-pgms 2461 - hspkcs11 ··· 2674 - interval 2675 - interval-algebra 2676 - interval-patterns 2677 + - interval-tree-clock 2678 - IntFormats 2679 - int-multimap 2680 - intricacy ··· 4010 - postgresql-tx-simple 4011 - postgresql-tx-squeal 4012 - postgresql-typed-lifted 4013 + - postgrest 4014 - postgres-tmp 4015 - postgrest-ws 4016 - postgres-websockets ··· 4141 - push-notifications 4142 - putlenses 4143 - puzzle-draw 4144 + - pvector 4145 - pyffi 4146 - pyfi 4147 - python-pickle
+3
pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
··· 141 - fourmolu == 0.6.0.0 # 2022-06-05: Last fourmolu version compatible with hls 1.7/ hls-fourmolu-plugin 1.0.3.0 142 - hnix-store-core == 0.5.0.0 # 2022-06-17: Until hnix 0.17 143 - hnix-store-remote == 0.5.0.0 # 2022-06-17: Until hnix 0.17 144 145 package-maintainers: 146 abbradar: ··· 347 - hercules-ci-cnix-store 348 - inline-c 349 - inline-c-cpp 350 rvl: 351 - taffybar 352 - arbtt
··· 141 - fourmolu == 0.6.0.0 # 2022-06-05: Last fourmolu version compatible with hls 1.7/ hls-fourmolu-plugin 1.0.3.0 142 - hnix-store-core == 0.5.0.0 # 2022-06-17: Until hnix 0.17 143 - hnix-store-remote == 0.5.0.0 # 2022-06-17: Until hnix 0.17 144 + - vty == 5.35.1 # 2022-07-08: needed for glirc-2.39.0.1 145 146 package-maintainers: 147 abbradar: ··· 348 - hercules-ci-cnix-store 349 - inline-c 350 - inline-c-cpp 351 + roosemberth: 352 + - git-annex 353 rvl: 354 - taffybar 355 - arbtt
+16 -15
pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml
··· 1 - # Stackage LTS 19.13 2 # This file is auto-generated by 3 # maintainers/scripts/haskell/update-stackage.sh 4 default-package-overrides: ··· 279 - cached-json-file ==0.1.1 280 - cacophony ==0.10.1 281 - calendar-recycling ==0.0.0.1 282 - - call-alloy ==0.3.0.1 283 - call-stack ==0.4.0 284 - can-i-haz ==0.3.1.0 285 - capability ==0.5.0.1 ··· 720 - extrapolate ==0.4.6 721 - fail ==4.9.0.0 722 - failable ==1.2.4.0 723 - - fakedata ==1.0.2 724 - fakedata-parser ==0.1.0.0 725 - fakedata-quickcheck ==0.2.0 726 - fakefs ==0.3.0.2 ··· 796 - foundation ==0.0.28 797 - fourmolu ==0.4.0.0 798 - Frames ==0.7.3 799 - - free ==5.1.8 800 - free-categories ==0.2.0.2 801 - freenect ==1.2.1 802 - freer-simple ==1.2.1.2 ··· 820 - fuzzy ==0.1.0.1 821 - fuzzy-dates ==0.1.1.2 822 - fuzzyset ==0.2.3 823 - - fuzzy-time ==0.2.0.0 824 - gauge ==0.2.5 825 - gd ==3000.7.3 826 - gdp ==0.0.3.0 ··· 1004 - haskintex ==0.8.0.0 1005 - haskoin-core ==0.21.2 1006 - hasktags ==0.72.0 1007 - - hasql ==1.5.0.4 1008 - hasql-migration ==0.3.0 1009 - hasql-notifications ==0.2.0.1 1010 - hasql-optparse-applicative ==0.3.0.9 1011 - hasql-pool ==0.5.2.2 1012 - hasql-queue ==1.2.0.2 1013 - - hasql-th ==0.4.0.15 1014 - hasql-transaction ==1.0.1.1 1015 - has-transformers ==0.1.0.4 1016 - hasty-hamiltonian ==1.3.4 ··· 1337 - junit-xml ==0.1.0.2 1338 - justified-containers ==0.3.0.0 1339 - jwt ==0.11.0 1340 - - kan-extensions ==5.2.4 1341 - kanji ==3.5.0 1342 - katip ==0.8.7.2 1343 - katip-logstash ==0.1.0.2 ··· 1536 - minio-hs ==1.6.0 1537 - miniutter ==0.5.1.1 1538 - min-max-pqueue ==0.1.0.2 1539 - - mintty ==0.1.3 1540 - missing-foreign ==0.1.1 1541 - MissingH ==1.5.0.1 1542 - mixed-types-num ==0.5.9.1 ··· 1943 - proto-lens-protoc ==0.7.1.1 1944 - proto-lens-runtime ==0.7.0.2 1945 - proto-lens-setup ==0.4.0.6 1946 - proxied ==0.3.1 1947 - psql-helpers ==0.1.0.0 1948 - psqueues ==0.2.7.3 ··· 2067 - resistor-cube ==0.0.1.4 2068 - resolv ==0.1.2.0 2069 - resource-pool ==0.2.3.2 2070 - - resourcet ==1.2.5 2071 - result ==0.2.6.0 2072 - retry ==0.9.2.1 2073 - rev-state ==0.1.2 ··· 2304 - srt-attoparsec ==0.1.0.0 2305 - srt-dhall ==0.1.0.0 2306 - srt-formatting ==0.1.0.0 2307 - - stache ==2.3.2 2308 - stack-all ==0.4.0.1 2309 - stack-clean-old ==0.4.6 2310 - stackcollapse-ghc ==0.0.1.4 ··· 2376 - subcategories ==0.2.0.0 2377 - sum-type-boilerplate ==0.1.1 2378 - sundown ==0.6 2379 - - superbuffer ==0.3.1.1 2380 - svg-builder ==0.1.1 2381 - SVGFonts ==1.8.0.1 2382 - svg-tree ==0.6.2.4 ··· 2743 - wcwidth ==0.0.2 2744 - webex-teams-api ==0.2.0.1 2745 - webex-teams-conduit ==0.2.0.1 2746 - - webgear-core ==1.0.2 2747 - - webgear-openapi ==1.0.2 2748 - - webgear-server ==1.0.2 2749 - webpage ==0.0.5.1 2750 - web-plugins ==0.4.1 2751 - web-routes ==0.27.14.4
··· 1 + # Stackage LTS 19.14 2 # This file is auto-generated by 3 # maintainers/scripts/haskell/update-stackage.sh 4 default-package-overrides: ··· 279 - cached-json-file ==0.1.1 280 - cacophony ==0.10.1 281 - calendar-recycling ==0.0.0.1 282 + - call-alloy ==0.3.0.2 283 - call-stack ==0.4.0 284 - can-i-haz ==0.3.1.0 285 - capability ==0.5.0.1 ··· 720 - extrapolate ==0.4.6 721 - fail ==4.9.0.0 722 - failable ==1.2.4.0 723 + - fakedata ==1.0.3 724 - fakedata-parser ==0.1.0.0 725 - fakedata-quickcheck ==0.2.0 726 - fakefs ==0.3.0.2 ··· 796 - foundation ==0.0.28 797 - fourmolu ==0.4.0.0 798 - Frames ==0.7.3 799 + - free ==5.1.9 800 - free-categories ==0.2.0.2 801 - freenect ==1.2.1 802 - freer-simple ==1.2.1.2 ··· 820 - fuzzy ==0.1.0.1 821 - fuzzy-dates ==0.1.1.2 822 - fuzzyset ==0.2.3 823 + - fuzzy-time ==0.2.0.1 824 - gauge ==0.2.5 825 - gd ==3000.7.3 826 - gdp ==0.0.3.0 ··· 1004 - haskintex ==0.8.0.0 1005 - haskoin-core ==0.21.2 1006 - hasktags ==0.72.0 1007 + - hasql ==1.5.0.5 1008 - hasql-migration ==0.3.0 1009 - hasql-notifications ==0.2.0.1 1010 - hasql-optparse-applicative ==0.3.0.9 1011 - hasql-pool ==0.5.2.2 1012 - hasql-queue ==1.2.0.2 1013 + - hasql-th ==0.4.0.16 1014 - hasql-transaction ==1.0.1.1 1015 - has-transformers ==0.1.0.4 1016 - hasty-hamiltonian ==1.3.4 ··· 1337 - junit-xml ==0.1.0.2 1338 - justified-containers ==0.3.0.0 1339 - jwt ==0.11.0 1340 + - kan-extensions ==5.2.5 1341 - kanji ==3.5.0 1342 - katip ==0.8.7.2 1343 - katip-logstash ==0.1.0.2 ··· 1536 - minio-hs ==1.6.0 1537 - miniutter ==0.5.1.1 1538 - min-max-pqueue ==0.1.0.2 1539 + - mintty ==0.1.4 1540 - missing-foreign ==0.1.1 1541 - MissingH ==1.5.0.1 1542 - mixed-types-num ==0.5.9.1 ··· 1943 - proto-lens-protoc ==0.7.1.1 1944 - proto-lens-runtime ==0.7.0.2 1945 - proto-lens-setup ==0.4.0.6 1946 + - protolude ==0.3.2 1947 - proxied ==0.3.1 1948 - psql-helpers ==0.1.0.0 1949 - psqueues ==0.2.7.3 ··· 2068 - resistor-cube ==0.0.1.4 2069 - resolv ==0.1.2.0 2070 - resource-pool ==0.2.3.2 2071 + - resourcet ==1.2.6 2072 - result ==0.2.6.0 2073 - retry ==0.9.2.1 2074 - rev-state ==0.1.2 ··· 2305 - srt-attoparsec ==0.1.0.0 2306 - srt-dhall ==0.1.0.0 2307 - srt-formatting ==0.1.0.0 2308 + - stache ==2.3.3 2309 - stack-all ==0.4.0.1 2310 - stack-clean-old ==0.4.6 2311 - stackcollapse-ghc ==0.0.1.4 ··· 2377 - subcategories ==0.2.0.0 2378 - sum-type-boilerplate ==0.1.1 2379 - sundown ==0.6 2380 + - superbuffer ==0.3.1.2 2381 - svg-builder ==0.1.1 2382 - SVGFonts ==1.8.0.1 2383 - svg-tree ==0.6.2.4 ··· 2744 - wcwidth ==0.0.2 2745 - webex-teams-api ==0.2.0.1 2746 - webex-teams-conduit ==0.2.0.1 2747 + - webgear-core ==1.0.3 2748 + - webgear-openapi ==1.0.3 2749 + - webgear-server ==1.0.3 2750 - webpage ==0.0.5.1 2751 - web-plugins ==0.4.1 2752 - web-routes ==0.27.14.4
+4 -4
pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
··· 2026 - hasloGUI 2027 - hasparql-client 2028 - hasql-cursor-query 2029 - - hasql-dynamic-statements 2030 - hasql-postgres 2031 - hasql-postgres-options 2032 - hasqlator-mysql ··· 2418 - jobqueue 2419 - join 2420 - jordan-openapi 2421 - jsc 2422 - jsmw 2423 - json-ast-json-encoder ··· 3134 - postgresql-simple-typed 3135 - postgresql-tx-query 3136 - postgresql-tx-squeal-compat-simple 3137 - - postgrest 3138 - postmark 3139 - potoki 3140 - potoki-cereal ··· 3559 - shady-graphics 3560 - shake-ats 3561 - shake-bindist 3562 - - shake-futhark 3563 - shake-minify-css 3564 - shake-plus-extended 3565 - shakebook ··· 4054 - vty-ui-extras 4055 - waargonaut 4056 - wahsp 4057 - - wai-control 4058 - wai-devel 4059 - wai-dispatch 4060 - wai-handler-snap
··· 2026 - hasloGUI 2027 - hasparql-client 2028 - hasql-cursor-query 2029 - hasql-postgres 2030 - hasql-postgres-options 2031 - hasqlator-mysql ··· 2417 - jobqueue 2418 - join 2419 - jordan-openapi 2420 + - jordan-servant 2421 + - jordan-servant-client 2422 + - jordan-servant-openapi 2423 + - jordan-servant-server 2424 - jsc 2425 - jsmw 2426 - json-ast-json-encoder ··· 3137 - postgresql-simple-typed 3138 - postgresql-tx-query 3139 - postgresql-tx-squeal-compat-simple 3140 - postmark 3141 - potoki 3142 - potoki-cereal ··· 3561 - shady-graphics 3562 - shake-ats 3563 - shake-bindist 3564 - shake-minify-css 3565 - shake-plus-extended 3566 - shakebook ··· 4055 - vty-ui-extras 4056 - waargonaut 4057 - wahsp 4058 - wai-devel 4059 - wai-dispatch 4060 - wai-handler-snap
+8 -3
pkgs/development/haskell-modules/configuration-nix.nix
··· 167 digitalocean-kzs = dontCheck super.digitalocean-kzs; # https://github.com/KazumaSATO/digitalocean-kzs/issues/1 168 github-types = dontCheck super.github-types; # http://hydra.cryp.to/build/1114046/nixlog/1/raw 169 hadoop-rpc = dontCheck super.hadoop-rpc; # http://hydra.cryp.to/build/527461/nixlog/2/raw 170 - hasql = dontCheck super.hasql; # http://hydra.cryp.to/build/502489/nixlog/4/raw 171 - hasql-interpolate = dontCheck super.hasql-interpolate; # wants to connect to postgresql 172 - hasql-transaction = dontCheck super.hasql-transaction; # wants to connect to postgresql 173 hjsonschema = overrideCabal (drv: { testTarget = "local"; }) super.hjsonschema; 174 marmalade-upload = dontCheck super.marmalade-upload; # http://hydra.cryp.to/build/501904/nixlog/1/raw 175 mongoDB = dontCheck super.mongoDB; ··· 207 holy-project = dontCheck super.holy-project; 208 mustache = dontCheck super.mustache; 209 arch-web = dontCheck super.arch-web; 210 211 # Tries to mess with extended POSIX attributes, but can't in our chroot environment. 212 xattr = dontCheck super.xattr;
··· 167 digitalocean-kzs = dontCheck super.digitalocean-kzs; # https://github.com/KazumaSATO/digitalocean-kzs/issues/1 168 github-types = dontCheck super.github-types; # http://hydra.cryp.to/build/1114046/nixlog/1/raw 169 hadoop-rpc = dontCheck super.hadoop-rpc; # http://hydra.cryp.to/build/527461/nixlog/2/raw 170 hjsonschema = overrideCabal (drv: { testTarget = "local"; }) super.hjsonschema; 171 marmalade-upload = dontCheck super.marmalade-upload; # http://hydra.cryp.to/build/501904/nixlog/1/raw 172 mongoDB = dontCheck super.mongoDB; ··· 204 holy-project = dontCheck super.holy-project; 205 mustache = dontCheck super.mustache; 206 arch-web = dontCheck super.arch-web; 207 + 208 + # Test suite requires running a database server. Testing is done upstream. 209 + hasql = dontCheck super.hasql; 210 + hasql-dynamic-statements = dontCheck super.hasql-dynamic-statements; 211 + hasql-interpolate = dontCheck super.hasql-interpolate; 212 + hasql-notifications = dontCheck super.hasql-notifications; 213 + hasql-pool = dontCheck super.hasql-pool; 214 + hasql-transaction = dontCheck super.hasql-transaction; 215 216 # Tries to mess with extended POSIX attributes, but can't in our chroot environment. 217 xattr = dontCheck super.xattr;
+605 -443
pkgs/development/haskell-modules/hackage-packages.nix
··· 2063 2064 "Blammo" = callPackage 2065 ({ mkDerivation, aeson, base, bytestring, case-insensitive, clock 2066 - , containers, envparse, exceptions, fast-logger, hspec, http-types 2067 - , lens, markdown-unlit, monad-logger-aeson, text, time 2068 - , unliftio-core, unordered-containers, vector, wai 2069 }: 2070 mkDerivation { 2071 pname = "Blammo"; 2072 - version = "1.0.1.1"; 2073 - sha256 = "1ysfy8crdm6j3l80hw9rdr4rqsxyhywp3rf8m9yjygmhrndx38ih"; 2074 libraryHaskellDepends = [ 2075 - aeson base bytestring case-insensitive clock containers envparse 2076 - exceptions fast-logger http-types lens monad-logger-aeson text time 2077 - unliftio-core unordered-containers vector wai 2078 ]; 2079 - testHaskellDepends = [ aeson base hspec markdown-unlit text ]; 2080 testToolDepends = [ markdown-unlit ]; 2081 description = "Batteries-included Structured Logging library"; 2082 license = lib.licenses.mit; ··· 35383 license = lib.licenses.bsd3; 35384 }) {}; 35385 35386 "assert4hs" = callPackage 35387 ({ mkDerivation, base, data-default, pretty-diff, tasty, text }: 35388 mkDerivation { ··· 39767 broken = true; 39768 }) {}; 39769 39770 - "base_4_16_1_0" = callPackage 39771 ({ mkDerivation, ghc-bignum, ghc-prim, rts }: 39772 mkDerivation { 39773 pname = "base"; 39774 - version = "4.16.1.0"; 39775 - sha256 = "1n6w97xxdsspa34w417sakx1ysv4qgp5l00r6lkf09rwfmani7vl"; 39776 libraryHaskellDepends = [ ghc-bignum ghc-prim rts ]; 39777 description = "Basic libraries"; 39778 license = lib.licenses.bsd3; ··· 41519 pname = "bench"; 41520 version = "1.0.12"; 41521 sha256 = "1sy97qpv6paar2d5syppk6lc06wjx6qyz5aidsmh30jq853nydx6"; 41522 - revision = "3"; 41523 - editedCabalFile = "1lprgyc8jnfys70mxnpynrkgy1m4ss2dhf7mhj9kvxkahkkqdqm2"; 41524 isLibrary = false; 41525 isExecutable = true; 41526 executableHaskellDepends = [ ··· 47988 license = lib.licenses.bsd3; 47989 }) {}; 47990 47991 - "brick_0_70_1" = callPackage 47992 ({ mkDerivation, base, bytestring, config-ini, containers 47993 , contravariant, data-clist, deepseq, directory, dlist, exceptions 47994 , filepath, microlens, microlens-mtl, microlens-th, QuickCheck, stm ··· 47997 }: 47998 mkDerivation { 47999 pname = "brick"; 48000 - version = "0.70.1"; 48001 - sha256 = "18i1i06ll6pklzaazcl2bzbi3w5zdn43l9wvkclhfcmddjy19lp4"; 48002 isLibrary = true; 48003 isExecutable = true; 48004 libraryHaskellDepends = [ ··· 48008 unix vector vty word-wrap 48009 ]; 48010 testHaskellDepends = [ 48011 - base containers microlens QuickCheck vector 48012 ]; 48013 description = "A declarative terminal user interface library"; 48014 license = lib.licenses.bsd3; ··· 53040 }: 53041 mkDerivation { 53042 pname = "call-alloy"; 53043 - version = "0.3.0.1"; 53044 - sha256 = "1a8fgbaxmvjrp82qjyfgkhv9qi0n7l94zfx3c80c0bd5q758spmp"; 53045 - libraryHaskellDepends = [ 53046 - base bytestring containers directory extra file-embed filepath 53047 - hashable mtl process split trifecta unix 53048 - ]; 53049 - testHaskellDepends = [ 53050 - base bytestring containers directory extra file-embed filepath 53051 - hashable hspec mtl process split trifecta unix 53052 - ]; 53053 - description = "A simple library to call Alloy given a specification"; 53054 - license = lib.licenses.mit; 53055 - hydraPlatforms = lib.platforms.none; 53056 - broken = true; 53057 - }) {}; 53058 - 53059 - "call-alloy_0_3_0_2" = callPackage 53060 - ({ mkDerivation, base, bytestring, containers, directory, extra 53061 - , file-embed, filepath, hashable, hspec, mtl, process, split 53062 - , trifecta, unix 53063 - }: 53064 - mkDerivation { 53065 - pname = "call-alloy"; 53066 version = "0.3.0.2"; 53067 sha256 = "1bigpy4338zkvcxccnri3xfav7wdz3zblkzzwm0nrnyz7an4mgy6"; 53068 libraryHaskellDepends = [ ··· 55935 }: 55936 mkDerivation { 55937 pname = "cgroup-rts-threads"; 55938 - version = "0.2.1.0"; 55939 - sha256 = "1fzv3bgfr7r1c8m02z887ml2mzh2j571zcjjp6al272iaax8ymx0"; 55940 libraryHaskellDepends = [ base directory megaparsec path text ]; 55941 testHaskellDepends = [ 55942 base hspec-core hspec-expectations path path-io ··· 65769 ]; 65770 description = "Reduced parser for configurator-ng config files"; 65771 license = lib.licenses.bsd3; 65772 - hydraPlatforms = lib.platforms.none; 65773 - broken = true; 65774 }) {}; 65775 65776 "confsolve" = callPackage ··· 66605 }: 66606 mkDerivation { 66607 pname = "context"; 66608 - version = "0.2.0.0"; 66609 - sha256 = "1s915v2wbmhwp3qwk5p7n1iz510wfdmi4nq2zg1m04q7dpzhl0xz"; 66610 libraryHaskellDepends = [ base containers exceptions ]; 66611 testHaskellDepends = [ async base ghc-prim hspec ]; 66612 testToolDepends = [ hspec-discover ]; ··· 66668 }: 66669 mkDerivation { 66670 pname = "context-http-client"; 66671 - version = "0.2.0.0"; 66672 - sha256 = "0d7hdqcvfay8m1inbl19z4hj8qqi2a00qsxh7n7s03075rd8wzs0"; 66673 libraryHaskellDepends = [ base context http-client ]; 66674 testHaskellDepends = [ 66675 async base bytestring case-insensitive context hspec http-client ··· 66686 }: 66687 mkDerivation { 66688 pname = "context-resource"; 66689 - version = "0.2.0.0"; 66690 - sha256 = "0jjy6i6vcg3b9chrkw7l2yza8kdxl8d4bdlrqp0anpaxwm1q34da"; 66691 libraryHaskellDepends = [ base context exceptions ]; 66692 testHaskellDepends = [ async base context hspec ]; 66693 testToolDepends = [ hspec-discover ]; ··· 66716 }: 66717 mkDerivation { 66718 pname = "context-wai-middleware"; 66719 - version = "0.2.0.0"; 66720 - sha256 = "017zwjq4kl3jjmrdp0x6zxbsd9k5xnvcgf4r1cjk7cnlch36cwmn"; 66721 libraryHaskellDepends = [ base context wai ]; 66722 testHaskellDepends = [ 66723 async base bytestring case-insensitive context hspec http-client ··· 81046 }: 81047 mkDerivation { 81048 pname = "discord-haskell-voice"; 81049 - version = "2.3.0"; 81050 - sha256 = "0rzzgggw02rc5pw3wyimimghf3mrxfwhb91fhg2lmzq2dwqghzva"; 81051 isLibrary = true; 81052 isExecutable = true; 81053 libraryHaskellDepends = [ ··· 82580 }: 82581 mkDerivation { 82582 pname = "dns-patterns"; 82583 - version = "0.1"; 82584 - sha256 = "01ap0j5ar81v5k9dm0vsd03271xkqwi0a1dx3s9yflg7ll98yjs8"; 82585 libraryHaskellDepends = [ 82586 attoparsec base bytestring parser-combinators text 82587 ]; ··· 93117 pname = "expiring-cache-map"; 93118 version = "0.0.6.1"; 93119 sha256 = "1fb47hsn06ybn2yzw7r6pjkmvvfpbdx7wjhbpxcywilbjyac4fqf"; 93120 libraryHaskellDepends = [ 93121 base containers hashable unordered-containers 93122 ]; ··· 94235 }: 94236 mkDerivation { 94237 pname = "fakedata"; 94238 - version = "1.0.2"; 94239 - sha256 = "1xbp0wif3dfk4880f8lr8zj07jdqhbxalqm7bfpw6r0cv354w3l8"; 94240 - enableSeparateDataOutput = true; 94241 - libraryHaskellDepends = [ 94242 - aeson attoparsec base bytestring containers directory exceptions 94243 - fakedata-parser filepath hashable random string-random 94244 - template-haskell text time transformers unordered-containers vector 94245 - yaml 94246 - ]; 94247 - testHaskellDepends = [ 94248 - aeson attoparsec base bytestring containers directory exceptions 94249 - fakedata-parser filepath hashable hspec QuickCheck random 94250 - regex-tdfa string-random template-haskell text time transformers 94251 - unordered-containers vector yaml 94252 - ]; 94253 - testToolDepends = [ hspec-discover ]; 94254 - benchmarkHaskellDepends = [ 94255 - aeson attoparsec base bytestring containers deepseq directory 94256 - exceptions fakedata-parser filepath gauge hashable random 94257 - string-random template-haskell text time transformers 94258 - unordered-containers vector yaml 94259 - ]; 94260 - description = "Library for producing fake data"; 94261 - license = lib.licenses.bsd3; 94262 - }) {}; 94263 - 94264 - "fakedata_1_0_3" = callPackage 94265 - ({ mkDerivation, aeson, attoparsec, base, bytestring, containers 94266 - , deepseq, directory, exceptions, fakedata-parser, filepath, gauge 94267 - , hashable, hspec, hspec-discover, QuickCheck, random, regex-tdfa 94268 - , string-random, template-haskell, text, time, transformers 94269 - , unordered-containers, vector, yaml 94270 - }: 94271 - mkDerivation { 94272 - pname = "fakedata"; 94273 version = "1.0.3"; 94274 sha256 = "12sldxpn14zx5zwblw28k593rdqz50d246rz8j3zj41ljmnbwj4i"; 94275 enableSeparateDataOutput = true; ··· 94294 ]; 94295 description = "Library for producing fake data"; 94296 license = lib.licenses.bsd3; 94297 - hydraPlatforms = lib.platforms.none; 94298 }) {}; 94299 94300 "fakedata-parser" = callPackage ··· 99646 pname = "foldl"; 99647 version = "1.4.12"; 99648 sha256 = "0zf4yljh3s2ddxa7dhzdglmylj14kfldhkclc44g37zvjq6kcnag"; 99649 - revision = "3"; 99650 - editedCabalFile = "1xijnq8qkmrj2w7h6gr2vy8a0ajhiapzi2fain5pgcllli2fny2r"; 99651 libraryHaskellDepends = [ 99652 base bytestring comonad containers contravariant hashable primitive 99653 profunctors random semigroupoids text transformers ··· 101165 }: 101166 mkDerivation { 101167 pname = "freckle-app"; 101168 - version = "1.2.0.2"; 101169 - sha256 = "0wwzyg695h63azfdxd2i0clvjwkj4shj0rgrlvr6c830yn94i8q5"; 101170 libraryHaskellDepends = [ 101171 aeson base Blammo bugsnag bytestring case-insensitive conduit 101172 containers datadog dlist doctest ekg-core envparse errors ··· 101218 }: 101219 mkDerivation { 101220 pname = "free"; 101221 - version = "5.1.8"; 101222 - sha256 = "0h43a7w6yjnvqp3rl8qvcjl9a0hg86l0h7zxkikd0mw8n65l8xvr"; 101223 - libraryHaskellDepends = [ 101224 - base comonad containers distributive exceptions indexed-traversable 101225 - mtl profunctors semigroupoids template-haskell th-abstraction 101226 - transformers transformers-base 101227 - ]; 101228 - description = "Monads for free"; 101229 - license = lib.licenses.bsd3; 101230 - }) {}; 101231 - 101232 - "free_5_1_9" = callPackage 101233 - ({ mkDerivation, base, comonad, containers, distributive 101234 - , exceptions, indexed-traversable, mtl, profunctors, semigroupoids 101235 - , template-haskell, th-abstraction, transformers, transformers-base 101236 - }: 101237 - mkDerivation { 101238 - pname = "free"; 101239 version = "5.1.9"; 101240 sha256 = "1vlzis9sqxh7xrmh3habbgiw3skkhkn710bhqb6fnl45804i6x9f"; 101241 libraryHaskellDepends = [ ··· 101245 ]; 101246 description = "Monads for free"; 101247 license = lib.licenses.bsd3; 101248 - hydraPlatforms = lib.platforms.none; 101249 }) {}; 101250 101251 "free-algebras" = callPackage ··· 103503 "futhark" = callPackage 103504 ({ mkDerivation, aeson, alex, ansi-terminal, array, base 103505 , base16-bytestring, binary, blaze-html, bmp, bytestring 103506 - , bytestring-to-vector, cmark-gfm, containers, cryptohash-md5, Diff 103507 - , directory, directory-tree, dlist, file-embed, filepath, free 103508 - , futhark-data, futhark-manifest, futhark-server, githash, half 103509 - , happy, haskeline, hslogger, language-c-quote, lens, lsp 103510 - , mainland-pretty, megaparsec, mtl, mwc-random, neat-interpolation 103511 - , parallel, parser-combinators, process, process-extras, QuickCheck 103512 - , random, regex-tdfa, srcloc, statistics, tasty, tasty-hunit 103513 - , tasty-quickcheck, template-haskell, temporary, terminal-size 103514 - , text, time, transformers, vector, versions, zip-archive, zlib 103515 }: 103516 mkDerivation { 103517 pname = "futhark"; 103518 - version = "0.21.12"; 103519 - sha256 = "1pjrq70x4qxgjjx5yy8zk9v6k3d01kk42bq5jrrb5f27id4dyn6v"; 103520 - revision = "2"; 103521 - editedCabalFile = "1m6rn5amxikflgli0izq9lsdc2s4qcwmmhiila54mnk1c6l2q7zv"; 103522 isLibrary = true; 103523 isExecutable = true; 103524 libraryHaskellDepends = [ 103525 aeson ansi-terminal array base base16-bytestring binary blaze-html 103526 - bmp bytestring bytestring-to-vector cmark-gfm containers 103527 - cryptohash-md5 Diff directory directory-tree dlist file-embed 103528 - filepath free futhark-data futhark-manifest futhark-server githash 103529 - half haskeline hslogger language-c-quote lens lsp mainland-pretty 103530 - megaparsec mtl mwc-random neat-interpolation parallel process 103531 - process-extras random regex-tdfa srcloc statistics template-haskell 103532 - temporary terminal-size text time transformers vector versions 103533 - zip-archive zlib 103534 ]; 103535 libraryToolDepends = [ alex happy ]; 103536 executableHaskellDepends = [ base ]; 103537 testHaskellDepends = [ 103538 - base containers megaparsec mtl parser-combinators QuickCheck tasty 103539 - tasty-hunit tasty-quickcheck text 103540 ]; 103541 description = "An optimising compiler for a functional, array-oriented language"; 103542 license = lib.licenses.isc; ··· 103733 }: 103734 mkDerivation { 103735 pname = "fuzzy-time"; 103736 - version = "0.2.0.0"; 103737 - sha256 = "0gf6bj0jrd8jh30n1cdjc31ynjpsrikwacp3mysa76kqb4mxl3xz"; 103738 - libraryHaskellDepends = [ 103739 - base containers deepseq megaparsec text time validity validity-time 103740 - ]; 103741 - license = lib.licenses.mit; 103742 - }) {}; 103743 - 103744 - "fuzzy-time_0_2_0_1" = callPackage 103745 - ({ mkDerivation, base, containers, deepseq, megaparsec, text, time 103746 - , validity, validity-time 103747 - }: 103748 - mkDerivation { 103749 - pname = "fuzzy-time"; 103750 version = "0.2.0.1"; 103751 sha256 = "1wlcq37q71q3565dc73jcr42p970lml0gmpjqwn3k5xf8d63ridj"; 103752 libraryHaskellDepends = [ 103753 base containers deepseq megaparsec text time validity validity-time 103754 ]; 103755 license = lib.licenses.mit; 103756 - hydraPlatforms = lib.platforms.none; 103757 }) {}; 103758 103759 "fuzzy-time-gen" = callPackage ··· 107122 mainProgram = "gh-pocket-knife"; 107123 }) {}; 107124 107125 - "ghc_9_2_2" = callPackage 107126 ({ mkDerivation, array, base, binary, bytestring, containers 107127 , deepseq, directory, exceptions, filepath, ghc-boot, ghc-heap 107128 , ghci, hpc, process, template-haskell, terminfo, time ··· 107130 }: 107131 mkDerivation { 107132 pname = "ghc"; 107133 - version = "9.2.2"; 107134 - sha256 = "125cx0zycc5gkj6awg5lgc6zhlr0iklw18g20dhpbgiyzplx2gqb"; 107135 libraryHaskellDepends = [ 107136 array base binary bytestring containers deepseq directory 107137 exceptions filepath ghc-boot ghc-heap ghci hpc process ··· 111091 description = "manage files with git, without checking their contents into git"; 111092 license = lib.licenses.agpl3Only; 111093 mainProgram = "git-annex"; 111094 - maintainers = [ lib.maintainers.peti ]; 111095 }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; 111096 inherit (pkgs) gnupg; inherit (pkgs) lsof; inherit (pkgs) openssh; 111097 inherit (pkgs) perl; inherit (pkgs) rsync; inherit (pkgs) wget; ··· 123426 }: 123427 mkDerivation { 123428 pname = "hapistrano"; 123429 - version = "0.4.5.0"; 123430 - sha256 = "0pjm9flkqkpwmiv6jqgghf3isvq2hqxy2z80jnj4slm7gkm8kq40"; 123431 isLibrary = true; 123432 isExecutable = true; 123433 libraryHaskellDepends = [ ··· 129606 benchmarkHaskellDepends = [ gauge rerebase ]; 129607 ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 129608 license = lib.licenses.mit; 129609 - }) {}; 129610 - 129611 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 129612 - ({ mkDerivation, attoparsec, base, bytestring 129613 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 129614 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 129615 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 129616 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 129617 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 129618 - }: 129619 - mkDerivation { 129620 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 129621 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 129622 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 129623 - libraryHaskellDepends = [ 129624 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 129625 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 129626 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 129627 - ]; 129628 - testHaskellDepends = [ 129629 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 129630 - tasty-hunit tasty-quickcheck 129631 - ]; 129632 - benchmarkHaskellDepends = [ gauge rerebase ]; 129633 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 129634 - license = lib.licenses.mit; 129635 - hydraPlatforms = lib.platforms.none; 129636 }) {}; 129637 129638 ({ mkDerivation, attoparsec, base, bytestring, criterion, directory ··· 129737 ]; 129738 ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 129739 license = lib.licenses.mit; 129740 - hydraPlatforms = lib.platforms.none; 129741 }) {}; 129742 129743 ({ mkDerivation, attoparsec, base, bytestring, criterion, directory ··· 129792 ]; 129793 ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 129794 license = lib.licenses.mit; 129795 - hydraPlatforms = lib.platforms.none; 129796 - broken = true; 129797 }) {}; 129798 129799 ({ mkDerivation, attoparsec, base, bytestring, criterion, directory ··· 130161 }: 130162 mkDerivation { 130163 ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 130164 - version = "0.4.0.15"; 130165 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 130166 - libraryHaskellDepends = [ 130167 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 130168 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 130169 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 130170 - ]; 130171 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 130172 - license = lib.licenses.mit; 130173 - }) {}; 130174 - 130175 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 130176 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 130177 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 130178 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 130179 - }: 130180 - mkDerivation { 130181 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 130182 ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 130183 ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 130184 libraryHaskellDepends = [ ··· 130188 ]; 130189 ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 130190 license = lib.licenses.mit; 130191 - hydraPlatforms = lib.platforms.none; 130192 }) {}; 130193 130194 ({ mkDerivation, attoparsec, base, bytestring, criterion, directory ··· 135810 pname = "hiedb"; 135811 version = "0.4.1.0"; 135812 sha256 = "1389qmlga5rq8has02rn35pzag5wnfpx3w77r60mzl3b4pkpzi7i"; 135813 - revision = "2"; 135814 - editedCabalFile = "1mlsjdd41a89znafqssafwghlvk6bkijk5qkbgrm61h1h7flir2j"; 135815 isLibrary = true; 135816 isExecutable = true; 135817 libraryHaskellDepends = [ ··· 136371 mainProgram = "hindent"; 136372 }) {}; 136373 136374 "hindley-milner" = callPackage 136375 ({ mkDerivation, base, containers, data-fix, hspec, mtl 136376 , transformers ··· 138744 pname = "hls-graph"; 138745 version = "1.7.0.0"; 138746 sha256 = "1mq1pvn5z8fnlsj9iqck05shm8fak9zf05mbcbrxb5jvq0a31ypd"; 138747 enableSeparateDataOutput = true; 138748 libraryHaskellDepends = [ 138749 aeson async base bytestring containers deepseq directory exceptions ··· 138853 pname = "hls-plugin-api"; 138854 version = "1.4.0.0"; 138855 sha256 = "0yk2y6qw88vhww8z10d2kgn57wsarfnp6z1gmjl1ik2w96a8g3mv"; 138856 libraryHaskellDepends = [ 138857 aeson base containers data-default dependent-map dependent-sum Diff 138858 dlist extra ghc hashable hls-graph lens lens-aeson lsp ··· 144056 pname = "hs-php-session"; 144057 version = "0.0.9.3"; 144058 sha256 = "1xwdikiqy2dxyzr6wx51wy51vifsvshblx7kkhfqd7izjf87ww8f"; 144059 libraryHaskellDepends = [ base bytestring ]; 144060 description = "PHP session and values serialization"; 144061 license = lib.licenses.bsd3; ··· 148093 testHaskellDepends = [ base hspec hspec-wai ]; 148094 description = "Testing JSON APIs with hspec-wai"; 148095 license = lib.licenses.mit; 148096 - hydraPlatforms = lib.platforms.none; 148097 - broken = true; 148098 }) {}; 148099 148100 "hspec-webdriver" = callPackage ··· 158960 broken = true; 158961 }) {}; 158962 158963 "intervals" = callPackage 158964 ({ mkDerivation, array, base, distributive, ghc-prim, QuickCheck }: 158965 mkDerivation { ··· 159160 license = lib.licenses.bsd2; 159161 }) {}; 159162 159163 "inventory" = callPackage 159164 ({ mkDerivation, appendmap, array, base, bytestring, containers 159165 , directory, filepath, ghc, ghc-paths, mtl, tasty, tasty-hunit ··· 162593 162594 "jordan" = callPackage 162595 ({ mkDerivation, attoparsec, base, bytestring, containers 162596 - , contravariant, hspec, hspec-megaparsec, megaparsec 162597 , parser-combinators, QuickCheck, quickcheck-text, raw-strings-qq 162598 , scientific, text 162599 }: 162600 mkDerivation { 162601 pname = "jordan"; 162602 - version = "0.1.0.0"; 162603 - sha256 = "1qi83jc05ggakf0v7l7xf8c4xdfb29fb9yl54fi7wv9a4sqzk3hi"; 162604 libraryHaskellDepends = [ 162605 - attoparsec base bytestring containers contravariant megaparsec 162606 - parser-combinators scientific text 162607 ]; 162608 testHaskellDepends = [ 162609 - attoparsec base bytestring containers contravariant hspec 162610 - hspec-megaparsec megaparsec parser-combinators QuickCheck 162611 quickcheck-text raw-strings-qq scientific text 162612 ]; 162613 description = "JSON with Structure"; ··· 162618 162619 "jordan-openapi" = callPackage 162620 ({ mkDerivation, aeson, base, bytestring, containers, contravariant 162621 - , hspec, insert-ordered-containers, jordan, openapi3, optics-core 162622 - , text 162623 }: 162624 mkDerivation { 162625 pname = "jordan-openapi"; 162626 - version = "0.1.0.0"; 162627 - sha256 = "0a9m1kx4v6vdzyd93lpc9jvqkhb9sw6adhyv2rvp1v0x7vbcqr0v"; 162628 libraryHaskellDepends = [ 162629 - aeson base bytestring containers contravariant 162630 insert-ordered-containers jordan openapi3 optics-core text 162631 ]; 162632 testHaskellDepends = [ 162633 - aeson base bytestring containers contravariant hspec 162634 insert-ordered-containers jordan openapi3 optics-core text 162635 ]; 162636 description = "OpenAPI Definitions for Jordan, Automatically"; 162637 license = lib.licenses.mit; 162638 hydraPlatforms = lib.platforms.none; 162639 }) {}; ··· 165005 }: 165006 mkDerivation { 165007 pname = "kan-extensions"; 165008 - version = "5.2.4"; 165009 - sha256 = "0qnds0vwhsqznirqalm8f4c0qsmp1awfhc4fn2rx5agl5az3zip8"; 165010 - libraryHaskellDepends = [ 165011 - adjunctions array base comonad containers contravariant 165012 - distributive free invariant mtl profunctors semigroupoids tagged 165013 - transformers transformers-compat 165014 - ]; 165015 - description = "Kan extensions, Kan lifts, the Yoneda lemma, and (co)density (co)monads"; 165016 - license = lib.licenses.bsd3; 165017 - }) {}; 165018 - 165019 - "kan-extensions_5_2_5" = callPackage 165020 - ({ mkDerivation, adjunctions, array, base, comonad, containers 165021 - , contravariant, distributive, free, invariant, mtl, profunctors 165022 - , semigroupoids, tagged, transformers, transformers-compat 165023 - }: 165024 - mkDerivation { 165025 - pname = "kan-extensions"; 165026 version = "5.2.5"; 165027 sha256 = "08mddsk9v75mahp1jqn28vglygmdil1g37drcj3ivbqc0k6dq55r"; 165028 libraryHaskellDepends = [ ··· 165032 ]; 165033 description = "Kan extensions, Kan lifts, the Yoneda lemma, and (co)density (co)monads"; 165034 license = lib.licenses.bsd3; 165035 - hydraPlatforms = lib.platforms.none; 165036 }) {}; 165037 165038 "kangaroo" = callPackage ··· 170543 pname = "large-anon"; 170544 version = "0.1.0.0"; 170545 sha256 = "15rrqpfd7jmm391lxhz2ag1sa17nw8x3wjqm0f9naidgmyv9x1z2"; 170546 libraryHaskellDepends = [ 170547 aeson base containers ghc ghc-tcplugin-api hashable large-generics 170548 mtl optics-core primitive record-hasfield sop-core syb tagged ··· 170621 pname = "large-records"; 170622 version = "0.2.1.0"; 170623 sha256 = "0gmgrkh9fsyy6ww64l4warsilxkxwfzfl43d36d8a5dcgvn49ip2"; 170624 libraryHaskellDepends = [ 170625 base containers ghc large-generics mtl primitive record-hasfield 170626 syb template-haskell transformers ··· 182876 pname = "massiv-persist"; 182877 version = "1.0.0.2"; 182878 sha256 = "1hqmwbrxv664y4rfm37ziym25l9218pd21lz4180c0k3hfpdfsxy"; 182879 libraryHaskellDepends = [ 182880 base bytestring deepseq massiv persist primitive 182881 ]; ··· 184211 }) {}; 184212 184213 "mealy" = callPackage 184214 - ({ mkDerivation, adjunctions, base, containers, folds, matrix 184215 - , mwc-probability, numhask, numhask-array, optics-core, primitive 184216 - , profunctors, tdigest, text, vector, vector-algorithms 184217 }: 184218 mkDerivation { 184219 pname = "mealy"; 184220 - version = "0.2.0"; 184221 - sha256 = "0rc1c7l2g7b1xr66dga3p6lg49pykxhsy24jg5rl4ag255axlfyv"; 184222 libraryHaskellDepends = [ 184223 - adjunctions base containers folds matrix mwc-probability numhask 184224 - numhask-array optics-core primitive profunctors tdigest text vector 184225 - vector-algorithms 184226 ]; 184227 description = "Mealy machines for processing time-series and ordered data"; 184228 license = lib.licenses.bsd3; ··· 187191 license = lib.licenses.bsd3; 187192 }) {}; 187193 187194 "minimung" = callPackage 187195 ({ mkDerivation, base, GLUT, haskell98, unix }: 187196 mkDerivation { ··· 187394 license = lib.licenses.bsd3; 187395 }) {}; 187396 187397 "minizinc-process" = callPackage 187398 ({ mkDerivation, aeson, attoparsec, base, bytestring, containers 187399 , directory, hashable, hedgehog, hspec, hspec-hedgehog, process ··· 187449 ({ mkDerivation, base }: 187450 mkDerivation { 187451 pname = "mintty"; 187452 - version = "0.1.3"; 187453 - sha256 = "07gy5w0zbx9q64kdr6rzkwdxrgxh2h188bkdvbbgxwk86m9q9i7x"; 187454 - libraryHaskellDepends = [ base ]; 187455 - description = "A reliable way to detect the presence of a MinTTY console on Windows"; 187456 - license = lib.licenses.bsd3; 187457 - }) {}; 187458 - 187459 - "mintty_0_1_4" = callPackage 187460 - ({ mkDerivation, base }: 187461 - mkDerivation { 187462 - pname = "mintty"; 187463 version = "0.1.4"; 187464 sha256 = "0zla9cg6fcjgpjjsgq7mi0xl753j5zmvhy5kwsagb5pp2gc48l3b"; 187465 libraryHaskellDepends = [ base ]; 187466 description = "A reliable way to detect the presence of a MinTTY console on Windows"; 187467 license = lib.licenses.bsd3; 187468 - hydraPlatforms = lib.platforms.none; 187469 }) {}; 187470 187471 "mios" = callPackage ··· 189530 }: 189531 mkDerivation { 189532 pname = "monad-logger-aeson"; 189533 - version = "0.3.0.1"; 189534 - sha256 = "1bfz5z836m9fn7sd6r5mlgsnavb8ih0d3x9nm0m3zlx654llvpmq"; 189535 isLibrary = true; 189536 isExecutable = true; 189537 libraryHaskellDepends = [ ··· 190201 license = lib.licenses.bsd3; 190202 }) {}; 190203 190204 "monad-timing" = callPackage 190205 ({ mkDerivation, base, containers, exceptions, hlint, hspec 190206 , monad-control, mtl, time, transformers, transformers-base ··· 190296 190297 "monad-validate" = callPackage 190298 ({ mkDerivation, aeson, aeson-qq, base, exceptions, hspec 190299 - , monad-control, mtl, scientific, text, transformers 190300 - , transformers-base, unordered-containers, vector 190301 }: 190302 mkDerivation { 190303 pname = "monad-validate"; 190304 - version = "1.2.0.0"; 190305 - sha256 = "1wqiifcwm24mfshlh0xaq9b4blpsccqxglwgjqmg4jqbav3143zm"; 190306 libraryHaskellDepends = [ 190307 base exceptions monad-control mtl transformers transformers-base 190308 ]; ··· 190310 aeson aeson-qq base exceptions hspec monad-control mtl scientific 190311 text transformers transformers-base unordered-containers vector 190312 ]; 190313 description = "A monad transformer for data validation"; 190314 license = lib.licenses.isc; 190315 }) {}; ··· 197241 }: 197242 mkDerivation { 197243 pname = "net-mqtt"; 197244 - version = "0.8.2.0"; 197245 - sha256 = "0krh8imyjls1incrsz8pnn3zww0yxygy3hy15r55gbs80x5w7j13"; 197246 isLibrary = true; 197247 isExecutable = true; 197248 libraryHaskellDepends = [ ··· 208650 mainProgram = "pandoc-plot"; 208651 }) {}; 208652 208653 - "pandoc-plot_1_5_3" = callPackage 208654 ({ mkDerivation, aeson, base, bytestring, containers, criterion 208655 , data-default, directory, filepath, gitrev, hashable 208656 , hspec-expectations, lifted-async, lifted-base, mtl ··· 208660 }: 208661 mkDerivation { 208662 pname = "pandoc-plot"; 208663 - version = "1.5.3"; 208664 - sha256 = "0d73b9lnbm041an47sx0cmywga0p51dgbmh1gbfad90w6vi4cxpc"; 208665 isLibrary = true; 208666 isExecutable = true; 208667 libraryHaskellDepends = [ ··· 219760 ({ mkDerivation, base, optics, polysemy, polysemy-zoo }: 219761 mkDerivation { 219762 pname = "polysemy-optics"; 219763 - version = "0.1.0.1"; 219764 - sha256 = "1503qfi0kp8p4h723nkwidgxp46wmfxi93vsyvdp6i7zwvg09yy2"; 219765 libraryHaskellDepends = [ base optics polysemy polysemy-zoo ]; 219766 description = "Optics for Polysemy"; 219767 license = lib.licenses.bsd2; ··· 222134 license = lib.licenses.mit; 222135 hydraPlatforms = lib.platforms.none; 222136 mainProgram = "postgrest"; 222137 }) {}; 222138 222139 "postgrest-ws" = callPackage ··· 228312 hydraPlatforms = lib.platforms.none; 228313 }) {inherit (pkgs) libdevil;}; 228314 228315 "pvss" = callPackage 228316 ({ mkDerivation, base, binary, bytestring, cryptonite 228317 , cryptonite-openssl, deepseq, foundation, hourglass, integer-gmp ··· 229344 }: 229345 mkDerivation { 229346 pname = "quibble-core"; 229347 - version = "0.0.0.1"; 229348 - sha256 = "1dzgha5c827x0gb9fhqa13rz0wkdn0wpxfw3sxnxq8g9rr8myb0g"; 229349 libraryHaskellDepends = [ 229350 base bytestring containers mono-traversable optics-core text 229351 text-conversions time uuid ··· 234858 broken = true; 234859 }) {chrome-test-utils = null;}; 234860 234861 "reflex-dom-fragment-shader-canvas" = callPackage 234862 ({ mkDerivation, base, containers, ghcjs-dom, jsaddle, lens 234863 , reflex-dom, text, transformers ··· 236423 }: 236424 mkDerivation { 236425 pname = "registry"; 236426 - ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 236427 - sha256 = "1w4qs28q5gb5v896hb7rpkbjix7jwgni5ky0wddas04l7ap3an0d"; 236428 libraryHaskellDepends = [ 236429 base containers exceptions hashable mmorph mtl protolude resourcet 236430 semigroupoids semigroups template-haskell text transformers-base ··· 238600 }: 238601 mkDerivation { 238602 pname = "resourcet"; 238603 - version = "1.2.5"; 238604 - sha256 = "0bj98srdlz2yx3nx030m0nzv6yyz1ry50v6bwdff5a6xi256jz7n"; 238605 - libraryHaskellDepends = [ 238606 - base containers exceptions mtl primitive transformers unliftio-core 238607 - ]; 238608 - testHaskellDepends = [ base exceptions hspec transformers ]; 238609 - description = "Deterministic allocation and freeing of scarce resources"; 238610 - license = lib.licenses.bsd3; 238611 - }) {}; 238612 - 238613 - "resourcet_1_2_6" = callPackage 238614 - ({ mkDerivation, base, containers, exceptions, hspec, mtl 238615 - , primitive, transformers, unliftio-core 238616 - }: 238617 - mkDerivation { 238618 - pname = "resourcet"; 238619 version = "1.2.6"; 238620 sha256 = "0d7xnpysrick56gxzkkj0mpblywbxaaldhziyl77am3822r3afzq"; 238621 libraryHaskellDepends = [ ··· 238624 testHaskellDepends = [ base exceptions hspec transformers ]; 238625 description = "Deterministic allocation and freeing of scarce resources"; 238626 license = lib.licenses.bsd3; 238627 - hydraPlatforms = lib.platforms.none; 238628 }) {}; 238629 238630 "resourcet-pool" = callPackage ··· 239695 }: 239696 mkDerivation { 239697 pname = "rhine"; 239698 - version = "0.8.0.0"; 239699 - sha256 = "0axhfv3vwd12k5c21fd34hw4dvn0bydyzr50b62z8wl0009vq01x"; 239700 libraryHaskellDepends = [ 239701 base containers deepseq dunai free MonadRandom random 239702 simple-affine-space time time-domain transformers vector-sized ··· 239710 ({ mkDerivation, base, dunai, gloss, rhine, transformers }: 239711 mkDerivation { 239712 pname = "rhine-gloss"; 239713 - version = "0.8.0.0"; 239714 - sha256 = "00mc1kbxvh4ilxkgpmxzfac50hziq6x6j7f1h7rfdlxhjhfyzh6y"; 239715 isLibrary = true; 239716 isExecutable = true; 239717 libraryHaskellDepends = [ base dunai gloss rhine transformers ]; ··· 251567 license = lib.licenses.mit; 251568 }) {}; 251569 251570 "serversession-backend-acid-state" = callPackage 251571 ({ mkDerivation, acid-state, base, containers, hspec, mtl, safecopy 251572 , serversession, unordered-containers ··· 252743 ]; 252744 description = "Dependency tracking for Futhark"; 252745 license = lib.licenses.bsd3; 252746 - hydraPlatforms = lib.platforms.none; 252747 }) {}; 252748 252749 "shake-google-closure-compiler" = callPackage ··· 253010 maintainers = [ lib.maintainers.psibi ]; 253011 }) {}; 253012 253013 "shakespeare-babel" = callPackage 253014 ({ mkDerivation, base, classy-prelude, data-default, directory 253015 , process, shakespeare, template-haskell ··· 261839 broken = true; 261840 }) {}; 261841 261842 "splay" = callPackage 261843 ({ mkDerivation, base }: 261844 mkDerivation { ··· 263249 }: 263250 mkDerivation { 263251 pname = "stache"; 263252 - version = "2.3.2"; 263253 - sha256 = "1ya9hnxvwqh1qhlci7aqpbj9abmsi2n13251b8nffmpvlpls6lk8"; 263254 - revision = "1"; 263255 - editedCabalFile = "1dirydqnbnvyasdpsncf1c9vlcfb9h8c8ff3fancsbrdwfbdjlbj"; 263256 - isLibrary = true; 263257 - isExecutable = true; 263258 - enableSeparateDataOutput = true; 263259 - libraryHaskellDepends = [ 263260 - aeson base bytestring containers deepseq directory filepath 263261 - megaparsec mtl template-haskell text vector 263262 - ]; 263263 - executableHaskellDepends = [ 263264 - aeson base filepath gitrev optparse-applicative text yaml 263265 - ]; 263266 - testHaskellDepends = [ 263267 - aeson base bytestring containers file-embed hspec hspec-megaparsec 263268 - megaparsec template-haskell text yaml 263269 - ]; 263270 - testToolDepends = [ hspec-discover ]; 263271 - benchmarkHaskellDepends = [ 263272 - aeson base criterion deepseq megaparsec text 263273 - ]; 263274 - description = "Mustache templates for Haskell"; 263275 - license = lib.licenses.bsd3; 263276 - mainProgram = "stache"; 263277 - }) {}; 263278 - 263279 - "stache_2_3_3" = callPackage 263280 - ({ mkDerivation, aeson, base, bytestring, containers, criterion 263281 - , deepseq, directory, file-embed, filepath, gitrev, hspec 263282 - , hspec-discover, hspec-megaparsec, megaparsec, mtl 263283 - , optparse-applicative, template-haskell, text, vector, yaml 263284 - }: 263285 - mkDerivation { 263286 - pname = "stache"; 263287 version = "2.3.3"; 263288 sha256 = "1naqj54qm59f04x310lvj4fsrp3xar1v643i79gp7h48kyn1c2vy"; 263289 isLibrary = true; ··· 263306 ]; 263307 description = "Mustache templates for Haskell"; 263308 license = lib.licenses.mit; 263309 - hydraPlatforms = lib.platforms.none; 263310 mainProgram = "stache"; 263311 }) {}; 263312 ··· 265807 }) {}; 265808 265809 "stooq-api" = callPackage 265810 - ({ mkDerivation, aeson, base, bytestring, lens, text, time 265811 - , utf8-string, vector, wreq 265812 }: 265813 mkDerivation { 265814 pname = "stooq-api"; 265815 - version = "0.2.0.0"; 265816 - sha256 = "1fsfy2ira8bhkzh6bf72p0wvgq970y1nrgkqsbngbq2p8yx5s2ay"; 265817 libraryHaskellDepends = [ 265818 - aeson base bytestring lens text time utf8-string vector wreq 265819 ]; 265820 doHaddock = false; 265821 description = "A simple wrapper around stooq.pl API for downloading market data."; ··· 266114 }: 266115 mkDerivation { 266116 pname = "stratosphere"; 266117 - version = "0.59.1"; 266118 - sha256 = "1gcvz8gpyj495jr5qa2jx2yay7ip3hs1dd4bqckmam8llyz2gvxv"; 266119 isLibrary = true; 266120 isExecutable = true; 266121 libraryHaskellDepends = [ ··· 268267 }: 268268 mkDerivation { 268269 pname = "strongweak"; 268270 - version = "0.3.0"; 268271 - sha256 = "00cl7dbqbaq81rsk3xzkdzyxra16kcz4dfdm0w7l1ysrgpfa1kbp"; 268272 libraryHaskellDepends = [ 268273 base either prettyprinter refined vector vector-sized 268274 ]; ··· 269356 }: 269357 mkDerivation { 269358 pname = "superbuffer"; 269359 - version = "0.3.1.1"; 269360 - sha256 = "0y3c2v2ca5lzz6265bcn9g04j6aihm7kw8w91ywfl7bkg1agp9fp"; 269361 - libraryHaskellDepends = [ base bytestring ]; 269362 - testHaskellDepends = [ async base bytestring HTF QuickCheck ]; 269363 - benchmarkHaskellDepends = [ 269364 - async base buffer-builder bytestring criterion 269365 - ]; 269366 - description = "Efficiently build a bytestring from smaller chunks"; 269367 - license = lib.licenses.bsd3; 269368 - }) {}; 269369 - 269370 - "superbuffer_0_3_1_2" = callPackage 269371 - ({ mkDerivation, async, base, buffer-builder, bytestring, criterion 269372 - , HTF, QuickCheck 269373 - }: 269374 - mkDerivation { 269375 - pname = "superbuffer"; 269376 version = "0.3.1.2"; 269377 sha256 = "024mcjmayirwxqqyr9w1zfsxihi680clzngkpmgccv10phb8qpsp"; 269378 libraryHaskellDepends = [ base bytestring ]; ··· 269382 ]; 269383 description = "Efficiently build a bytestring from smaller chunks"; 269384 license = lib.licenses.bsd3; 269385 - hydraPlatforms = lib.platforms.none; 269386 }) {}; 269387 269388 "supercollider-ht" = callPackage ··· 285566 license = lib.licenses.publicDomain; 285567 }) {}; 285568 285569 "tsession" = callPackage 285570 ({ mkDerivation, base, containers, mtl, time, transformers }: 285571 mkDerivation { ··· 286061 ({ mkDerivation, base, ghc-prim, hspec, template-haskell }: 286062 mkDerivation { 286063 pname = "tuple-append"; 286064 - version = "0.1.0.0"; 286065 - sha256 = "1lmpwf5fdgs6xzfbgp5mr9090m7323gmrn8fbclmr1kr2xfribnw"; 286066 libraryHaskellDepends = [ base ghc-prim template-haskell ]; 286067 testHaskellDepends = [ base ghc-prim hspec ]; 286068 description = "A package to append items and tuples into new tuples"; 286069 license = lib.licenses.bsd3; 286070 }) {}; 286071 286072 "tuple-gen" = callPackage 286073 ({ mkDerivation, base, combinat }: 286074 mkDerivation { ··· 288389 288390 "typesafe-precure" = callPackage 288391 ({ mkDerivation, aeson, aeson-pretty, autoexporter, base 288392 - , bytestring, dlist, hspec, monad-skeleton, template-haskell, text 288393 - , th-data-compat, th-strict-compat 288394 }: 288395 mkDerivation { 288396 pname = "typesafe-precure"; 288397 - version = "0.8.2.2"; 288398 - sha256 = "1lrp190lb5432bc5kxfcjx3a4pf1y6krl3x74181448x2sx7fh1g"; 288399 libraryHaskellDepends = [ 288400 aeson aeson-pretty autoexporter base bytestring dlist 288401 monad-skeleton template-haskell text th-data-compat ··· 288403 ]; 288404 libraryToolDepends = [ autoexporter ]; 288405 testHaskellDepends = [ base hspec ]; 288406 description = "Type-safe transformations and purifications of PreCures (Japanese Battle Heroine)"; 288407 license = lib.licenses.bsd3; 288408 hydraPlatforms = lib.platforms.none; ··· 296592 hydraPlatforms = lib.platforms.none; 296593 }) {}; 296594 296595 "vty-examples" = callPackage 296596 ({ mkDerivation, array, base, bytestring, Cabal, containers 296597 , data-default, deepseq, lens, mtl, parallel, parsec, QuickCheck ··· 296964 }) {}; 296965 296966 "wai-control" = callPackage 296967 - ({ mkDerivation, base, monad-control-identity, transformers-base 296968 - , wai, wai-websockets, websockets 296969 }: 296970 mkDerivation { 296971 pname = "wai-control"; 296972 - version = "0.1.0.2"; 296973 - sha256 = "0ygcqxyp8mmw81rrlk20ziyghi6snrzyyqgfllbh5b6jhx6z017h"; 296974 libraryHaskellDepends = [ 296975 - base monad-control-identity transformers-base wai wai-websockets 296976 - websockets 296977 ]; 296978 description = "Run wai Applications in IO based monads"; 296979 license = lib.licenses.bsd3; 296980 - hydraPlatforms = lib.platforms.none; 296981 }) {}; 296982 296983 "wai-cors" = callPackage ··· 300368 }: 300369 mkDerivation { 300370 pname = "webgear-core"; 300371 - version = "1.0.2"; 300372 - sha256 = "18zzi1gs0sxa8x061lqavipjn82zzvpnlff02cz7k8lvyyivyn60"; 300373 - libraryHaskellDepends = [ 300374 - arrows base bytestring case-insensitive filepath http-api-data 300375 - http-media http-types jose mime-types network safe-exceptions 300376 - tagged template-haskell text unordered-containers wai 300377 - ]; 300378 - description = "Composable, type-safe library to build HTTP APIs"; 300379 - license = lib.licenses.mpl20; 300380 - }) {}; 300381 - 300382 - "webgear-core_1_0_3" = callPackage 300383 - ({ mkDerivation, arrows, base, bytestring, case-insensitive 300384 - , filepath, http-api-data, http-media, http-types, jose, mime-types 300385 - , network, safe-exceptions, tagged, template-haskell, text 300386 - , unordered-containers, wai 300387 - }: 300388 - mkDerivation { 300389 - pname = "webgear-core"; 300390 version = "1.0.3"; 300391 sha256 = "1617gc4hlhgx5xyd5b5l1syhpqdq801ifpdgsbrk3z3madhn8vag"; 300392 libraryHaskellDepends = [ ··· 300396 ]; 300397 description = "Composable, type-safe library to build HTTP APIs"; 300398 license = lib.licenses.mpl20; 300399 - hydraPlatforms = lib.platforms.none; 300400 }) {}; 300401 300402 "webgear-openapi" = callPackage ··· 300405 }: 300406 mkDerivation { 300407 pname = "webgear-openapi"; 300408 - version = "1.0.2"; 300409 - sha256 = "0k3smna51wm9rc00nzv8cf7pd16l4ddldr27niw11gy27viyzpj2"; 300410 - libraryHaskellDepends = [ 300411 - arrows base http-media http-types insert-ordered-containers lens 300412 - openapi3 text webgear-core 300413 - ]; 300414 - description = "Composable, type-safe library to build HTTP API servers"; 300415 - license = lib.licenses.mpl20; 300416 - }) {}; 300417 - 300418 - "webgear-openapi_1_0_3" = callPackage 300419 - ({ mkDerivation, arrows, base, http-media, http-types 300420 - , insert-ordered-containers, lens, openapi3, text, webgear-core 300421 - }: 300422 - mkDerivation { 300423 - pname = "webgear-openapi"; 300424 version = "1.0.3"; 300425 sha256 = "0j0xdqg43qsphsnk0lhy5di3hk77a0n5bbw0qp8n371lk90464hd"; 300426 libraryHaskellDepends = [ ··· 300429 ]; 300430 description = "Composable, type-safe library to build HTTP API servers"; 300431 license = lib.licenses.mpl20; 300432 - hydraPlatforms = lib.platforms.none; 300433 }) {}; 300434 300435 "webgear-server" = callPackage ··· 300441 }: 300442 mkDerivation { 300443 pname = "webgear-server"; 300444 - version = "1.0.2"; 300445 - sha256 = "0zy0sxm3jcq8889494v7y1ydka739yw2gh38w60h2fw7awqlbj5w"; 300446 - libraryHaskellDepends = [ 300447 - aeson arrows base base64-bytestring bytestring 300448 - bytestring-conversion http-api-data http-media http-types jose 300449 - monad-time mtl text unordered-containers wai webgear-core 300450 - ]; 300451 - testHaskellDepends = [ 300452 - base base64-bytestring bytestring http-types QuickCheck 300453 - quickcheck-instances tasty tasty-hunit tasty-quickcheck text wai 300454 - webgear-core 300455 - ]; 300456 - description = "Composable, type-safe library to build HTTP API servers"; 300457 - license = lib.licenses.mpl20; 300458 - }) {}; 300459 - 300460 - "webgear-server_1_0_3" = callPackage 300461 - ({ mkDerivation, aeson, arrows, base, base64-bytestring, bytestring 300462 - , bytestring-conversion, http-api-data, http-media, http-types 300463 - , jose, monad-time, mtl, QuickCheck, quickcheck-instances, tasty 300464 - , tasty-hunit, tasty-quickcheck, text, unordered-containers, wai 300465 - , webgear-core 300466 - }: 300467 - mkDerivation { 300468 - pname = "webgear-server"; 300469 version = "1.0.3"; 300470 sha256 = "1qj297wgrhzkg7sb9lrmp5jfi77k09fnfmz4mn74vbwwpr90ahaw"; 300471 libraryHaskellDepends = [ ··· 300480 ]; 300481 description = "Composable, type-safe library to build HTTP API servers"; 300482 license = lib.licenses.mpl20; 300483 - hydraPlatforms = lib.platforms.none; 300484 }) {}; 300485 300486 "webidl" = callPackage
··· 2063 2064 "Blammo" = callPackage 2065 ({ mkDerivation, aeson, base, bytestring, case-insensitive, clock 2066 + , containers, dlist, envparse, exceptions, fast-logger, hspec 2067 + , http-types, lens, markdown-unlit, monad-logger-aeson, mtl, text 2068 + , time, unliftio, unliftio-core, unordered-containers, vector, wai 2069 }: 2070 mkDerivation { 2071 pname = "Blammo"; 2072 + version = "1.0.2.1"; 2073 + sha256 = "0ym6j8ysng4kqdzbkhr4i4wgq1lsl70c3arm3g8z976lzc7612m5"; 2074 libraryHaskellDepends = [ 2075 + aeson base bytestring case-insensitive clock containers dlist 2076 + envparse exceptions fast-logger http-types lens monad-logger-aeson 2077 + mtl text time unliftio unliftio-core unordered-containers vector 2078 + wai 2079 ]; 2080 + testHaskellDepends = [ aeson base hspec markdown-unlit mtl text ]; 2081 testToolDepends = [ markdown-unlit ]; 2082 description = "Batteries-included Structured Logging library"; 2083 license = lib.licenses.mit; ··· 35384 license = lib.licenses.bsd3; 35385 }) {}; 35386 35387 + "assert-failure_0_1_2_6" = callPackage 35388 + ({ mkDerivation, base, pretty-show, text }: 35389 + mkDerivation { 35390 + pname = "assert-failure"; 35391 + version = "0.1.2.6"; 35392 + sha256 = "198bvr7wgshwmbl8gcgq91hz7d87ar6gkqhhp1xgsg1mqikqi02z"; 35393 + enableSeparateDataOutput = true; 35394 + libraryHaskellDepends = [ base pretty-show text ]; 35395 + description = "Syntactic sugar improving 'assert' and 'error'"; 35396 + license = lib.licenses.bsd3; 35397 + hydraPlatforms = lib.platforms.none; 35398 + }) {}; 35399 + 35400 "assert4hs" = callPackage 35401 ({ mkDerivation, base, data-default, pretty-diff, tasty, text }: 35402 mkDerivation { ··· 39781 broken = true; 39782 }) {}; 39783 39784 + "base_4_16_2_0" = callPackage 39785 ({ mkDerivation, ghc-bignum, ghc-prim, rts }: 39786 mkDerivation { 39787 pname = "base"; 39788 + version = "4.16.2.0"; 39789 + sha256 = "015qxwjg47nk5kfp53xlv6pnl6sv7gv9szlvscnglhc00p6iasr9"; 39790 libraryHaskellDepends = [ ghc-bignum ghc-prim rts ]; 39791 description = "Basic libraries"; 39792 license = lib.licenses.bsd3; ··· 41533 pname = "bench"; 41534 version = "1.0.12"; 41535 sha256 = "1sy97qpv6paar2d5syppk6lc06wjx6qyz5aidsmh30jq853nydx6"; 41536 + revision = "4"; 41537 + editedCabalFile = "1x1d74c9898dxwv0j35i62p6d2k675zk8snqcxn973j7x6p0103d"; 41538 isLibrary = false; 41539 isExecutable = true; 41540 executableHaskellDepends = [ ··· 48002 license = lib.licenses.bsd3; 48003 }) {}; 48004 48005 + "brick_0_71_1" = callPackage 48006 ({ mkDerivation, base, bytestring, config-ini, containers 48007 , contravariant, data-clist, deepseq, directory, dlist, exceptions 48008 , filepath, microlens, microlens-mtl, microlens-th, QuickCheck, stm ··· 48011 }: 48012 mkDerivation { 48013 pname = "brick"; 48014 + version = "0.71.1"; 48015 + sha256 = "0m6j49izmmgqvqp3jnp5lc8b84a87hmhmv0bclqv2d2571k18w29"; 48016 isLibrary = true; 48017 isExecutable = true; 48018 libraryHaskellDepends = [ ··· 48022 unix vector vty word-wrap 48023 ]; 48024 testHaskellDepends = [ 48025 + base containers microlens QuickCheck vector vty 48026 ]; 48027 description = "A declarative terminal user interface library"; 48028 license = lib.licenses.bsd3; ··· 53054 }: 53055 mkDerivation { 53056 pname = "call-alloy"; 53057 version = "0.3.0.2"; 53058 sha256 = "1bigpy4338zkvcxccnri3xfav7wdz3zblkzzwm0nrnyz7an4mgy6"; 53059 libraryHaskellDepends = [ ··· 55926 }: 55927 mkDerivation { 55928 pname = "cgroup-rts-threads"; 55929 + version = "0.2.1.1"; 55930 + sha256 = "0hj2ny3rbxb9aw83zjslygh2qc75w5my4bpm2fgx0qm10n6whavn"; 55931 libraryHaskellDepends = [ base directory megaparsec path text ]; 55932 testHaskellDepends = [ 55933 base hspec-core hspec-expectations path path-io ··· 65760 ]; 65761 description = "Reduced parser for configurator-ng config files"; 65762 license = lib.licenses.bsd3; 65763 }) {}; 65764 65765 "confsolve" = callPackage ··· 66594 }: 66595 mkDerivation { 66596 pname = "context"; 66597 + version = "0.2.0.1"; 66598 + sha256 = "089v5dkpmlqrpdghhhmwca91dzzigsxwygjpg71ig5352cdfwdf4"; 66599 libraryHaskellDepends = [ base containers exceptions ]; 66600 testHaskellDepends = [ async base ghc-prim hspec ]; 66601 testToolDepends = [ hspec-discover ]; ··· 66657 }: 66658 mkDerivation { 66659 pname = "context-http-client"; 66660 + version = "0.2.0.1"; 66661 + sha256 = "1sm36mrnc80pnafpyikcalajy2kz1rxp7d40sgqng1s48k6d8js1"; 66662 libraryHaskellDepends = [ base context http-client ]; 66663 testHaskellDepends = [ 66664 async base bytestring case-insensitive context hspec http-client ··· 66675 }: 66676 mkDerivation { 66677 pname = "context-resource"; 66678 + version = "0.2.0.1"; 66679 + sha256 = "1hcmzd82nxbxask6qckb9ivpxlrxhph9pwk379vkx235jgqy79gj"; 66680 libraryHaskellDepends = [ base context exceptions ]; 66681 testHaskellDepends = [ async base context hspec ]; 66682 testToolDepends = [ hspec-discover ]; ··· 66705 }: 66706 mkDerivation { 66707 pname = "context-wai-middleware"; 66708 + version = "0.2.0.1"; 66709 + sha256 = "1y34137h0zjqxs4f5mbjyq500sazsryl20sfx4p5b227nb8lyplh"; 66710 libraryHaskellDepends = [ base context wai ]; 66711 testHaskellDepends = [ 66712 async base bytestring case-insensitive context hspec http-client ··· 81035 }: 81036 mkDerivation { 81037 pname = "discord-haskell-voice"; 81038 + version = "2.3.1"; 81039 + sha256 = "0j6gb0f63i70xqwq2yn8mfkn5nph3vmbbgnzid976cllcnwdxz5v"; 81040 isLibrary = true; 81041 isExecutable = true; 81042 libraryHaskellDepends = [ ··· 82569 }: 82570 mkDerivation { 82571 pname = "dns-patterns"; 82572 + version = "0.1.1"; 82573 + sha256 = "1x2qrn4nvpvmxyby0p6mcgicz3xspd7x390gnz6p7vpanx72r0w3"; 82574 libraryHaskellDepends = [ 82575 attoparsec base bytestring parser-combinators text 82576 ]; ··· 93106 pname = "expiring-cache-map"; 93107 version = "0.0.6.1"; 93108 sha256 = "1fb47hsn06ybn2yzw7r6pjkmvvfpbdx7wjhbpxcywilbjyac4fqf"; 93109 + revision = "1"; 93110 + editedCabalFile = "1k5wqilafxp3ksqb7qy90cwipk0db568f15amn3mnf9krc1qjabg"; 93111 libraryHaskellDepends = [ 93112 base containers hashable unordered-containers 93113 ]; ··· 94226 }: 94227 mkDerivation { 94228 pname = "fakedata"; 94229 version = "1.0.3"; 94230 sha256 = "12sldxpn14zx5zwblw28k593rdqz50d246rz8j3zj41ljmnbwj4i"; 94231 enableSeparateDataOutput = true; ··· 94250 ]; 94251 description = "Library for producing fake data"; 94252 license = lib.licenses.bsd3; 94253 }) {}; 94254 94255 "fakedata-parser" = callPackage ··· 99601 pname = "foldl"; 99602 version = "1.4.12"; 99603 sha256 = "0zf4yljh3s2ddxa7dhzdglmylj14kfldhkclc44g37zvjq6kcnag"; 99604 + revision = "4"; 99605 + editedCabalFile = "122bj1kc28sy6xi7r9h5nlsamxf0bg4gziza5a259jndpbikcbm9"; 99606 libraryHaskellDepends = [ 99607 base bytestring comonad containers contravariant hashable primitive 99608 profunctors random semigroupoids text transformers ··· 101120 }: 101121 mkDerivation { 101122 pname = "freckle-app"; 101123 + version = "1.3.0.0"; 101124 + sha256 = "1h2ckdjq4h7qv7r5dm28gbs5ja125wi2inzjg3436css9qn1s7v9"; 101125 libraryHaskellDepends = [ 101126 aeson base Blammo bugsnag bytestring case-insensitive conduit 101127 containers datadog dlist doctest ekg-core envparse errors ··· 101173 }: 101174 mkDerivation { 101175 pname = "free"; 101176 version = "5.1.9"; 101177 sha256 = "1vlzis9sqxh7xrmh3habbgiw3skkhkn710bhqb6fnl45804i6x9f"; 101178 libraryHaskellDepends = [ ··· 101182 ]; 101183 description = "Monads for free"; 101184 license = lib.licenses.bsd3; 101185 }) {}; 101186 101187 "free-algebras" = callPackage ··· 103439 "futhark" = callPackage 103440 ({ mkDerivation, aeson, alex, ansi-terminal, array, base 103441 , base16-bytestring, binary, blaze-html, bmp, bytestring 103442 + , bytestring-to-vector, cmark-gfm, co-log-core, containers 103443 + , cryptohash-md5, Diff, directory, directory-tree, dlist, fgl 103444 + , fgl-visualize, file-embed, filepath, free, futhark-data 103445 + , futhark-manifest, futhark-server, githash, half, happy, haskeline 103446 + , language-c-quote, lens, lsp, mainland-pretty, megaparsec, mtl 103447 + , mwc-random, neat-interpolation, parallel, process, process-extras 103448 + , QuickCheck, random, regex-tdfa, srcloc, statistics, tasty 103449 + , tasty-hunit, tasty-quickcheck, template-haskell, temporary 103450 + , terminal-size, text, time, transformers, vector, versions 103451 + , zip-archive, zlib 103452 }: 103453 mkDerivation { 103454 pname = "futhark"; 103455 + version = "0.21.13"; 103456 + sha256 = "0bzqlsaaqbbi47zvmvv7hd6hcz54hzw676rh9nxcjxgff3hzqb08"; 103457 isLibrary = true; 103458 isExecutable = true; 103459 libraryHaskellDepends = [ 103460 aeson ansi-terminal array base base16-bytestring binary blaze-html 103461 + bmp bytestring bytestring-to-vector cmark-gfm co-log-core 103462 + containers cryptohash-md5 Diff directory directory-tree dlist fgl 103463 + fgl-visualize file-embed filepath free futhark-data 103464 + futhark-manifest futhark-server githash half haskeline 103465 + language-c-quote lens lsp mainland-pretty megaparsec mtl mwc-random 103466 + neat-interpolation parallel process process-extras random 103467 + regex-tdfa srcloc statistics template-haskell temporary 103468 + terminal-size text time transformers vector versions zip-archive 103469 + zlib 103470 ]; 103471 libraryToolDepends = [ alex happy ]; 103472 executableHaskellDepends = [ base ]; 103473 testHaskellDepends = [ 103474 + base containers megaparsec QuickCheck tasty tasty-hunit 103475 + tasty-quickcheck text 103476 ]; 103477 description = "An optimising compiler for a functional, array-oriented language"; 103478 license = lib.licenses.isc; ··· 103669 }: 103670 mkDerivation { 103671 pname = "fuzzy-time"; 103672 version = "0.2.0.1"; 103673 sha256 = "1wlcq37q71q3565dc73jcr42p970lml0gmpjqwn3k5xf8d63ridj"; 103674 libraryHaskellDepends = [ 103675 base containers deepseq megaparsec text time validity validity-time 103676 ]; 103677 license = lib.licenses.mit; 103678 }) {}; 103679 103680 "fuzzy-time-gen" = callPackage ··· 107043 mainProgram = "gh-pocket-knife"; 107044 }) {}; 107045 107046 + "ghc_9_2_3" = callPackage 107047 ({ mkDerivation, array, base, binary, bytestring, containers 107048 , deepseq, directory, exceptions, filepath, ghc-boot, ghc-heap 107049 , ghci, hpc, process, template-haskell, terminfo, time ··· 107051 }: 107052 mkDerivation { 107053 pname = "ghc"; 107054 + version = "9.2.3"; 107055 + sha256 = "09bwgzdj0bvasl8cqz93g03d79bcgpmr5p8dpc05kjxdl24ydrmp"; 107056 libraryHaskellDepends = [ 107057 array base binary bytestring containers deepseq directory 107058 exceptions filepath ghc-boot ghc-heap ghci hpc process ··· 111012 description = "manage files with git, without checking their contents into git"; 111013 license = lib.licenses.agpl3Only; 111014 mainProgram = "git-annex"; 111015 + maintainers = [ lib.maintainers.peti lib.maintainers.roosemberth ]; 111016 }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; 111017 inherit (pkgs) gnupg; inherit (pkgs) lsof; inherit (pkgs) openssh; 111018 inherit (pkgs) perl; inherit (pkgs) rsync; inherit (pkgs) wget; ··· 123347 }: 123348 mkDerivation { 123349 pname = "hapistrano"; 123350 + version = "0.4.6.0"; 123351 + sha256 = "1bischj5ndbv33is36537gd3180m9i76mlyjxrfcawzlqf8h3p66"; 123352 isLibrary = true; 123353 isExecutable = true; 123354 libraryHaskellDepends = [ ··· 129527 benchmarkHaskellDepends = [ gauge rerebase ]; 129528 ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 129529 license = lib.licenses.mit; 129530 }) {}; 129531 129532 ({ mkDerivation, attoparsec, base, bytestring, criterion, directory ··· 129631 ]; 129632 ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 129633 license = lib.licenses.mit; 129634 }) {}; 129635 129636 ({ mkDerivation, attoparsec, base, bytestring, criterion, directory ··· 129685 ]; 129686 ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 129687 license = lib.licenses.mit; 129688 }) {}; 129689 129690 ({ mkDerivation, attoparsec, base, bytestring, criterion, directory ··· 130052 }: 130053 mkDerivation { 130054 ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 130055 ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 130056 ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 130057 libraryHaskellDepends = [ ··· 130061 ]; 130062 ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 130063 license = lib.licenses.mit; 130064 }) {}; 130065 130066 ({ mkDerivation, attoparsec, base, bytestring, criterion, directory ··· 135682 pname = "hiedb"; 135683 version = "0.4.1.0"; 135684 sha256 = "1389qmlga5rq8has02rn35pzag5wnfpx3w77r60mzl3b4pkpzi7i"; 135685 + revision = "3"; 135686 + editedCabalFile = "0y6vsx4n3hbpbl6d9qpb5d40s2rh0pkqm76gnjvx045zvrdkxi66"; 135687 isLibrary = true; 135688 isExecutable = true; 135689 libraryHaskellDepends = [ ··· 136243 mainProgram = "hindent"; 136244 }) {}; 136245 136246 + "hindent_5_3_4" = callPackage 136247 + ({ mkDerivation, base, bytestring, Cabal, containers, criterion 136248 + , deepseq, Diff, directory, exceptions, filepath, ghc-prim 136249 + , haskell-src-exts, hspec, monad-loops, mtl, optparse-applicative 136250 + , path, path-io, text, transformers, unix-compat, utf8-string, yaml 136251 + }: 136252 + mkDerivation { 136253 + pname = "hindent"; 136254 + version = "5.3.4"; 136255 + sha256 = "1pc20iza3v0ljzbx6cycm1j1kbmz8h95xwfq47fd6zfmsrx9w6vn"; 136256 + isLibrary = true; 136257 + isExecutable = true; 136258 + enableSeparateDataOutput = true; 136259 + libraryHaskellDepends = [ 136260 + base bytestring Cabal containers directory exceptions filepath 136261 + haskell-src-exts monad-loops mtl text transformers utf8-string yaml 136262 + ]; 136263 + executableHaskellDepends = [ 136264 + base bytestring deepseq directory exceptions ghc-prim 136265 + haskell-src-exts optparse-applicative path path-io text 136266 + transformers unix-compat utf8-string yaml 136267 + ]; 136268 + testHaskellDepends = [ 136269 + base bytestring deepseq Diff directory exceptions haskell-src-exts 136270 + hspec monad-loops mtl utf8-string 136271 + ]; 136272 + benchmarkHaskellDepends = [ 136273 + base bytestring criterion deepseq directory exceptions ghc-prim 136274 + haskell-src-exts mtl utf8-string 136275 + ]; 136276 + description = "Extensible Haskell pretty printer"; 136277 + license = lib.licenses.bsd3; 136278 + hydraPlatforms = lib.platforms.none; 136279 + mainProgram = "hindent"; 136280 + }) {}; 136281 + 136282 "hindley-milner" = callPackage 136283 ({ mkDerivation, base, containers, data-fix, hspec, mtl 136284 , transformers ··· 138652 pname = "hls-graph"; 138653 version = "1.7.0.0"; 138654 sha256 = "1mq1pvn5z8fnlsj9iqck05shm8fak9zf05mbcbrxb5jvq0a31ypd"; 138655 + revision = "1"; 138656 + editedCabalFile = "090jis882l9pjg6dlw8dbf7qzq4g2rbrfwkl96rk7p4yw0hdgd01"; 138657 enableSeparateDataOutput = true; 138658 libraryHaskellDepends = [ 138659 aeson async base bytestring containers deepseq directory exceptions ··· 138763 pname = "hls-plugin-api"; 138764 version = "1.4.0.0"; 138765 sha256 = "0yk2y6qw88vhww8z10d2kgn57wsarfnp6z1gmjl1ik2w96a8g3mv"; 138766 + revision = "1"; 138767 + editedCabalFile = "0mqwnvq892qa793pv68fsfhnkysm386vrkyx28qaaraqfnbxkysn"; 138768 libraryHaskellDepends = [ 138769 aeson base containers data-default dependent-map dependent-sum Diff 138770 dlist extra ghc hashable hls-graph lens lens-aeson lsp ··· 143968 pname = "hs-php-session"; 143969 version = "0.0.9.3"; 143970 sha256 = "1xwdikiqy2dxyzr6wx51wy51vifsvshblx7kkhfqd7izjf87ww8f"; 143971 + revision = "1"; 143972 + editedCabalFile = "1dj1r73v31bd2091pqvrg7vdc3lgjh373ynxn49dlhqmyw45kiw8"; 143973 libraryHaskellDepends = [ base bytestring ]; 143974 description = "PHP session and values serialization"; 143975 license = lib.licenses.bsd3; ··· 148007 testHaskellDepends = [ base hspec hspec-wai ]; 148008 description = "Testing JSON APIs with hspec-wai"; 148009 license = lib.licenses.mit; 148010 }) {}; 148011 148012 "hspec-webdriver" = callPackage ··· 158872 broken = true; 158873 }) {}; 158874 158875 + "interval-tree-clock" = callPackage 158876 + ({ mkDerivation, base, hspec, QuickCheck }: 158877 + mkDerivation { 158878 + pname = "interval-tree-clock"; 158879 + version = "0.1.0.2"; 158880 + sha256 = "1v1sdhf43akmnlhp6y10nbp44pj93m7pmbwpss9skam5dasmnzs1"; 158881 + libraryHaskellDepends = [ base ]; 158882 + testHaskellDepends = [ base hspec QuickCheck ]; 158883 + description = "Interval Tree Clocks"; 158884 + license = lib.licenses.mit; 158885 + hydraPlatforms = lib.platforms.none; 158886 + broken = true; 158887 + }) {}; 158888 + 158889 "intervals" = callPackage 158890 ({ mkDerivation, array, base, distributive, ghc-prim, QuickCheck }: 158891 mkDerivation { ··· 159086 license = lib.licenses.bsd2; 159087 }) {}; 159088 159089 + "invariant_0_6" = callPackage 159090 + ({ mkDerivation, array, base, bifunctors, comonad, containers 159091 + , contravariant, ghc-prim, hspec, hspec-discover, profunctors 159092 + , QuickCheck, StateVar, stm, tagged, template-haskell 159093 + , th-abstraction, transformers, transformers-compat 159094 + , unordered-containers 159095 + }: 159096 + mkDerivation { 159097 + pname = "invariant"; 159098 + version = "0.6"; 159099 + sha256 = "07ffgcfpacsdihcmcmx2m1gp8czlg28657bxncxjykjiiiwjlaxm"; 159100 + libraryHaskellDepends = [ 159101 + array base bifunctors comonad containers contravariant ghc-prim 159102 + profunctors StateVar stm tagged template-haskell th-abstraction 159103 + transformers transformers-compat unordered-containers 159104 + ]; 159105 + testHaskellDepends = [ base hspec QuickCheck template-haskell ]; 159106 + testToolDepends = [ hspec-discover ]; 159107 + description = "Haskell98 invariant functors"; 159108 + license = lib.licenses.bsd2; 159109 + hydraPlatforms = lib.platforms.none; 159110 + }) {}; 159111 + 159112 "inventory" = callPackage 159113 ({ mkDerivation, appendmap, array, base, bytestring, containers 159114 , directory, filepath, ghc, ghc-paths, mtl, tasty, tasty-hunit ··· 162542 162543 "jordan" = callPackage 162544 ({ mkDerivation, attoparsec, base, bytestring, containers 162545 + , contravariant, deepseq, ghc-prim, hspec, hspec-megaparsec 162546 , parser-combinators, QuickCheck, quickcheck-text, raw-strings-qq 162547 , scientific, text 162548 }: 162549 mkDerivation { 162550 pname = "jordan"; 162551 + version = "0.2.0.0"; 162552 + sha256 = "1w4qld656ax7aggviznrvvjc99hyg6gvx3lmbcv8gmyb4899zqbx"; 162553 libraryHaskellDepends = [ 162554 + attoparsec base bytestring containers contravariant deepseq 162555 + ghc-prim parser-combinators scientific text 162556 ]; 162557 testHaskellDepends = [ 162558 + attoparsec base bytestring containers contravariant deepseq 162559 + ghc-prim hspec hspec-megaparsec parser-combinators QuickCheck 162560 quickcheck-text raw-strings-qq scientific text 162561 ]; 162562 description = "JSON with Structure"; ··· 162567 162568 "jordan-openapi" = callPackage 162569 ({ mkDerivation, aeson, base, bytestring, containers, contravariant 162570 + , hspec, http-types, insert-ordered-containers, jordan, openapi3 162571 + , optics-core, text 162572 }: 162573 mkDerivation { 162574 pname = "jordan-openapi"; 162575 + version = "0.2.0.0"; 162576 + sha256 = "0r079zj8w3n0px1ajmklhy5yrh4rwwh8gcny4lm2aj2x7zy2rihv"; 162577 libraryHaskellDepends = [ 162578 + aeson base bytestring containers contravariant http-types 162579 insert-ordered-containers jordan openapi3 optics-core text 162580 ]; 162581 testHaskellDepends = [ 162582 + aeson base bytestring containers contravariant hspec http-types 162583 insert-ordered-containers jordan openapi3 optics-core text 162584 ]; 162585 description = "OpenAPI Definitions for Jordan, Automatically"; 162586 + license = lib.licenses.mit; 162587 + hydraPlatforms = lib.platforms.none; 162588 + }) {}; 162589 + 162590 + "jordan-servant" = callPackage 162591 + ({ mkDerivation, attoparsec, base, bytestring, contravariant, hspec 162592 + , http-media, http-types, jordan, parallel, QuickCheck 162593 + , quickcheck-text, scientific, servant, text, transformers 162594 + }: 162595 + mkDerivation { 162596 + pname = "jordan-servant"; 162597 + version = "0.1.0.0"; 162598 + sha256 = "1al0f6cm9sdlzjgzw9wpmgl4l23yflxib2a3nvxfs9q6k4z4x5v5"; 162599 + libraryHaskellDepends = [ 162600 + attoparsec base bytestring contravariant http-media http-types 162601 + jordan parallel scientific servant text transformers 162602 + ]; 162603 + testHaskellDepends = [ 162604 + attoparsec base bytestring contravariant hspec http-media 162605 + http-types jordan parallel QuickCheck quickcheck-text scientific 162606 + servant text transformers 162607 + ]; 162608 + description = "Servant Combinators for Jordan"; 162609 + license = lib.licenses.mit; 162610 + hydraPlatforms = lib.platforms.none; 162611 + }) {}; 162612 + 162613 + "jordan-servant-client" = callPackage 162614 + ({ mkDerivation, attoparsec, base, bytestring, http-media 162615 + , http-types, jordan, jordan-servant, servant, servant-client-core 162616 + , servant-server, text, transformers 162617 + }: 162618 + mkDerivation { 162619 + pname = "jordan-servant-client"; 162620 + version = "0.1.0.0"; 162621 + sha256 = "0sa9ays4k4ma5aflfr87rc9c67cyk4nk19vkcf6q55vm8zyii2fy"; 162622 + libraryHaskellDepends = [ 162623 + attoparsec base bytestring http-media http-types jordan 162624 + jordan-servant servant servant-client-core servant-server text 162625 + transformers 162626 + ]; 162627 + testHaskellDepends = [ 162628 + attoparsec base bytestring http-media http-types jordan 162629 + jordan-servant servant servant-client-core servant-server text 162630 + transformers 162631 + ]; 162632 + description = "Servant Client Instances for Jordan Servant Types"; 162633 + license = lib.licenses.mit; 162634 + hydraPlatforms = lib.platforms.none; 162635 + }) {}; 162636 + 162637 + "jordan-servant-openapi" = callPackage 162638 + ({ mkDerivation, attoparsec, base, bytestring, contravariant 162639 + , http-media, http-types, jordan, jordan-openapi, jordan-servant 162640 + , lens, openapi3, scientific, servant, servant-openapi3, text 162641 + , transformers 162642 + }: 162643 + mkDerivation { 162644 + pname = "jordan-servant-openapi"; 162645 + version = "0.1.0.0"; 162646 + sha256 = "092x7cfp562g87rcj6wdnp6wimkcscnyqibjai8fbcwjq2gjnqdp"; 162647 + libraryHaskellDepends = [ 162648 + attoparsec base bytestring contravariant http-media http-types 162649 + jordan jordan-openapi jordan-servant lens openapi3 scientific 162650 + servant servant-openapi3 text transformers 162651 + ]; 162652 + testHaskellDepends = [ 162653 + attoparsec base bytestring contravariant http-media http-types 162654 + jordan jordan-openapi jordan-servant lens openapi3 scientific 162655 + servant servant-openapi3 text transformers 162656 + ]; 162657 + description = "OpenAPI schemas for Jordan-Powered Servant APIs"; 162658 + license = lib.licenses.mit; 162659 + hydraPlatforms = lib.platforms.none; 162660 + }) {}; 162661 + 162662 + "jordan-servant-server" = callPackage 162663 + ({ mkDerivation, attoparsec, base, bytestring, generics-sop 162664 + , http-media, http-types, jordan, jordan-servant, servant 162665 + , servant-server, text, transformers, wai 162666 + }: 162667 + mkDerivation { 162668 + pname = "jordan-servant-server"; 162669 + version = "0.1.0.0"; 162670 + sha256 = "11pj4hccql2sp3cryzv5p84nn2k9jq4apcca4i1wrynj1w52iql3"; 162671 + libraryHaskellDepends = [ 162672 + attoparsec base bytestring generics-sop http-media http-types 162673 + jordan jordan-servant servant servant-server text transformers wai 162674 + ]; 162675 + testHaskellDepends = [ 162676 + attoparsec base bytestring generics-sop http-media http-types 162677 + jordan jordan-servant servant servant-server text transformers wai 162678 + ]; 162679 + description = "Servers for Jordan-Based Servant Combinators"; 162680 license = lib.licenses.mit; 162681 hydraPlatforms = lib.platforms.none; 162682 }) {}; ··· 165048 }: 165049 mkDerivation { 165050 pname = "kan-extensions"; 165051 version = "5.2.5"; 165052 sha256 = "08mddsk9v75mahp1jqn28vglygmdil1g37drcj3ivbqc0k6dq55r"; 165053 libraryHaskellDepends = [ ··· 165057 ]; 165058 description = "Kan extensions, Kan lifts, the Yoneda lemma, and (co)density (co)monads"; 165059 license = lib.licenses.bsd3; 165060 }) {}; 165061 165062 "kangaroo" = callPackage ··· 170567 pname = "large-anon"; 170568 version = "0.1.0.0"; 170569 sha256 = "15rrqpfd7jmm391lxhz2ag1sa17nw8x3wjqm0f9naidgmyv9x1z2"; 170570 + revision = "1"; 170571 + editedCabalFile = "1541ak37yk8431wiwjmcn0yp12f07wjhr8vsjs1hgmh124dm9295"; 170572 libraryHaskellDepends = [ 170573 aeson base containers ghc ghc-tcplugin-api hashable large-generics 170574 mtl optics-core primitive record-hasfield sop-core syb tagged ··· 170647 pname = "large-records"; 170648 version = "0.2.1.0"; 170649 sha256 = "0gmgrkh9fsyy6ww64l4warsilxkxwfzfl43d36d8a5dcgvn49ip2"; 170650 + revision = "1"; 170651 + editedCabalFile = "1j366mm61j7xxy5lhppc0an8249iskhd3dqxazfwmc3vi23a044k"; 170652 libraryHaskellDepends = [ 170653 base containers ghc large-generics mtl primitive record-hasfield 170654 syb template-haskell transformers ··· 182904 pname = "massiv-persist"; 182905 version = "1.0.0.2"; 182906 sha256 = "1hqmwbrxv664y4rfm37ziym25l9218pd21lz4180c0k3hfpdfsxy"; 182907 + revision = "1"; 182908 + editedCabalFile = "06vlaj1f4619knz7k087dppihas4cglvyy9iwg4bkgvagb968aj4"; 182909 + libraryHaskellDepends = [ 182910 + base bytestring deepseq massiv persist primitive 182911 + ]; 182912 + testHaskellDepends = [ 182913 + base doctest hspec massiv massiv-test persist QuickCheck 182914 + ]; 182915 + testToolDepends = [ hspec-discover ]; 182916 + description = "Compatibility of 'massiv' with 'persist'"; 182917 + license = lib.licenses.bsd3; 182918 + hydraPlatforms = lib.platforms.none; 182919 + broken = true; 182920 + }) {}; 182921 + 182922 + "massiv-persist_1_0_0_3" = callPackage 182923 + ({ mkDerivation, base, bytestring, deepseq, doctest, hspec 182924 + , hspec-discover, massiv, massiv-test, persist, primitive 182925 + , QuickCheck 182926 + }: 182927 + mkDerivation { 182928 + pname = "massiv-persist"; 182929 + version = "1.0.0.3"; 182930 + sha256 = "0qpnrqjhj6y2spg9izxc3jzqs4jcqzn6zlgi87816ycpdgxq6s02"; 182931 libraryHaskellDepends = [ 182932 base bytestring deepseq massiv persist primitive 182933 ]; ··· 184263 }) {}; 184264 184265 "mealy" = callPackage 184266 + ({ mkDerivation, adjunctions, base, containers, mwc-probability 184267 + , numhask, optics-core, primitive, profunctors, tdigest, text 184268 + , vector, vector-algorithms 184269 }: 184270 mkDerivation { 184271 pname = "mealy"; 184272 + version = "0.3.0"; 184273 + sha256 = "15p60a4kywazy5dlcs66bzyq8phcrpkrfl655p22bnqq1lsl7yjh"; 184274 libraryHaskellDepends = [ 184275 + adjunctions base containers mwc-probability numhask optics-core 184276 + primitive profunctors tdigest text vector vector-algorithms 184277 ]; 184278 description = "Mealy machines for processing time-series and ordered data"; 184279 license = lib.licenses.bsd3; ··· 187242 license = lib.licenses.bsd3; 187243 }) {}; 187244 187245 + "minimorph_0_3_0_1" = callPackage 187246 + ({ mkDerivation, base, HUnit, test-framework, test-framework-hunit 187247 + , text 187248 + }: 187249 + mkDerivation { 187250 + pname = "minimorph"; 187251 + version = "0.3.0.1"; 187252 + sha256 = "05z2y36q2m7lvrqnv5q40r8nr09q7bfbjvi5nca62xlnzxw1gy0g"; 187253 + libraryHaskellDepends = [ base text ]; 187254 + testHaskellDepends = [ 187255 + base HUnit test-framework test-framework-hunit text 187256 + ]; 187257 + description = "English spelling functions with an emphasis on simplicity"; 187258 + license = lib.licenses.bsd3; 187259 + hydraPlatforms = lib.platforms.none; 187260 + }) {}; 187261 + 187262 "minimung" = callPackage 187263 ({ mkDerivation, base, GLUT, haskell98, unix }: 187264 mkDerivation { ··· 187462 license = lib.licenses.bsd3; 187463 }) {}; 187464 187465 + "miniutter_0_5_1_2" = callPackage 187466 + ({ mkDerivation, base, binary, containers, HUnit, minimorph 187467 + , test-framework, test-framework-hunit, text 187468 + }: 187469 + mkDerivation { 187470 + pname = "miniutter"; 187471 + version = "0.5.1.2"; 187472 + sha256 = "04xpb9jyhvi8cs61xv3192kwis4nh1dib4s33c747j8yfg3q90m6"; 187473 + enableSeparateDataOutput = true; 187474 + libraryHaskellDepends = [ base binary containers minimorph text ]; 187475 + testHaskellDepends = [ 187476 + base containers HUnit test-framework test-framework-hunit text 187477 + ]; 187478 + description = "Simple English clause creation from arbitrary words"; 187479 + license = lib.licenses.bsd3; 187480 + hydraPlatforms = lib.platforms.none; 187481 + }) {}; 187482 + 187483 "minizinc-process" = callPackage 187484 ({ mkDerivation, aeson, attoparsec, base, bytestring, containers 187485 , directory, hashable, hedgehog, hspec, hspec-hedgehog, process ··· 187535 ({ mkDerivation, base }: 187536 mkDerivation { 187537 pname = "mintty"; 187538 version = "0.1.4"; 187539 sha256 = "0zla9cg6fcjgpjjsgq7mi0xl753j5zmvhy5kwsagb5pp2gc48l3b"; 187540 libraryHaskellDepends = [ base ]; 187541 description = "A reliable way to detect the presence of a MinTTY console on Windows"; 187542 license = lib.licenses.bsd3; 187543 }) {}; 187544 187545 "mios" = callPackage ··· 189604 }: 189605 mkDerivation { 189606 pname = "monad-logger-aeson"; 189607 + version = "0.3.0.2"; 189608 + sha256 = "1y5iw0k9y8i4sgak04nh6fbl4ahljy7av8pn4fq09827v54qgx70"; 189609 isLibrary = true; 189610 isExecutable = true; 189611 libraryHaskellDepends = [ ··· 190275 license = lib.licenses.bsd3; 190276 }) {}; 190277 190278 + "monad-time_0_4_0_0" = callPackage 190279 + ({ mkDerivation, base, mtl, time }: 190280 + mkDerivation { 190281 + pname = "monad-time"; 190282 + version = "0.4.0.0"; 190283 + sha256 = "0q1935ldnwx19fszpd6fngxvz4z4bn257pgwrjs9r0vzkvgkwjdl"; 190284 + libraryHaskellDepends = [ base mtl time ]; 190285 + testHaskellDepends = [ base mtl time ]; 190286 + description = "Type class for monads which carry the notion of the current time"; 190287 + license = lib.licenses.bsd3; 190288 + hydraPlatforms = lib.platforms.none; 190289 + }) {}; 190290 + 190291 "monad-timing" = callPackage 190292 ({ mkDerivation, base, containers, exceptions, hlint, hspec 190293 , monad-control, mtl, time, transformers, transformers-base ··· 190383 190384 "monad-validate" = callPackage 190385 ({ mkDerivation, aeson, aeson-qq, base, exceptions, hspec 190386 + , hspec-discover, monad-control, mtl, scientific, text 190387 + , transformers, transformers-base, unordered-containers, vector 190388 }: 190389 mkDerivation { 190390 pname = "monad-validate"; 190391 + version = "1.2.0.1"; 190392 + sha256 = "1xhpqdslsjxqz6wv4qcvz0bnkzdq3f5z481bjhpi2n3wlyf9asyq"; 190393 libraryHaskellDepends = [ 190394 base exceptions monad-control mtl transformers transformers-base 190395 ]; ··· 190397 aeson aeson-qq base exceptions hspec monad-control mtl scientific 190398 text transformers transformers-base unordered-containers vector 190399 ]; 190400 + testToolDepends = [ hspec-discover ]; 190401 description = "A monad transformer for data validation"; 190402 license = lib.licenses.isc; 190403 }) {}; ··· 197329 }: 197330 mkDerivation { 197331 pname = "net-mqtt"; 197332 + version = "0.8.2.1"; 197333 + sha256 = "052y6mqj8bgfyjv7bxm5vyhd14bpg694ybji2ar2zww30jx5g6ib"; 197334 isLibrary = true; 197335 isExecutable = true; 197336 libraryHaskellDepends = [ ··· 208738 mainProgram = "pandoc-plot"; 208739 }) {}; 208740 208741 + "pandoc-plot_1_5_4" = callPackage 208742 ({ mkDerivation, aeson, base, bytestring, containers, criterion 208743 , data-default, directory, filepath, gitrev, hashable 208744 , hspec-expectations, lifted-async, lifted-base, mtl ··· 208748 }: 208749 mkDerivation { 208750 pname = "pandoc-plot"; 208751 + version = "1.5.4"; 208752 + sha256 = "1bmnzl5aqqhfrl7gk0083xkrckl11yhmvf2lf1w1jg4hcfknj6a8"; 208753 isLibrary = true; 208754 isExecutable = true; 208755 libraryHaskellDepends = [ ··· 219848 ({ mkDerivation, base, optics, polysemy, polysemy-zoo }: 219849 mkDerivation { 219850 pname = "polysemy-optics"; 219851 + version = "0.1.0.2"; 219852 + sha256 = "0lclq8kbagxpabxzn56wqcwik9swjpadwqyr15drg0wjhdsmx2s5"; 219853 libraryHaskellDepends = [ base optics polysemy polysemy-zoo ]; 219854 description = "Optics for Polysemy"; 219855 license = lib.licenses.bsd2; ··· 222222 license = lib.licenses.mit; 222223 hydraPlatforms = lib.platforms.none; 222224 mainProgram = "postgrest"; 222225 + broken = true; 222226 }) {}; 222227 222228 "postgrest-ws" = callPackage ··· 228401 hydraPlatforms = lib.platforms.none; 228402 }) {inherit (pkgs) libdevil;}; 228403 228404 + "pvector" = callPackage 228405 + ({ mkDerivation, base, containers, criterion, deepseq, hspec 228406 + , hspec-discover, persistent-vector, primitive, QuickCheck 228407 + , quickcheck-instances, rrb-vector, unordered-containers, vector 228408 + , vector-stream 228409 + }: 228410 + mkDerivation { 228411 + pname = "pvector"; 228412 + version = "0.1.0.1"; 228413 + sha256 = "1z0bwm5d1ci7b8s5w8jq5jpihjhsbykgv7210p9iqqdqns3y845a"; 228414 + libraryHaskellDepends = [ base deepseq primitive vector-stream ]; 228415 + testHaskellDepends = [ 228416 + base deepseq hspec primitive QuickCheck quickcheck-instances 228417 + vector-stream 228418 + ]; 228419 + testToolDepends = [ hspec-discover ]; 228420 + benchmarkHaskellDepends = [ 228421 + base containers criterion deepseq persistent-vector primitive 228422 + rrb-vector unordered-containers vector vector-stream 228423 + ]; 228424 + description = "Fast persistent vectors"; 228425 + license = lib.licenses.bsd3; 228426 + hydraPlatforms = lib.platforms.none; 228427 + broken = true; 228428 + }) {}; 228429 + 228430 "pvss" = callPackage 228431 ({ mkDerivation, base, binary, bytestring, cryptonite 228432 , cryptonite-openssl, deepseq, foundation, hourglass, integer-gmp ··· 229459 }: 229460 mkDerivation { 229461 pname = "quibble-core"; 229462 + version = "0.1.0.1"; 229463 + sha256 = "108cqh3xzl73ijh7fg91cyw0lpn2svm13l8nn922ab9401jy9x8c"; 229464 libraryHaskellDepends = [ 229465 base bytestring containers mono-traversable optics-core text 229466 text-conversions time uuid ··· 234973 broken = true; 234974 }) {chrome-test-utils = null;}; 234975 234976 + "reflex-dom-core_0_7_0_2" = callPackage 234977 + ({ mkDerivation, aeson, async, base, bifunctors, bimap 234978 + , blaze-builder, bytestring, case-insensitive, chrome-test-utils 234979 + , commutative-semigroups, constraints, constraints-extras 234980 + , containers, contravariant, data-default, dependent-map 234981 + , dependent-sum, dependent-sum-template, directory 234982 + , exception-transformers, exceptions, filepath, ghcjs-dom, hlint 234983 + , hspec, hspec-core, hspec-webdriver, http-types, HUnit, jsaddle 234984 + , jsaddle-warp, keycode, lens, lifted-base, monad-control, mtl 234985 + , network, network-uri, primitive, process, random, ref-tf, reflex 234986 + , semialign, semigroups, silently, stm, template-haskell, temporary 234987 + , text, these, transformers, unix, wai, wai-websockets, warp 234988 + , webdriver, websockets, which, zenc 234989 + }: 234990 + mkDerivation { 234991 + pname = "reflex-dom-core"; 234992 + version = "0.7.0.2"; 234993 + sha256 = "1piwllxvq2fkfrfrvmnpz802vrwa9izhg8irlk19nmxy02rcx9ra"; 234994 + libraryHaskellDepends = [ 234995 + aeson base bifunctors bimap blaze-builder bytestring 234996 + case-insensitive commutative-semigroups constraints containers 234997 + contravariant data-default dependent-map dependent-sum 234998 + dependent-sum-template directory exception-transformers ghcjs-dom 234999 + jsaddle keycode lens monad-control mtl network-uri primitive random 235000 + ref-tf reflex semialign semigroups stm template-haskell text these 235001 + transformers unix zenc 235002 + ]; 235003 + testHaskellDepends = [ 235004 + aeson async base bytestring chrome-test-utils constraints 235005 + constraints-extras containers dependent-map dependent-sum 235006 + dependent-sum-template directory exceptions filepath ghcjs-dom 235007 + hlint hspec hspec-core hspec-webdriver http-types HUnit jsaddle 235008 + jsaddle-warp lens lifted-base network process random ref-tf reflex 235009 + silently temporary text wai wai-websockets warp webdriver 235010 + websockets which 235011 + ]; 235012 + description = "Functional Reactive Web Apps with Reflex"; 235013 + license = lib.licenses.bsd3; 235014 + hydraPlatforms = lib.platforms.none; 235015 + broken = true; 235016 + }) {chrome-test-utils = null;}; 235017 + 235018 "reflex-dom-fragment-shader-canvas" = callPackage 235019 ({ mkDerivation, base, containers, ghcjs-dom, jsaddle, lens 235020 , reflex-dom, text, transformers ··· 236580 }: 236581 mkDerivation { 236582 pname = "registry"; 236583 + version = "0.3.2.0"; 236584 + sha256 = "12xs0gdpjgh28yix0562d035nnw2x8zi5n06iaysxvz7d796sd37"; 236585 libraryHaskellDepends = [ 236586 base containers exceptions hashable mmorph mtl protolude resourcet 236587 semigroupoids semigroups template-haskell text transformers-base ··· 238757 }: 238758 mkDerivation { 238759 pname = "resourcet"; 238760 version = "1.2.6"; 238761 sha256 = "0d7xnpysrick56gxzkkj0mpblywbxaaldhziyl77am3822r3afzq"; 238762 libraryHaskellDepends = [ ··· 238765 testHaskellDepends = [ base exceptions hspec transformers ]; 238766 description = "Deterministic allocation and freeing of scarce resources"; 238767 license = lib.licenses.bsd3; 238768 }) {}; 238769 238770 "resourcet-pool" = callPackage ··· 239835 }: 239836 mkDerivation { 239837 pname = "rhine"; 239838 + version = "0.8.0.1"; 239839 + sha256 = "07cw0xlj0nwbx0wjb3k4hpw5y6ksp25c1fa8xrrbaqv2jspv7z75"; 239840 libraryHaskellDepends = [ 239841 base containers deepseq dunai free MonadRandom random 239842 simple-affine-space time time-domain transformers vector-sized ··· 239850 ({ mkDerivation, base, dunai, gloss, rhine, transformers }: 239851 mkDerivation { 239852 pname = "rhine-gloss"; 239853 + version = "0.8.0.1"; 239854 + sha256 = "0qpza2n84illhlmqsz2xqj5k6a3jxb1kb9qhw6gz5fh4p4k8jqyl"; 239855 isLibrary = true; 239856 isExecutable = true; 239857 libraryHaskellDepends = [ base dunai gloss rhine transformers ]; ··· 251707 license = lib.licenses.mit; 251708 }) {}; 251709 251710 + "serversession_1_0_3" = callPackage 251711 + ({ mkDerivation, aeson, base, base64-bytestring, bytestring 251712 + , containers, data-default, hashable, hspec, nonce, path-pieces 251713 + , persistent-test, QuickCheck, text, time, transformers 251714 + , unordered-containers 251715 + }: 251716 + mkDerivation { 251717 + pname = "serversession"; 251718 + version = "1.0.3"; 251719 + sha256 = "0hzyvz3jkv248lbq4pgy92dm054wj2s4d19rjr096ymcaznhxgfl"; 251720 + libraryHaskellDepends = [ 251721 + aeson base base64-bytestring bytestring data-default hashable nonce 251722 + path-pieces persistent-test text time transformers 251723 + unordered-containers 251724 + ]; 251725 + testHaskellDepends = [ 251726 + aeson base base64-bytestring bytestring containers data-default 251727 + hspec nonce path-pieces QuickCheck text time transformers 251728 + unordered-containers 251729 + ]; 251730 + description = "Secure, modular server-side sessions"; 251731 + license = lib.licenses.mit; 251732 + hydraPlatforms = lib.platforms.none; 251733 + }) {}; 251734 + 251735 "serversession-backend-acid-state" = callPackage 251736 ({ mkDerivation, acid-state, base, containers, hspec, mtl, safecopy 251737 , serversession, unordered-containers ··· 252908 ]; 252909 description = "Dependency tracking for Futhark"; 252910 license = lib.licenses.bsd3; 252911 }) {}; 252912 252913 "shake-google-closure-compiler" = callPackage ··· 253174 maintainers = [ lib.maintainers.psibi ]; 253175 }) {}; 253176 253177 + "shakespeare_2_0_30" = callPackage 253178 + ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring 253179 + , containers, directory, exceptions, file-embed, ghc-prim, hspec 253180 + , HUnit, parsec, process, scientific, template-haskell, text 253181 + , th-lift, time, transformers, unordered-containers, vector 253182 + }: 253183 + mkDerivation { 253184 + pname = "shakespeare"; 253185 + version = "2.0.30"; 253186 + sha256 = "038yprj9yig2xbjs2pqsjzs4pl9ir2frdz9wn2pklc4kvdazx3aw"; 253187 + libraryHaskellDepends = [ 253188 + aeson base blaze-html blaze-markup bytestring containers directory 253189 + exceptions file-embed ghc-prim parsec process scientific 253190 + template-haskell text th-lift time transformers 253191 + unordered-containers vector 253192 + ]; 253193 + testHaskellDepends = [ 253194 + aeson base blaze-html blaze-markup bytestring containers directory 253195 + exceptions ghc-prim hspec HUnit parsec process template-haskell 253196 + text time transformers 253197 + ]; 253198 + description = "A toolkit for making compile-time interpolated templates"; 253199 + license = lib.licenses.mit; 253200 + hydraPlatforms = lib.platforms.none; 253201 + maintainers = [ lib.maintainers.psibi ]; 253202 + }) {}; 253203 + 253204 "shakespeare-babel" = callPackage 253205 ({ mkDerivation, base, classy-prelude, data-default, directory 253206 , process, shakespeare, template-haskell ··· 262030 broken = true; 262031 }) {}; 262032 262033 + "spirv-reflect-types" = callPackage 262034 + ({ mkDerivation, base, containers, text, vector }: 262035 + mkDerivation { 262036 + pname = "spirv-reflect-types"; 262037 + version = "0.1"; 262038 + sha256 = "11q09i9scqd4msqylisyxnim9qga66yhqlb4650dx7ky6w1xzhws"; 262039 + libraryHaskellDepends = [ base containers text vector ]; 262040 + description = "Data types from spirv-reflect tool"; 262041 + license = lib.licenses.bsd3; 262042 + }) {}; 262043 + 262044 + "spirv-reflect-yaml" = callPackage 262045 + ({ mkDerivation, base, bytestring, HsYAML, spirv-reflect-types 262046 + , text, vector 262047 + }: 262048 + mkDerivation { 262049 + pname = "spirv-reflect-yaml"; 262050 + version = "0.1"; 262051 + sha256 = "1rxz5fbgwfr1p5mhhgc085chpi88an6zp4sxiq3iygny20cw1q73"; 262052 + libraryHaskellDepends = [ 262053 + base bytestring HsYAML spirv-reflect-types text vector 262054 + ]; 262055 + description = "YAML loader for spirv-reflect tool"; 262056 + license = lib.licenses.bsd3; 262057 + }) {}; 262058 + 262059 "splay" = callPackage 262060 ({ mkDerivation, base }: 262061 mkDerivation { ··· 263466 }: 263467 mkDerivation { 263468 pname = "stache"; 263469 version = "2.3.3"; 263470 sha256 = "1naqj54qm59f04x310lvj4fsrp3xar1v643i79gp7h48kyn1c2vy"; 263471 isLibrary = true; ··· 263488 ]; 263489 description = "Mustache templates for Haskell"; 263490 license = lib.licenses.mit; 263491 mainProgram = "stache"; 263492 }) {}; 263493 ··· 265988 }) {}; 265989 265990 "stooq-api" = callPackage 265991 + ({ mkDerivation, aeson, base, bytestring, lens, stringsearch, text 265992 + , time, utf8-string, vector, wreq 265993 }: 265994 mkDerivation { 265995 pname = "stooq-api"; 265996 + version = "0.3.0.0"; 265997 + sha256 = "1ax4ar3f0vnh1gcybxmf4vf0hvj1shs8mhin046jmgjqj14ss6zn"; 265998 libraryHaskellDepends = [ 265999 + aeson base bytestring lens stringsearch text time utf8-string 266000 + vector wreq 266001 ]; 266002 doHaddock = false; 266003 description = "A simple wrapper around stooq.pl API for downloading market data."; ··· 266296 }: 266297 mkDerivation { 266298 pname = "stratosphere"; 266299 + version = "0.60.0"; 266300 + sha256 = "0vp5m82h9axvvzqqxf4q5jxcjgym1b8h4x4y4a367bpiy7xk4kwf"; 266301 isLibrary = true; 266302 isExecutable = true; 266303 libraryHaskellDepends = [ ··· 268449 }: 268450 mkDerivation { 268451 pname = "strongweak"; 268452 + version = "0.3.1"; 268453 + sha256 = "1n46qw6hkdfbsfpyhpkalkw19fx152925hnpwmm2gr0rjzvwyn2p"; 268454 libraryHaskellDepends = [ 268455 base either prettyprinter refined vector vector-sized 268456 ]; ··· 269538 }: 269539 mkDerivation { 269540 pname = "superbuffer"; 269541 version = "0.3.1.2"; 269542 sha256 = "024mcjmayirwxqqyr9w1zfsxihi680clzngkpmgccv10phb8qpsp"; 269543 libraryHaskellDepends = [ base bytestring ]; ··· 269547 ]; 269548 description = "Efficiently build a bytestring from smaller chunks"; 269549 license = lib.licenses.bsd3; 269550 }) {}; 269551 269552 "supercollider-ht" = callPackage ··· 285730 license = lib.licenses.publicDomain; 285731 }) {}; 285732 285733 + "truthy" = callPackage 285734 + ({ mkDerivation, base }: 285735 + mkDerivation { 285736 + pname = "truthy"; 285737 + version = "0.3.0.1"; 285738 + sha256 = "164jxd8cyjb4qkmwqchzcpvd5fh7d124gbpryi26y8cbabmhfm8z"; 285739 + libraryHaskellDepends = [ base ]; 285740 + description = "Generalized booleans and truthy values"; 285741 + license = lib.licenses.mit; 285742 + }) {}; 285743 + 285744 "tsession" = callPackage 285745 ({ mkDerivation, base, containers, mtl, time, transformers }: 285746 mkDerivation { ··· 286236 ({ mkDerivation, base, ghc-prim, hspec, template-haskell }: 286237 mkDerivation { 286238 pname = "tuple-append"; 286239 + version = "0.1.1.0"; 286240 + sha256 = "00qj8rhnga8d18ylw7hjsizijh9qzdm50n4czrx941np5vn1lff2"; 286241 libraryHaskellDepends = [ base ghc-prim template-haskell ]; 286242 testHaskellDepends = [ base ghc-prim hspec ]; 286243 description = "A package to append items and tuples into new tuples"; 286244 license = lib.licenses.bsd3; 286245 }) {}; 286246 286247 + "tuple-append-instances" = callPackage 286248 + ({ mkDerivation, base, bytestring, dlist, text, tuple-append 286249 + , vector 286250 + }: 286251 + mkDerivation { 286252 + pname = "tuple-append-instances"; 286253 + version = "0.1.0.0"; 286254 + sha256 = "0gbrl03q10392lrym8mvav3hfh5nbds0li1bpkv4r1c8g80m5kg7"; 286255 + libraryHaskellDepends = [ 286256 + base bytestring dlist text tuple-append vector 286257 + ]; 286258 + description = "Extra instances for the typeclasses in the tuple-append package"; 286259 + license = lib.licenses.bsd3; 286260 + }) {}; 286261 + 286262 "tuple-gen" = callPackage 286263 ({ mkDerivation, base, combinat }: 286264 mkDerivation { ··· 288579 288580 "typesafe-precure" = callPackage 288581 ({ mkDerivation, aeson, aeson-pretty, autoexporter, base 288582 + , bytestring, dlist, hspec, hspec-discover, monad-skeleton 288583 + , template-haskell, text, th-data-compat, th-strict-compat 288584 }: 288585 mkDerivation { 288586 pname = "typesafe-precure"; 288587 + version = "0.9.0.1"; 288588 + sha256 = "10965lqb2f2fk5zyzdvk72bc9ja9kl17fqpb9b96pazw74qjm7a5"; 288589 libraryHaskellDepends = [ 288590 aeson aeson-pretty autoexporter base bytestring dlist 288591 monad-skeleton template-haskell text th-data-compat ··· 288593 ]; 288594 libraryToolDepends = [ autoexporter ]; 288595 testHaskellDepends = [ base hspec ]; 288596 + testToolDepends = [ hspec-discover ]; 288597 description = "Type-safe transformations and purifications of PreCures (Japanese Battle Heroine)"; 288598 license = lib.licenses.bsd3; 288599 hydraPlatforms = lib.platforms.none; ··· 296783 hydraPlatforms = lib.platforms.none; 296784 }) {}; 296785 296786 + "vty_5_36" = callPackage 296787 + ({ mkDerivation, ansi-terminal, base, binary, blaze-builder 296788 + , bytestring, Cabal, containers, deepseq, directory, filepath 296789 + , hashable, HUnit, microlens, microlens-mtl, microlens-th, mtl 296790 + , parallel, parsec, QuickCheck, quickcheck-assertions, random 296791 + , smallcheck, stm, string-qq, terminfo, test-framework 296792 + , test-framework-hunit, test-framework-smallcheck, text 296793 + , transformers, unix, utf8-string, vector 296794 + }: 296795 + mkDerivation { 296796 + pname = "vty"; 296797 + version = "5.36"; 296798 + sha256 = "19841hwr0s1s05dlxw5386vnrxka9567bn309d002y263wb8vfzi"; 296799 + isLibrary = true; 296800 + isExecutable = true; 296801 + libraryHaskellDepends = [ 296802 + ansi-terminal base binary blaze-builder bytestring containers 296803 + deepseq directory filepath hashable microlens microlens-mtl 296804 + microlens-th mtl parallel parsec stm terminfo text transformers 296805 + unix utf8-string vector 296806 + ]; 296807 + executableHaskellDepends = [ 296808 + base containers directory filepath microlens microlens-mtl mtl 296809 + ]; 296810 + testHaskellDepends = [ 296811 + base blaze-builder bytestring Cabal containers deepseq HUnit 296812 + microlens microlens-mtl mtl QuickCheck quickcheck-assertions random 296813 + smallcheck stm string-qq terminfo test-framework 296814 + test-framework-hunit test-framework-smallcheck text unix 296815 + utf8-string vector 296816 + ]; 296817 + description = "A simple terminal UI library"; 296818 + license = lib.licenses.bsd3; 296819 + hydraPlatforms = lib.platforms.none; 296820 + }) {}; 296821 + 296822 "vty-examples" = callPackage 296823 ({ mkDerivation, array, base, bytestring, Cabal, containers 296824 , data-default, deepseq, lens, mtl, parallel, parsec, QuickCheck ··· 297191 }) {}; 297192 297193 "wai-control" = callPackage 297194 + ({ mkDerivation, base, unliftio-core, wai, wai-websockets 297195 + , websockets 297196 }: 297197 mkDerivation { 297198 pname = "wai-control"; 297199 + version = "0.2.0.0"; 297200 + sha256 = "091plz38ixm4h54hycgyz5g24h2w1wg25bqsbsfyjyhjjzh4a150"; 297201 libraryHaskellDepends = [ 297202 + base unliftio-core wai wai-websockets websockets 297203 ]; 297204 description = "Run wai Applications in IO based monads"; 297205 license = lib.licenses.bsd3; 297206 }) {}; 297207 297208 "wai-cors" = callPackage ··· 300593 }: 300594 mkDerivation { 300595 pname = "webgear-core"; 300596 version = "1.0.3"; 300597 sha256 = "1617gc4hlhgx5xyd5b5l1syhpqdq801ifpdgsbrk3z3madhn8vag"; 300598 libraryHaskellDepends = [ ··· 300602 ]; 300603 description = "Composable, type-safe library to build HTTP APIs"; 300604 license = lib.licenses.mpl20; 300605 }) {}; 300606 300607 "webgear-openapi" = callPackage ··· 300610 }: 300611 mkDerivation { 300612 pname = "webgear-openapi"; 300613 version = "1.0.3"; 300614 sha256 = "0j0xdqg43qsphsnk0lhy5di3hk77a0n5bbw0qp8n371lk90464hd"; 300615 libraryHaskellDepends = [ ··· 300618 ]; 300619 description = "Composable, type-safe library to build HTTP API servers"; 300620 license = lib.licenses.mpl20; 300621 }) {}; 300622 300623 "webgear-server" = callPackage ··· 300629 }: 300630 mkDerivation { 300631 pname = "webgear-server"; 300632 version = "1.0.3"; 300633 sha256 = "1qj297wgrhzkg7sb9lrmp5jfi77k09fnfmz4mn74vbwwpr90ahaw"; 300634 libraryHaskellDepends = [ ··· 300643 ]; 300644 description = "Composable, type-safe library to build HTTP API servers"; 300645 license = lib.licenses.mpl20; 300646 }) {}; 300647 300648 "webidl" = callPackage
+2 -2
pkgs/development/libraries/cimg/default.nix
··· 5 6 stdenv.mkDerivation rec { 7 pname = "cimg"; 8 - version = "3.0.2"; 9 10 src = fetchFromGitHub { 11 owner = "dtschump"; 12 repo = "CImg"; 13 rev = "v.${version}"; 14 - hash = "sha256-OWpztnyVXCg+uoAb6e/2eUK2ebBalDlz6Qcjf17IeMk="; 15 }; 16 17 outputs = [ "out" "doc" ];
··· 5 6 stdenv.mkDerivation rec { 7 pname = "cimg"; 8 + version = "3.1.4"; 9 10 src = fetchFromGitHub { 11 owner = "dtschump"; 12 repo = "CImg"; 13 rev = "v.${version}"; 14 + hash = "sha256-nHYRs8X8I0B76SlgqWez3qubrsG7iBfa0I/G78v7H8g="; 15 }; 16 17 outputs = [ "out" "doc" ];
+2 -2
pkgs/development/libraries/gjs/default.nix
··· 31 ]; 32 in stdenv.mkDerivation rec { 33 pname = "gjs"; 34 - version = "1.72.0"; 35 36 outputs = [ "out" "dev" "installedTests" ]; 37 38 src = fetchurl { 39 url = "mirror://gnome/sources/gjs/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 40 - sha256 = "sha256-PvDK9xbjkg3WH3dI9tVuR2zA/Bg1GtBUjn3xoKub3K0="; 41 }; 42 43 patches = [
··· 31 ]; 32 in stdenv.mkDerivation rec { 33 pname = "gjs"; 34 + version = "1.72.1"; 35 36 outputs = [ "out" "dev" "installedTests" ]; 37 38 src = fetchurl { 39 url = "mirror://gnome/sources/gjs/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 40 + sha256 = "sha256-F8Cx7D8JZnH/i/q6bku/FBmMcBPGBL/Wd6mFjaB5wKs="; 41 }; 42 43 patches = [
+2 -2
pkgs/development/libraries/gnome-desktop/default.nix
··· 27 28 stdenv.mkDerivation rec { 29 pname = "gnome-desktop"; 30 - version = "42.2"; 31 32 outputs = [ "out" "dev" "devdoc" ]; 33 34 src = fetchurl { 35 url = "mirror://gnome/sources/gnome-desktop/${lib.versions.major version}/${pname}-${version}.tar.xz"; 36 - sha256 = "sha256-9CsU6sjRRWwr/B+8l+9q/knI3W9XeW6P1f6zkzHtVb0="; 37 }; 38 39 patches = [
··· 27 28 stdenv.mkDerivation rec { 29 pname = "gnome-desktop"; 30 + version = "42.3"; 31 32 outputs = [ "out" "dev" "devdoc" ]; 33 34 src = fetchurl { 35 url = "mirror://gnome/sources/gnome-desktop/${lib.versions.major version}/${pname}-${version}.tar.xz"; 36 + sha256 = "sha256-2lBBC48Z/X53WwDR/g26Z/xeEVHe0pkVjcJd2tw/qKk="; 37 }; 38 39 patches = [
+2 -2
pkgs/development/libraries/libfprint/default.nix
··· 19 20 stdenv.mkDerivation rec { 21 pname = "libfprint"; 22 - version = "1.94.3"; 23 outputs = [ "out" "devdoc" ]; 24 25 src = fetchFromGitLab { ··· 27 owner = "libfprint"; 28 repo = pname; 29 rev = "v${version}"; 30 - sha256 = "sha256-uOFWF+CDyK4+fY+NhiDnRKaptAN/vfH32Vzj+LAxWqg="; 31 }; 32 33 nativeBuildInputs = [
··· 19 20 stdenv.mkDerivation rec { 21 pname = "libfprint"; 22 + version = "1.94.4"; 23 outputs = [ "out" "devdoc" ]; 24 25 src = fetchFromGitLab { ··· 27 owner = "libfprint"; 28 repo = pname; 29 rev = "v${version}"; 30 + sha256 = "sha256-C8vBjk0cZm/GSqc6mgNbXG8FycnWRaXhj9wIrLcWzfE="; 31 }; 32 33 nativeBuildInputs = [
+9
pkgs/development/libraries/libressl/default.nix
··· 92 libressl_3_5 = generic { 93 version = "3.5.3"; 94 hash = "sha256-OrXl6u9pziDGsXDuZNeFtCI19I8uYrCV/KXXtmcriyg="; 95 }; 96 }
··· 92 libressl_3_5 = generic { 93 version = "3.5.3"; 94 hash = "sha256-OrXl6u9pziDGsXDuZNeFtCI19I8uYrCV/KXXtmcriyg="; 95 + 96 + patches = [ 97 + # Fix endianness detection on aarch64-darwin, issue #181187 98 + (fetchpatch { 99 + name = "fix-endian-header-detection.patch"; 100 + url = "https://patch-diff.githubusercontent.com/raw/libressl-portable/portable/pull/771.patch"; 101 + sha256 = "sha256-in5U6+sl0HB9qMAtUL6Py4X2rlv0HsqRMIQhhM1oThE="; 102 + }) 103 + ]; 104 }; 105 }
+6 -4
pkgs/development/libraries/librest/1.0.nix
··· 7 , gi-docgen 8 , glib 9 , json-glib 10 - , libsoup 11 , gobject-introspection 12 , gnome 13 }: 14 15 stdenv.mkDerivation rec { 16 pname = "rest"; 17 - version = "0.9.0"; 18 19 outputs = [ "out" "dev" "devdoc" ]; 20 21 src = fetchurl { 22 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 23 - sha256 = "hbK8k0ESgTlTm1PuU/BTMxC8ljkv1kWGOgQEELgevmY="; 24 }; 25 26 nativeBuildInputs = [ ··· 34 buildInputs = [ 35 glib 36 json-glib 37 - libsoup 38 ]; 39 40 mesonFlags = [
··· 7 , gi-docgen 8 , glib 9 , json-glib 10 + , libsoup_3 11 + , libxml2 12 , gobject-introspection 13 , gnome 14 }: 15 16 stdenv.mkDerivation rec { 17 pname = "rest"; 18 + version = "0.9.1"; 19 20 outputs = [ "out" "dev" "devdoc" ]; 21 22 src = fetchurl { 23 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 24 + sha256 = "kmalwQ7OOD4ZPft/+we1CcwfUVIauNrXavlu0UISwuM="; 25 }; 26 27 nativeBuildInputs = [ ··· 35 buildInputs = [ 36 glib 37 json-glib 38 + libsoup_3 39 + libxml2 40 ]; 41 42 mesonFlags = [
+5
pkgs/development/libraries/ntl/default.nix
··· 35 36 dontAddPrefix = true; # DEF_PREFIX instead 37 38 # reference: http://shoup.net/ntl/doc/tour-unix.html 39 configureFlags = [ 40 "DEF_PREFIX=$(out)"
··· 35 36 dontAddPrefix = true; # DEF_PREFIX instead 37 38 + # Written in perl, does not support autoconf-style 39 + # --build=/--host= options: 40 + # Error: unrecognized option: --build=x86_64-unknown-linux-gnu 41 + configurePlatforms = [ ]; 42 + 43 # reference: http://shoup.net/ntl/doc/tour-unix.html 44 configureFlags = [ 45 "DEF_PREFIX=$(out)"
+2 -2
pkgs/development/libraries/qtstyleplugin-kvantum/default.nix
··· 5 6 stdenv.mkDerivation rec { 7 pname = "qtstyleplugin-kvantum"; 8 - version = "1.0.2"; 9 10 src = fetchFromGitHub { 11 owner = "tsujan"; 12 repo = "Kvantum"; 13 rev = "V${version}"; 14 - sha256 = "NPMqd7j9Unvw8p/cUNMYWmgrb2ysdMvSSGJ6lJWh4/M="; 15 }; 16 17 nativeBuildInputs = [
··· 5 6 stdenv.mkDerivation rec { 7 pname = "qtstyleplugin-kvantum"; 8 + version = "1.0.3"; 9 10 src = fetchFromGitHub { 11 owner = "tsujan"; 12 repo = "Kvantum"; 13 rev = "V${version}"; 14 + sha256 = "hY8QQVcP3E+GAdLOqtVbqCWBcxS2M6sMOr/vr+DryyQ="; 15 }; 16 17 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/aeppl/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "aeppl"; 14 - version = "0.0.31"; 15 format = "setuptools"; 16 17 disabled = pythonOlder "3.7"; ··· 20 owner = "aesara-devs"; 21 repo = pname; 22 rev = "refs/tags/v${version}"; 23 - hash = "sha256-fbBtjU2skvfDCnRRW+9PIObsEOfKhl15qSLw3TGhl4k="; 24 }; 25 26 propagatedBuildInputs = [
··· 11 12 buildPythonPackage rec { 13 pname = "aeppl"; 14 + version = "0.0.33"; 15 format = "setuptools"; 16 17 disabled = pythonOlder "3.7"; ··· 20 owner = "aesara-devs"; 21 repo = pname; 22 rev = "refs/tags/v${version}"; 23 + hash = "sha256-P4QgEt/QfIeCx/wpaCncXtjrDM2uiOIuObxPlTtn1CY="; 24 }; 25 26 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/aesara/default.nix
··· 21 22 buildPythonPackage rec { 23 pname = "aesara"; 24 - version = "2.7.6"; 25 format = "setuptools"; 26 27 disabled = pythonOlder "3.7"; ··· 30 owner = "aesara-devs"; 31 repo = "aesara"; 32 rev = "refs/tags/rel-${version}"; 33 - hash = "sha256-N/hAD8ev12OhodjVAlzOKwdmIer8r4i1GfgvlnGaYNU="; 34 }; 35 36 nativeBuildInputs = [
··· 21 22 buildPythonPackage rec { 23 pname = "aesara"; 24 + version = "2.7.7"; 25 format = "setuptools"; 26 27 disabled = pythonOlder "3.7"; ··· 30 owner = "aesara-devs"; 31 repo = "aesara"; 32 rev = "refs/tags/rel-${version}"; 33 + hash = "sha256-Dr4MPNtPGKmViVP2FSF8bvrQ68Dz/ASK/MTRCRUnFOE="; 34 }; 35 36 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/ailment/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "ailment"; 10 - version = "9.2.9"; 11 format = "pyproject"; 12 13 disabled = pythonOlder "3.6"; ··· 16 owner = "angr"; 17 repo = pname; 18 rev = "v${version}"; 19 - hash = "sha256-NvSbv/lMWEWZDHqo/peND8YsaZBKMm2SandDozyDoNs="; 20 }; 21 22 propagatedBuildInputs = [
··· 7 8 buildPythonPackage rec { 9 pname = "ailment"; 10 + version = "9.2.10"; 11 format = "pyproject"; 12 13 disabled = pythonOlder "3.6"; ··· 16 owner = "angr"; 17 repo = pname; 18 rev = "v${version}"; 19 + hash = "sha256-l2rnCtzHeK9B/sb8EQUeTRiapE3Dzcysej1zqO0rrV0="; 20 }; 21 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/aioaladdinconnect/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "aioaladdinconnect"; 10 - version = "0.1.21"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; ··· 15 src = fetchPypi { 16 pname = "AIOAladdinConnect"; 17 inherit version; 18 - hash = "sha256-Zr9QLiQNmphPpAVnFVpoOlVbuWUVtWXIacYKAnth+E4="; 19 }; 20 21 propagatedBuildInputs = [
··· 7 8 buildPythonPackage rec { 9 pname = "aioaladdinconnect"; 10 + version = "0.1.23"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; ··· 15 src = fetchPypi { 16 pname = "AIOAladdinConnect"; 17 inherit version; 18 + hash = "sha256-H5deAXFQR2AwTLqLeE2fRrx2Btz6Tsb+EDkFMc8qJIc="; 19 }; 20 21 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/angr/default.nix
··· 46 47 buildPythonPackage rec { 48 pname = "angr"; 49 - version = "9.2.9"; 50 format = "pyproject"; 51 52 disabled = pythonOlder "3.6"; ··· 55 owner = pname; 56 repo = pname; 57 rev = "v${version}"; 58 - hash = "sha256-8tIqAs3TPoc4G6h91Y7tQVy4KowmyJA5HwFbFwQTgjc="; 59 }; 60 61 propagatedBuildInputs = [
··· 46 47 buildPythonPackage rec { 48 pname = "angr"; 49 + version = "9.2.10"; 50 format = "pyproject"; 51 52 disabled = pythonOlder "3.6"; ··· 55 owner = pname; 56 repo = pname; 57 rev = "v${version}"; 58 + hash = "sha256-GkNpcYY9BEdLlWWOZQt2Ahdp8474RGbvV4UWTdBTKjc="; 59 }; 60 61 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/archinfo/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "archinfo"; 11 - version = "9.2.9"; 12 format = "pyproject"; 13 14 disabled = pythonOlder "3.6"; ··· 17 owner = "angr"; 18 repo = pname; 19 rev = "v${version}"; 20 - hash = "sha256-TEW5aoBMBZCoW4nMFOVkg3xlHIM8TsKhdmijCoIOFoM="; 21 }; 22 23 checkInputs = [
··· 8 9 buildPythonPackage rec { 10 pname = "archinfo"; 11 + version = "9.2.10"; 12 format = "pyproject"; 13 14 disabled = pythonOlder "3.6"; ··· 17 owner = "angr"; 18 repo = pname; 19 rev = "v${version}"; 20 + hash = "sha256-pd7QnJr+XXx+seGDlaLKBIew0Ldcnfsf7d1DgxZFREM="; 21 }; 22 23 checkInputs = [
+2 -2
pkgs/development/python-modules/channels-redis/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "channels-redis"; 15 - version = "3.4.0"; 16 17 disabled = pythonOlder "3.6"; 18 19 src = fetchPypi { 20 inherit version; 21 pname = "channels_redis"; 22 - sha256 = "sha256-Xf/UzBYXQSW9QEP8j+dGLKdAPPgB1Zqfp0EO0QH6alc="; 23 }; 24 25 buildInputs = [ redis hiredis ];
··· 12 13 buildPythonPackage rec { 14 pname = "channels-redis"; 15 + version = "3.4.1"; 16 17 disabled = pythonOlder "3.6"; 18 19 src = fetchPypi { 20 inherit version; 21 pname = "channels_redis"; 22 + sha256 = "sha256-eOSi8rKnRP5ah4SOw2te5J9SLGgIzv5sWDZj0NUx+qg="; 23 }; 24 25 buildInputs = [ redis hiredis ];
+3 -3
pkgs/development/python-modules/circuitbreaker/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "circuitbreaker"; 11 - version = "1.3.2"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.8"; ··· 16 src = fetchFromGitHub { 17 owner = "fabfuel"; 18 repo = pname; 19 - rev = version; 20 - sha256 = "sha256-3hFa8dwCso5tj26ek2jMdVBRzu5H3vkdjQlDYw2hSH0="; 21 }; 22 23 checkInputs = [
··· 8 9 buildPythonPackage rec { 10 pname = "circuitbreaker"; 11 + version = "1.4.0"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.8"; ··· 16 src = fetchFromGitHub { 17 owner = "fabfuel"; 18 repo = pname; 19 + rev = "refs/tags/${version}"; 20 + sha256 = "sha256-l0ASt9CQmgJmWpRrghElbff/gaNOmxNh+Wj0C0p4jE0="; 21 }; 22 23 checkInputs = [
+2 -2
pkgs/development/python-modules/claripy/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "claripy"; 17 - version = "9.2.9"; 18 format = "pyproject"; 19 20 disabled = pythonOlder "3.6"; ··· 23 owner = "angr"; 24 repo = pname; 25 rev = "v${version}"; 26 - hash = "sha256-8uavNI/Zhvt7jf8+bOvnExp7Jx/By+rgIc5MbNtrSdY="; 27 }; 28 29 propagatedBuildInputs = [
··· 14 15 buildPythonPackage rec { 16 pname = "claripy"; 17 + version = "9.2.10"; 18 format = "pyproject"; 19 20 disabled = pythonOlder "3.6"; ··· 23 owner = "angr"; 24 repo = pname; 25 rev = "v${version}"; 26 + hash = "sha256-viQC8FgZ/La3fdlBcFd3Lm+YiiPzNyxw41caRfZU0/I="; 27 }; 28 29 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/cle/default.nix
··· 15 16 let 17 # The binaries are following the argr projects release cycle 18 - version = "9.2.9"; 19 20 # Binary files from https://github.com/angr/binaries (only used for testing and only here) 21 binaries = fetchFromGitHub { ··· 37 owner = "angr"; 38 repo = pname; 39 rev = "v${version}"; 40 - hash = "sha256-TnDJFBCejMyV6UdgvuywxXeE/OKe4XCE1+lIGl6YEjc="; 41 }; 42 43 propagatedBuildInputs = [
··· 15 16 let 17 # The binaries are following the argr projects release cycle 18 + version = "9.2.10"; 19 20 # Binary files from https://github.com/angr/binaries (only used for testing and only here) 21 binaries = fetchFromGitHub { ··· 37 owner = "angr"; 38 repo = pname; 39 rev = "v${version}"; 40 + hash = "sha256-2B+yeQAWVTECW5M4/GFF4wvw3q6y/I6QQC+pYkUObN0="; 41 }; 42 43 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/cssutils/default.nix
··· 17 18 buildPythonPackage rec { 19 pname = "cssutils"; 20 - version = "2.4.2"; 21 22 disabled = pythonOlder "3.7"; 23 ··· 25 26 src = fetchPypi { 27 inherit pname version; 28 - hash = "sha256-h3gYv6lmjMU1dz9G5rakbeKENhkSEXQbP3tKqmTZr7s="; 29 }; 30 31 nativeBuildInputs = [
··· 17 18 buildPythonPackage rec { 19 pname = "cssutils"; 20 + version = "2.5.0"; 21 22 disabled = pythonOlder "3.7"; 23 ··· 25 26 src = fetchPypi { 27 inherit pname version; 28 + hash = "sha256-1H5N1nsowm/5oeVBEV3u05YX/5JlERxtJQD3qBcHeVs="; 29 }; 30 31 nativeBuildInputs = [
+3 -3
pkgs/development/python-modules/django-extensions/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "django-extensions"; 17 - version = "3.1.5"; 18 19 src = fetchFromGitHub { 20 owner = pname; 21 repo = pname; 22 - rev = version; 23 - sha256 = "sha256-NAMa78KhAuoJfp0Cb0Codz84sRfRQ1JhSLNYRI4GBPM="; 24 }; 25 26 postPatch = ''
··· 14 15 buildPythonPackage rec { 16 pname = "django-extensions"; 17 + version = "3.2.0"; 18 19 src = fetchFromGitHub { 20 owner = pname; 21 repo = pname; 22 + rev = "refs/tags/${version}"; 23 + sha256 = "sha256-jibske9cnOn4FPAGNs2EU1w1huF4dNxHAnOzuKSj3/E="; 24 }; 25 26 postPatch = ''
+2 -2
pkgs/development/python-modules/dotty-dict/default.nix
··· 6 7 buildPythonPackage rec { 8 pname = "dotty_dict"; 9 - version = "1.3.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - sha256 = "sha256-6wA1o2KezYQ5emjx9C8elKvRw0V3oZzT6srTMe58uvA="; 14 }; 15 16 nativeBuildInputs = [ setuptools-scm ];
··· 6 7 buildPythonPackage rec { 8 pname = "dotty_dict"; 9 + version = "1.3.1"; 10 11 src = fetchPypi { 12 inherit pname version; 13 + sha256 = "sha256-SwFuA7iuJlU5dXpT66JLm/2lBvuU+84L7oQ8bwVUGhU="; 14 }; 15 16 nativeBuildInputs = [ setuptools-scm ];
+2 -2
pkgs/development/python-modules/globus-sdk/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "globus-sdk"; 17 - version = "3.10.0"; 18 format = "setuptools"; 19 20 disabled = pythonOlder "3.6"; ··· 23 owner = "globus"; 24 repo = "globus-sdk-python"; 25 rev = "refs/tags/${version}"; 26 - hash = "sha256-zHuhhvAAxQnu0GpdbZoLXTwMQPJT4hQHtVr7R1yoNWg="; 27 }; 28 29 propagatedBuildInputs = [
··· 14 15 buildPythonPackage rec { 16 pname = "globus-sdk"; 17 + version = "3.10.1"; 18 format = "setuptools"; 19 20 disabled = pythonOlder "3.6"; ··· 23 owner = "globus"; 24 repo = "globus-sdk-python"; 25 rev = "refs/tags/${version}"; 26 + hash = "sha256-Un6Fv1Lh4HdYwdU/iR+5JFcPjY2NrFfC9+MkGuaTF8M="; 27 }; 28 29 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-bigquery-storage/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "google-cloud-bigquery-storage"; 12 - version = "2.14.0"; 13 14 src = fetchPypi { 15 inherit pname version; 16 - sha256 = "sha256-udzLm/aYwXjeyBV70J/NjjhUMLHJ7wXHMS8OSlnrrZU="; 17 }; 18 19 propagatedBuildInputs = [
··· 9 10 buildPythonPackage rec { 11 pname = "google-cloud-bigquery-storage"; 12 + version = "2.14.1"; 13 14 src = fetchPypi { 15 inherit pname version; 16 + sha256 = "sha256-nOwHaJxFVEi023iapg51lmTXV+sGavKjXUFOXgDPb7g="; 17 }; 18 19 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-iot/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "google-cloud-iot"; 15 - version = "2.5.1"; 16 17 src = fetchPypi { 18 inherit pname version; 19 - sha256 = "sha256-Y71v505bwXEV1u28WFAHs12Qx0tKY7BDjFCc+oBgZcw="; 20 }; 21 22 propagatedBuildInputs = [ grpc-google-iam-v1 google-api-core libcst proto-plus ];
··· 12 13 buildPythonPackage rec { 14 pname = "google-cloud-iot"; 15 + version = "2.6.0"; 16 17 src = fetchPypi { 18 inherit pname version; 19 + sha256 = "sha256-XfF4+F4+LmRyxn8Zs3gI2RegFb3Y+uoAinEqcLeWCGM="; 20 }; 21 22 propagatedBuildInputs = [ grpc-google-iam-v1 google-api-core libcst proto-plus ];
+2 -2
pkgs/development/python-modules/google-cloud-language/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "google-cloud-language"; 15 - version = "2.4.3"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.7"; 19 20 src = fetchPypi { 21 inherit pname version; 22 - sha256 = "sha256-1N5nnT22ILyaubDrpj2bS260AP4YrjrMQ0tgBA3OChg="; 23 }; 24 25 propagatedBuildInputs = [
··· 12 13 buildPythonPackage rec { 14 pname = "google-cloud-language"; 15 + version = "2.5.1"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.7"; 19 20 src = fetchPypi { 21 inherit pname version; 22 + sha256 = "sha256-+ECYt4DRf8UO/MIpaOiGITTp3ep1+nhbtUEA3t9G3aU="; 23 }; 24 25 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-logging/default.nix
··· 17 18 buildPythonPackage rec { 19 pname = "google-cloud-logging"; 20 - version = "3.1.2"; 21 format = "setuptools"; 22 23 disabled = pythonOlder "3.6"; 24 25 src = fetchPypi { 26 inherit pname version; 27 - hash = "sha256-PtAKi9IHb+56HcBTiA/LPJcxhIB+JA+MPAkp3XSOr38="; 28 }; 29 30 propagatedBuildInputs = [
··· 17 18 buildPythonPackage rec { 19 pname = "google-cloud-logging"; 20 + version = "3.2.0"; 21 format = "setuptools"; 22 23 disabled = pythonOlder "3.6"; 24 25 src = fetchPypi { 26 inherit pname version; 27 + hash = "sha256-DHFg4s1saEVhTk+IDqrmLaIM4nwjmBj72osp16YnruY="; 28 }; 29 30 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-org-policy/default.nix
··· 2 3 buildPythonPackage rec { 4 pname = "google-cloud-org-policy"; 5 - version = "1.3.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "sha256-hZzujuHtj5g/dBJUhZBV4h8zJjtI1xitfjkcVzURfKU="; 10 }; 11 12 propagatedBuildInputs = [ google-api-core proto-plus ];
··· 2 3 buildPythonPackage rec { 4 pname = "google-cloud-org-policy"; 5 + version = "1.4.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "sha256-7mlufFubKLJ7vRqpL8I6nRsFXfxcqyg063OUtkGxydo="; 10 }; 11 12 propagatedBuildInputs = [ google-api-core proto-plus ];
+2 -2
pkgs/development/python-modules/google-cloud-os-config/default.nix
··· 2 3 buildPythonPackage rec { 4 pname = "google-cloud-os-config"; 5 - version = "1.12.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "sha256-k68hDx0D2b59PJpUjMcwDtIqnwhrQxEpxDZCo5JQuXc="; 10 }; 11 12 propagatedBuildInputs = [ google-api-core libcst proto-plus ];
··· 2 3 buildPythonPackage rec { 4 pname = "google-cloud-os-config"; 5 + version = "1.12.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "sha256-eINiPP8CACiYP2nSY1U60EoYFlXhvA/0ykw2CUWP1lQ="; 10 }; 11 12 propagatedBuildInputs = [ google-api-core libcst proto-plus ];
+2 -2
pkgs/development/python-modules/google-cloud-pubsub/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "google-cloud-pubsub"; 18 - version = "2.13.2"; 19 format = "setuptools"; 20 21 disabled = pythonOlder "3.6"; 22 23 src = fetchPypi { 24 inherit pname version; 25 - hash = "sha256-nkwfzjrNFgaOfPT4izV2YQFSVRQ4/G04oF1FBPA/IME="; 26 }; 27 28 propagatedBuildInputs = [
··· 15 16 buildPythonPackage rec { 17 pname = "google-cloud-pubsub"; 18 + version = "2.13.3"; 19 format = "setuptools"; 20 21 disabled = pythonOlder "3.6"; 22 23 src = fetchPypi { 24 inherit pname version; 25 + hash = "sha256-4ocFDAimS1oFVJTpGWJYedJ35MJoJ7eheiWFiMX/JUk="; 26 }; 27 28 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-redis/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "google-cloud-redis"; 15 - version = "2.8.1"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.6"; 19 20 src = fetchPypi { 21 inherit pname version; 22 - hash = "sha256-qI7bGk+BkLIfhrJHAfk2DVBp8vRc5dPLKjdKH0FPj8s="; 23 }; 24 25 propagatedBuildInputs = [
··· 12 13 buildPythonPackage rec { 14 pname = "google-cloud-redis"; 15 + version = "2.9.0"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.6"; 19 20 src = fetchPypi { 21 inherit pname version; 22 + hash = "sha256-ghVCb0kur3gABkcfkvGjBo2QKPxyQuoZPtEtKyXOT1o="; 23 }; 24 25 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-resource-manager/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "google-cloud-resource-manager"; 15 - version = "1.5.1"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.6"; 19 20 src = fetchPypi { 21 inherit pname version; 22 - hash = "sha256-3lJfwntd6JdaU3/5MY8ZZuGc8iTt0Vfk6tVP8oWMtxQ="; 23 }; 24 25 propagatedBuildInputs = [
··· 12 13 buildPythonPackage rec { 14 pname = "google-cloud-resource-manager"; 15 + version = "1.6.0"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.6"; 19 20 src = fetchPypi { 21 inherit pname version; 22 + hash = "sha256-loyEh0R4jtOThDJXntnWi/q74WmXmC7E4f6h059UccU="; 23 }; 24 25 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-runtimeconfig/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "google-cloud-runtimeconfig"; 12 - version = "0.33.1"; 13 14 src = fetchPypi { 15 inherit pname version; 16 - sha256 = "sha256-SKinB6fiBh+oe+lb2IGMD6248DDOrG7g3kiFpMGX4BU="; 17 }; 18 19 propagatedBuildInputs = [ google-api-core google-cloud-core ];
··· 9 10 buildPythonPackage rec { 11 pname = "google-cloud-runtimeconfig"; 12 + version = "0.33.2"; 13 14 src = fetchPypi { 15 inherit pname version; 16 + sha256 = "sha256-MPmyvm2FSrUzb1y5i4xl5Cqea6sxixLoZ7V1hxNi7hw="; 17 }; 18 19 propagatedBuildInputs = [ google-api-core google-cloud-core ];
+2 -2
pkgs/development/python-modules/google-cloud-spanner/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-spanner"; 17 - version = "3.15.1"; 18 19 src = fetchPypi { 20 inherit pname version; 21 - sha256 = "sha256-VmHmje3fJfiCT2CeJgk98qdFhZnxGZudfHP1MgW6Mtw="; 22 }; 23 24 propagatedBuildInputs = [
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-spanner"; 17 + version = "3.16.0"; 18 19 src = fetchPypi { 20 inherit pname version; 21 + sha256 = "sha256-vkjAkxpk50zFVbhvdN76U5n6KbrTXilughac73La9yM="; 22 }; 23 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-websecurityscanner/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "google-cloud-websecurityscanner"; 16 - version = "1.8.0"; 17 format = "setuptools"; 18 19 disabled = pythonOlder "3.7"; 20 21 src = fetchPypi { 22 inherit pname version; 23 - hash = "sha256-rp/clC5lN3+fc3bz3Qb+oqHyVMS+jLX9gxxB0zOCxfM="; 24 }; 25 26 propagatedBuildInputs = [
··· 13 14 buildPythonPackage rec { 15 pname = "google-cloud-websecurityscanner"; 16 + version = "1.8.1"; 17 format = "setuptools"; 18 19 disabled = pythonOlder "3.7"; 20 21 src = fetchPypi { 22 inherit pname version; 23 + hash = "sha256-sjw31xRPrLYF/kslmWn/UIYX95RZ+cSCz23AGToRbGc="; 24 }; 25 26 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/hahomematic/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "hahomematic"; 17 - version = "2022.7.5"; 18 format = "pyproject"; 19 20 disabled = pythonOlder "3.9"; ··· 23 owner = "danielperna84"; 24 repo = pname; 25 rev = "refs/tags/${version}"; 26 - sha256 = "sha256-VCm94/kMQl9gbt7Veefo75z1PuOd4faUMGbBxLI/ZUs="; 27 }; 28 29 propagatedBuildInputs = [
··· 14 15 buildPythonPackage rec { 16 pname = "hahomematic"; 17 + version = "2022.7.7"; 18 format = "pyproject"; 19 20 disabled = pythonOlder "3.9"; ··· 23 owner = "danielperna84"; 24 repo = pname; 25 rev = "refs/tags/${version}"; 26 + sha256 = "sha256-obkvx7P2nkn7z3kMJeY9ERzkuCAlmE27mwjUUPxOisc="; 27 }; 28 29 propagatedBuildInputs = [
+5 -5
pkgs/development/python-modules/homematicip/default.nix
··· 17 18 buildPythonPackage rec { 19 pname = "homematicip"; 20 - version = "1.0.3"; 21 format = "setuptools"; 22 23 disabled = pythonOlder "3.6"; 24 25 src = fetchFromGitHub { 26 - owner = "coreGreenberet"; 27 repo = "homematicip-rest-api"; 28 rev = version; 29 - sha256 = "sha256-rTTYJ/2R+/FLuL3rTWT7ieixN+Gv9GhwkUaKPfLqUGc="; 30 }; 31 32 propagatedBuildInputs = [ ··· 80 ]; 81 82 meta = with lib; { 83 - description = "Python module for the homematicIP REST API"; 84 - homepage = "https://github.com/coreGreenberet/homematicip-rest-api"; 85 license = with licenses; [ gpl3Only ]; 86 maintainers = with maintainers; [ fab ]; 87 };
··· 17 18 buildPythonPackage rec { 19 pname = "homematicip"; 20 + version = "1.0.4"; 21 format = "setuptools"; 22 23 disabled = pythonOlder "3.6"; 24 25 src = fetchFromGitHub { 26 + owner = "hahn-th"; 27 repo = "homematicip-rest-api"; 28 rev = version; 29 + hash = "sha256-rTTYJ/2R+/FLuL3rTWT7ieixN+Gv9GhwkUaKPfLqUGc="; 30 }; 31 32 propagatedBuildInputs = [ ··· 80 ]; 81 82 meta = with lib; { 83 + description = "Module for the homematicIP REST API"; 84 + homepage = "https://github.com/hahn-th/homematicip-rest-api"; 85 license = with licenses; [ gpl3Only ]; 86 maintainers = with maintainers; [ fab ]; 87 };
+1
pkgs/development/python-modules/howdoi/default.nix
··· 61 "test_multiple_answers" 62 "test_position" 63 "test_unicode_answer" 64 ]; 65 66 pythonImportsCheck = [
··· 61 "test_multiple_answers" 62 "test_position" 63 "test_unicode_answer" 64 + "test_answer_links_using_l_option" 65 ]; 66 67 pythonImportsCheck = [
+3 -3
pkgs/development/python-modules/huawei-lte-api/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "huawei-lte-api"; 13 - version = "1.6"; 14 15 disabled = pythonOlder "3.4"; 16 17 src = fetchFromGitHub { 18 owner = "Salamek"; 19 repo = "huawei-lte-api"; 20 - rev = version; 21 - hash = "sha256-dJWGs5ZFVYp8/3U24eVRMtA7Marpd88GeW8uX+n6nhY="; 22 }; 23 24 postPatch = ''
··· 10 11 buildPythonPackage rec { 12 pname = "huawei-lte-api"; 13 + version = "1.6.1"; 14 15 disabled = pythonOlder "3.4"; 16 17 src = fetchFromGitHub { 18 owner = "Salamek"; 19 repo = "huawei-lte-api"; 20 + rev = "refs/tags/${version}"; 21 + hash = "sha256-ZjSD+/okbFF14YQgCzzH1+FDS+MZQZb1JUINOKdSshs="; 22 }; 23 24 postPatch = ''
+2 -2
pkgs/development/python-modules/injector/default.nix
··· 2 3 buildPythonPackage rec { 4 pname = "injector"; 5 - version = "0.20.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "sha256-DILe3I4TVOj9Iqs9mbiL3e9t7bnHfWwixNids9FYN/U="; 10 }; 11 12 propagatedBuildInputs = [ typing-extensions ];
··· 2 3 buildPythonPackage rec { 4 pname = "injector"; 5 + version = "0.20.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "sha256-hmG0mi+DCc5h46aoK3rLXiJcS96OF9FhDIk6Zw3/Ijo="; 10 }; 11 12 propagatedBuildInputs = [ typing-extensions ];
+2 -2
pkgs/development/python-modules/jupyterlab/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "jupyterlab"; 13 - version = "3.3.4"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.7"; 17 18 src = fetchPypi { 19 inherit pname version; 20 - sha256 = "sha256-4ENVhIs9kaxNlcLjhGoEKbM+nC7ceWaPtPxNIS8eUQc="; 21 }; 22 23 nativeBuildInputs = [
··· 10 11 buildPythonPackage rec { 12 pname = "jupyterlab"; 13 + version = "3.4.3"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.7"; 17 18 src = fetchPypi { 19 inherit pname version; 20 + sha256 = "sha256-4tzEDpQ2bd5d5LGejEPuEzzwQbhS0Bo2JafPKVMtpJ0="; 21 }; 22 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/mayavi/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "mayavi"; 18 - version = "4.7.4"; 19 format = "setuptools"; 20 21 disabled = pythonOlder "3.8"; 22 23 src = fetchPypi { 24 inherit pname version; 25 - sha256 = "ec50e7ec6afb0f9224ad1863d104a0d1ded6c8deb13e720652007aaca2303332"; 26 }; 27 28 postPatch = ''
··· 15 16 buildPythonPackage rec { 17 pname = "mayavi"; 18 + version = "4.8.0"; 19 format = "setuptools"; 20 21 disabled = pythonOlder "3.8"; 22 23 src = fetchPypi { 24 inherit pname version; 25 + sha256 = "sha256-TGBDYdn1+juBvhjVvxTzBlCw7jju1buhbMikQ5QXj2M="; 26 }; 27 28 postPatch = ''
+3 -3
pkgs/development/python-modules/meilisearch/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "meilisearch"; 10 - version = "0.18.3"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; ··· 15 src = fetchFromGitHub { 16 owner = "meilisearch"; 17 repo = "meilisearch-python"; 18 - rev = "v${version}"; 19 - hash = "sha256-Ym3AbIEf8eMSrtP8W1dPXqL0mTVN2bd8hlxdFhW/dkQ="; 20 }; 21 22 propagatedBuildInputs = [
··· 7 8 buildPythonPackage rec { 9 pname = "meilisearch"; 10 + version = "0.19.0"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; ··· 15 src = fetchFromGitHub { 16 owner = "meilisearch"; 17 repo = "meilisearch-python"; 18 + rev = "refs/tags/v${version}"; 19 + hash = "sha256-ky5Z1bu+JFpnSGfzaEB6g/nl/F/QJQGVpgb+Jf/o/tM="; 20 }; 21 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pex/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "pex"; 10 - version = "2.1.95"; 11 format = "flit"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 - hash = "sha256-704uEFlVHUEr0tv5OFZ7LbjY2r3bzX9HaE9GAkE+JvY="; 18 }; 19 20 nativeBuildInputs = [
··· 7 8 buildPythonPackage rec { 9 pname = "pex"; 10 + version = "2.1.97"; 11 format = "flit"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 + hash = "sha256-h2fDyL1spMBjnqTvjj3C3eXFFmgtvX7NyTUo5my6Lk4="; 18 }; 19 20 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/pulumi-aws/default.nix
··· 12 buildPythonPackage rec { 13 pname = "pulumi-aws"; 14 # Version is independant of pulumi's. 15 - version = "5.9.2"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.7"; ··· 21 owner = "pulumi"; 22 repo = "pulumi-aws"; 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-5jeLSTG2HITEUdgQB3B9nQLAaNRliGspKnOgzUscCpU="; 25 }; 26 27 sourceRoot = "${src.name}/sdk/python";
··· 12 buildPythonPackage rec { 13 pname = "pulumi-aws"; 14 # Version is independant of pulumi's. 15 + version = "5.10.0"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.7"; ··· 21 owner = "pulumi"; 22 repo = "pulumi-aws"; 23 rev = "refs/tags/v${version}"; 24 + hash = "sha256-eybcT7pdc0QED3HrHN+jnxZLXoExEZZUEHSoFmhlsHQ="; 25 }; 26 27 sourceRoot = "${src.name}/sdk/python";
+2 -2
pkgs/development/python-modules/pyinsteon/default.nix
··· 16 17 buildPythonPackage rec { 18 pname = "pyinsteon"; 19 - version = "1.1.2"; 20 format = "setuptools"; 21 22 disabled = pythonOlder "3.6"; ··· 25 owner = pname; 26 repo = pname; 27 rev = "refs/tags/${version}"; 28 - hash = "sha256-dt/ZWH8wlB7lATTAYd2nAIZhbrkuCiiHZH4x4dE0YQY="; 29 }; 30 31 propagatedBuildInputs = [
··· 16 17 buildPythonPackage rec { 18 pname = "pyinsteon"; 19 + version = "1.1.3"; 20 format = "setuptools"; 21 22 disabled = pythonOlder "3.6"; ··· 25 owner = pname; 26 repo = pname; 27 rev = "refs/tags/${version}"; 28 + hash = "sha256-CYXsYOqh41qRob2DRxTB6zcc/jcdT9/vWJTRk2LJgWo="; 29 }; 30 31 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pymc/default.nix
··· 16 17 buildPythonPackage rec { 18 pname = "pymc"; 19 - version = "4.0.1"; 20 format = "setuptools"; 21 22 disabled = pythonOlder "3.7"; ··· 25 owner = "pymc-devs"; 26 repo = "pymc"; 27 rev = "refs/tags/v${version}"; 28 - hash = "sha256-muNwq9ZSxbcFNoitP1k8LEjOxJWft9jqci5q2IGu7F8="; 29 }; 30 31 nativeBuildInputs = [
··· 16 17 buildPythonPackage rec { 18 pname = "pymc"; 19 + version = "4.1.2"; 20 format = "setuptools"; 21 22 disabled = pythonOlder "3.7"; ··· 25 owner = "pymc-devs"; 26 repo = "pymc"; 27 rev = "refs/tags/v${version}"; 28 + hash = "sha256-QSM9wQwX5EdU6w8ALDSabTpo89GNIBMEB8hJEp9jQB4="; 29 }; 30 31 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/pytraccar/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "pytraccar"; 13 - version = "0.10.0"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.8"; ··· 19 owner = "ludeeus"; 20 repo = pname; 21 rev = version; 22 - sha256 = "08f7rwvbc1h17lvgv9823ssd3p0vw7yzsg40lbkacgqqiv1hxfzs"; 23 }; 24 25 propagatedBuildInputs = [
··· 10 11 buildPythonPackage rec { 12 pname = "pytraccar"; 13 + version = "0.10.1"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.8"; ··· 19 owner = "ludeeus"; 20 repo = pname; 21 rev = version; 22 + sha256 = "sha256-fqf7sckvq5GebgpDVVSgwHISu4/wntjc/WF9LFlXN2w="; 23 }; 24 25 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pyvex/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "pyvex"; 15 - version = "9.2.9"; 16 format = "pyproject"; 17 18 disabled = pythonOlder "3.6"; 19 20 src = fetchPypi { 21 inherit pname version; 22 - hash = "sha256-QlgfiKQv1kMgGhtasOvuRFrciyFH7rsehbhOUxXSABk="; 23 }; 24 25 propagatedBuildInputs = [
··· 12 13 buildPythonPackage rec { 14 pname = "pyvex"; 15 + version = "9.2.10"; 16 format = "pyproject"; 17 18 disabled = pythonOlder "3.6"; 19 20 src = fetchPypi { 21 inherit pname version; 22 + hash = "sha256-0dUUEhkFedoZLW/HOhJQQgPmfcJbDYtyup4jCZBUhSI="; 23 }; 24 25 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/sentry-sdk/default.nix
··· 46 47 buildPythonPackage rec { 48 pname = "sentry-sdk"; 49 - version = "1.6.0"; 50 format = "setuptools"; 51 52 disabled = pythonOlder "3.7"; ··· 55 owner = "getsentry"; 56 repo = "sentry-python"; 57 rev = version; 58 - hash = "sha256-X831uMlxvcgxQz8xWQZkJOp/fTmF62J95esJY23DZQw="; 59 }; 60 61 propagatedBuildInputs = [
··· 46 47 buildPythonPackage rec { 48 pname = "sentry-sdk"; 49 + version = "1.7.0"; 50 format = "setuptools"; 51 52 disabled = pythonOlder "3.7"; ··· 55 owner = "getsentry"; 56 repo = "sentry-python"; 57 rev = version; 58 + hash = "sha256-Wee4toHLbiwYXMtsxALetAJ+JxxN/DsNPIiZeeWNuI0="; 59 }; 60 61 propagatedBuildInputs = [
+8 -2
pkgs/development/python-modules/trezor/default.nix
··· 24 25 buildPythonPackage rec { 26 pname = "trezor"; 27 - version = "0.13.2"; 28 29 disabled = !isPy3k; 30 31 src = fetchPypi { 32 inherit pname version; 33 - sha256 = "cdb696fd01dad6a0cb23b61ea3a4867bb51cecda5cb2a77366fb6a53bff58ac4"; 34 }; 35 36 nativeBuildInputs = [ installShellFiles ]; ··· 59 disabledTestPaths = [ 60 "tests/test_stellar.py" # requires stellar-sdk 61 ]; 62 63 postFixup = '' 64 mkdir completions
··· 24 25 buildPythonPackage rec { 26 pname = "trezor"; 27 + version = "0.13.3"; 28 29 disabled = !isPy3k; 30 31 src = fetchPypi { 32 inherit pname version; 33 + sha256 = "055d32174d4ecf2353f7622ee44b8e82e3bef78fe40ce5cdbeafc785b422a049"; 34 }; 35 36 nativeBuildInputs = [ installShellFiles ]; ··· 59 disabledTestPaths = [ 60 "tests/test_stellar.py" # requires stellar-sdk 61 ]; 62 + 63 + pythonImportsCheck = [ "trezorlib" ]; 64 + 65 + postCheck = '' 66 + $out/bin/trezorctl --version 67 + ''; 68 69 postFixup = '' 70 mkdir completions
+2 -2
pkgs/development/python-modules/types-decorator/default.nix
··· 5 6 buildPythonPackage rec { 7 pname = "types-decorator"; 8 - version = "5.1.7"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - sha256 = "sha256-srf0f9AcoY+JyMAmSDnZLl95oezAes5Hu5AO/XzQL1k="; 14 }; 15 16 # Modules doesn't have tests
··· 5 6 buildPythonPackage rec { 7 pname = "types-decorator"; 8 + version = "5.1.8"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 inherit pname version; 13 + sha256 = "sha256-DLDMSrbNb5CYHPUwN2vl0BFWyPQjod/xRWu8AlnT45M="; 14 }; 15 16 # Modules doesn't have tests
+2 -2
pkgs/development/python-modules/types-pyyaml/default.nix
··· 5 6 buildPythonPackage rec { 7 pname = "types-pyyaml"; 8 - version = "6.0.8"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 pname = "types-PyYAML"; 13 inherit version; 14 - sha256 = "0f349hmw597f2gcja445fsrlnfzb0dj7fy62g8wcbydlgcvmsjfr"; 15 }; 16 17 # Module doesn't have tests
··· 5 6 buildPythonPackage rec { 7 pname = "types-pyyaml"; 8 + version = "6.0.9"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 pname = "types-PyYAML"; 13 inherit version; 14 + sha256 = "sha256-M651yEuPYf3fDGPpx+VX252xaUrTwu6GKOxe/rtaXps="; 15 }; 16 17 # Module doesn't have tests
+2 -2
pkgs/development/python-modules/types-redis/default.nix
··· 5 6 buildPythonPackage rec { 7 pname = "types-redis"; 8 - version = "4.3.2"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - sha256 = "sha256-oZNQj6poxT3sRcwwUV6rlMMxMlr4oMPIAJX2Dyq22qY="; 14 }; 15 16 # Module doesn't have tests
··· 5 6 buildPythonPackage rec { 7 pname = "types-redis"; 8 + version = "4.3.3"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 inherit pname version; 13 + sha256 = "sha256-064pr/eZk2HJ+XlJi9LiV/ky9ikbh2qsC0S18AEGxuE="; 14 }; 15 16 # Module doesn't have tests
+2 -2
pkgs/development/python-modules/types-requests/default.nix
··· 6 7 buildPythonPackage rec { 8 pname = "types-requests"; 9 - version = "2.28.0"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 inherit pname version; 14 - sha256 = "sha256-mGPRbfuz+lXc2mT6O5ieduiFkDOybB4WI+MEZc/ilNM="; 15 }; 16 17 propagatedBuildInputs = [
··· 6 7 buildPythonPackage rec { 8 pname = "types-requests"; 9 + version = "2.28.1"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 inherit pname version; 14 + sha256 = "sha256-rNjteFCdJ73wTN3MBfcGbf3k0w3X26Z7gIzbEUHWL/4="; 15 }; 16 17 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/types-setuptools/default.nix
··· 5 6 buildPythonPackage rec { 7 pname = "types-setuptools"; 8 - version = "62.6.0"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - sha256 = "sha256-x3oytRZ7ng2Zwfezm39aPsABxxCZMd1jxRZS+eRmPQc="; 14 }; 15 16 # Module doesn't have tests
··· 5 6 buildPythonPackage rec { 7 pname = "types-setuptools"; 8 + version = "62.6.1"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 inherit pname version; 13 + sha256 = "sha256-r/2WijpyGOHJbxgG60V/QCfqyAOzyq3cz5ik5XdrFyQ="; 14 }; 15 16 # Module doesn't have tests
+2 -2
pkgs/development/python-modules/types-toml/default.nix
··· 5 6 buildPythonPackage rec { 7 pname = "types-toml"; 8 - version = "0.10.7"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - sha256 = "sha256-pWf+JhSxd9U3rZmmYa3Jv8jFWkb5XmY3Ck7S3RcTNfk="; 14 }; 15 16 # Module doesn't have tests
··· 5 6 buildPythonPackage rec { 7 pname = "types-toml"; 8 + version = "0.10.8"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 inherit pname version; 13 + sha256 = "sha256-t+fqVyMIsQMNyGw7qCXFIQgUwoJWEuxnnreBT43ZKVo="; 14 }; 15 16 # Module doesn't have tests
+2 -2
pkgs/development/python-modules/yfinance/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "yfinance"; 13 - version = "0.1.72"; 14 15 src = fetchFromGitHub { 16 owner = "ranaroussi"; 17 repo = pname; 18 rev = "refs/tags/${version}"; 19 - sha256 = "sha256-7dA5+PJhuj/KAZoHMxx34yfyxDeiIf6DhufymfvD8Gg="; 20 }; 21 22 propagatedBuildInputs = [
··· 10 11 buildPythonPackage rec { 12 pname = "yfinance"; 13 + version = "0.1.74"; 14 15 src = fetchFromGitHub { 16 owner = "ranaroussi"; 17 repo = pname; 18 rev = "refs/tags/${version}"; 19 + sha256 = "sha256-3YOUdrLCluOuUieBwl15B6WHSXpMoNAjdeNJT3zmTTI="; 20 }; 21 22 propagatedBuildInputs = [
+3 -3
pkgs/development/python-modules/zigpy-znp/default.nix
··· 18 19 buildPythonPackage rec { 20 pname = "zigpy-znp"; 21 - version = "0.8.0"; 22 format = "setuptools"; 23 24 disabled = pythonOlder "3.7"; ··· 26 src = fetchFromGitHub { 27 owner = "zigpy"; 28 repo = pname; 29 - rev = "v${version}"; 30 - sha256 = "sha256-sGwZL2AOCEWO9xl3HPHBGEFQ5NVk6CeuX9lt8ez8MFE="; 31 }; 32 33 propagatedBuildInputs = [
··· 18 19 buildPythonPackage rec { 20 pname = "zigpy-znp"; 21 + version = "0.8.1"; 22 format = "setuptools"; 23 24 disabled = pythonOlder "3.7"; ··· 26 src = fetchFromGitHub { 27 owner = "zigpy"; 28 repo = pname; 29 + rev = "refs/tags/v${version}"; 30 + sha256 = "sha256-GKdhzmSQZ+D7o9OJZ5880mRI1mIcckW+dY5DnP7zIuo="; 31 }; 32 33 propagatedBuildInputs = [
+9 -12
pkgs/development/tools/analysis/frama-c/default.nix
··· 4 , gdk-pixbuf, wrapGAppsHook 5 }: 6 7 - let why3_1_5 = why3; in 8 - let why3 = why3_1_5.overrideAttrs (o: rec { 9 - version = "1.4.1"; 10 - src = fetchurl { 11 - url = "https://why3.gitlabpages.inria.fr/releases/${o.pname}-${version}.tar.gz"; 12 - sha256 = "sha256:1rqyypzlvagrn43ykl0c5wxyvnry5fl1ykn3xcvlzgghk96yq3jq"; 13 - }; 14 - }); in 15 - 16 let 17 mkocamlpath = p: "${p}/lib/ocaml/${ocamlPackages.ocaml.version}/site-lib"; 18 runtimeDeps = with ocamlPackages; [ ··· 24 mlgmpidl 25 num 26 ocamlgraph 27 stdlib-shims 28 why3 29 re 30 seq 31 sexplib 32 sexplib0 ··· 40 41 stdenv.mkDerivation rec { 42 pname = "frama-c"; 43 - version = "24.0"; 44 - slang = "Chromium"; 45 46 src = fetchurl { 47 url = "https://frama-c.com/download/frama-c-${version}-${slang}.tar.gz"; 48 - sha256 = "sha256:0x1xgip50jdz1phsb9rzwf2ra8lshn1hmd9g967xia402wrg3sjf"; 49 }; 50 51 preConfigure = lib.optionalString stdenv.cc.isClang "configureFlagsArray=(\"--with-cpp=clang -E -C\")"; 52 53 nativeBuildInputs = [ autoconf wrapGAppsHook ]; 54 55 buildInputs = with ocamlPackages; [ 56 ncurses ocaml findlib ltl2ba ocamlgraph yojson menhirLib camlzip 57 lablgtk3 lablgtk3-sourceview3 coq graphviz zarith apron why3 mlgmpidl doxygen 58 gdk-pixbuf 59 ]; 60
··· 4 , gdk-pixbuf, wrapGAppsHook 5 }: 6 7 let 8 mkocamlpath = p: "${p}/lib/ocaml/${ocamlPackages.ocaml.version}/site-lib"; 9 runtimeDeps = with ocamlPackages; [ ··· 15 mlgmpidl 16 num 17 ocamlgraph 18 + ppx_deriving 19 + ppx_import 20 stdlib-shims 21 why3 22 re 23 + result 24 seq 25 sexplib 26 sexplib0 ··· 34 35 stdenv.mkDerivation rec { 36 pname = "frama-c"; 37 + version = "25.0"; 38 + slang = "Manganese"; 39 40 src = fetchurl { 41 url = "https://frama-c.com/download/frama-c-${version}-${slang}.tar.gz"; 42 + sha256 = "sha256-Ii3O/NJyBTVAv1ts/zae/Ee4HCjzYOthZmnD8wqLwp8="; 43 }; 44 45 preConfigure = lib.optionalString stdenv.cc.isClang "configureFlagsArray=(\"--with-cpp=clang -E -C\")"; 46 47 + postConfigure = "patchShebangs src/plugins/value/gen-api.sh"; 48 + 49 nativeBuildInputs = [ autoconf wrapGAppsHook ]; 50 51 buildInputs = with ocamlPackages; [ 52 ncurses ocaml findlib ltl2ba ocamlgraph yojson menhirLib camlzip 53 lablgtk3 lablgtk3-sourceview3 coq graphviz zarith apron why3 mlgmpidl doxygen 54 + ppx_deriving ppx_import 55 gdk-pixbuf 56 ]; 57
+2 -2
pkgs/development/tools/continuous-integration/drone-runner-docker/default.nix
··· 2 3 buildGoModule rec { 4 pname = "drone-runner-docker"; 5 - version = "1.8.0"; 6 7 src = fetchFromGitHub { 8 owner = "drone-runners"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-F04h9kwrVvQEenzw1QTeNnQun9tHzu8HT24gNEMcRro="; 12 }; 13 14 vendorSha256 = "sha256-E18ykjQc1eoHpviYok+NiLaeH01UMQmigl9JDwtR+zo=";
··· 2 3 buildGoModule rec { 4 pname = "drone-runner-docker"; 5 + version = "1.8.1"; 6 7 src = fetchFromGitHub { 8 owner = "drone-runners"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-3SbvnW+mCwaBCF77rAnDMqZRHX9wDCjXvFGq9w0E5Qw="; 12 }; 13 14 vendorSha256 = "sha256-E18ykjQc1eoHpviYok+NiLaeH01UMQmigl9JDwtR+zo=";
+5 -12
pkgs/development/tools/misc/d-spy/default.nix
··· 1 { stdenv 2 , lib 3 , desktop-file-utils 4 - , fetchpatch 5 , fetchurl 6 , glib 7 , gtk4 8 , libadwaita 9 , meson ··· 15 16 stdenv.mkDerivation rec { 17 pname = "d-spy"; 18 - version = "1.2.0"; 19 20 outputs = [ "out" "lib" "dev" ]; 21 22 src = fetchurl { 23 url = "mirror://gnome/sources/dspy/${lib.versions.majorMinor version}/dspy-${version}.tar.xz"; 24 - sha256 = "XKL0z00w0va9m1OfuVq5YJyE1jzeynBxb50jc+O99tQ="; 25 }; 26 27 - patches = [ 28 - # Remove pointless dependencies 29 - # https://gitlab.gnome.org/GNOME/d-spy/-/merge_requests/6 30 - (fetchpatch { 31 - url = "https://gitlab.gnome.org/GNOME/d-spy/-/commit/5a0ec8d53d006e95e93c6d6e32a381eb248b12a1.patch"; 32 - sha256 = "jalfdAXcH8GZ50qb2peG+2841cGan4EhwN88z5Ewf+k="; 33 - }) 34 - ]; 35 - 36 nativeBuildInputs = [ 37 meson 38 ninja 39 pkg-config 40 desktop-file-utils 41 wrapGAppsHook4 42 ]; 43 44 buildInputs = [
··· 1 { stdenv 2 , lib 3 , desktop-file-utils 4 , fetchurl 5 , glib 6 + , gettext 7 , gtk4 8 , libadwaita 9 , meson ··· 15 16 stdenv.mkDerivation rec { 17 pname = "d-spy"; 18 + version = "1.2.1"; 19 20 outputs = [ "out" "lib" "dev" ]; 21 22 src = fetchurl { 23 url = "mirror://gnome/sources/dspy/${lib.versions.majorMinor version}/dspy-${version}.tar.xz"; 24 + sha256 = "TjnA1to687eJASJd0VEjOFe+Ihtfs62CwdsVhyNrZlI="; 25 }; 26 27 nativeBuildInputs = [ 28 meson 29 ninja 30 pkg-config 31 desktop-file-utils 32 wrapGAppsHook4 33 + gettext 34 + glib 35 ]; 36 37 buildInputs = [
+3 -3
pkgs/development/tools/rust/rust-analyzer/default.nix
··· 12 13 rustPlatform.buildRustPackage rec { 14 pname = "rust-analyzer-unwrapped"; 15 - version = "2022-06-13"; 16 - cargoSha256 = "sha256-pNYhX6Jh/NPIVf7labyDKxk8siHFABMSsJ3ZVBWowUo="; 17 18 src = fetchFromGitHub { 19 owner = "rust-lang"; 20 repo = "rust-analyzer"; 21 rev = version; 22 - sha256 = "sha256-IArOOdvfz+864Rs7fgHolfYfcjYTlvWebeEsJgnfyqI="; 23 }; 24 25 patches = [
··· 12 13 rustPlatform.buildRustPackage rec { 14 pname = "rust-analyzer-unwrapped"; 15 + version = "2022-07-11"; 16 + cargoSha256 = "sha256-XpLXx3f+BC8+O4Df/PJ4LWuLxX14e/ga+aFu/JxVdpg="; 17 18 src = fetchFromGitHub { 19 owner = "rust-lang"; 20 repo = "rust-analyzer"; 21 rev = version; 22 + sha256 = "sha256-HU1+Rql35ouZe0lx1ftCMDDwC9lqN3COudvMe+8XIx0="; 23 }; 24 25 patches = [
+5 -6
pkgs/development/tools/skopeo/default.nix
··· 15 16 buildGoModule rec { 17 pname = "skopeo"; 18 - version = "1.8.0"; 19 20 src = fetchFromGitHub { 21 rev = "v${version}"; 22 owner = "containers"; 23 repo = "skopeo"; 24 - sha256 = "sha256-LZN8v3pk5OvRdnhAHOa76QASRL8IPbMIFoH6ERu5r6E="; 25 }; 26 27 outputs = [ "out" "man" ]; ··· 38 buildPhase = '' 39 runHook preBuild 40 patchShebangs . 41 - make bin/skopeo docs 42 runHook postBuild 43 ''; 44 45 installPhase = '' 46 runHook preInstall 47 - install -Dm755 bin/skopeo -t $out/bin 48 - installManPage docs/*.[1-9] 49 - installShellCompletion --bash completions/bash/skopeo 50 '' + lib.optionalString stdenv.isLinux '' 51 wrapProgram $out/bin/skopeo \ 52 --prefix PATH : ${lib.makeBinPath [ fuse-overlayfs ]}
··· 15 16 buildGoModule rec { 17 pname = "skopeo"; 18 + version = "1.9.0"; 19 20 src = fetchFromGitHub { 21 rev = "v${version}"; 22 owner = "containers"; 23 repo = "skopeo"; 24 + sha256 = "sha256-z+jrDbXtcx4dH5n4X3WDHSIzmRP09cpO/WIAU3Ewas0="; 25 }; 26 27 outputs = [ "out" "man" ]; ··· 38 buildPhase = '' 39 runHook preBuild 40 patchShebangs . 41 + make bin/skopeo completions docs 42 runHook postBuild 43 ''; 44 45 installPhase = '' 46 runHook preInstall 47 + PREFIX=$out make install-binary install-completions 48 + PREFIX=$man make install-docs 49 '' + lib.optionalString stdenv.isLinux '' 50 wrapProgram $out/bin/skopeo \ 51 --prefix PATH : ${lib.makeBinPath [ fuse-overlayfs ]}
+3 -3
pkgs/development/tools/zls/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "zls"; 5 - version = "unstable-2021-06-06"; 6 7 src = fetchFromGitHub { 8 owner = "zigtools"; 9 repo = pname; 10 - rev = "39d87188647bd8c8eed304ee18f2dd1df6942f60"; 11 - sha256 = "sha256-22N508sVkP1OLySAijhtTPzk2fGf+FVnX9LTYRbRpB4="; 12 fetchSubmodules = true; 13 }; 14
··· 2 3 stdenv.mkDerivation rec { 4 pname = "zls"; 5 + version = "0.9.0"; 6 7 src = fetchFromGitHub { 8 owner = "zigtools"; 9 repo = pname; 10 + rev = version; 11 + sha256 = "sha256-MVo21qNCZop/HXBqrPcosGbRY+W69KNCc1DfnH47GsI="; 12 fetchSubmodules = true; 13 }; 14
+2 -2
pkgs/development/web/lucky-cli/default.nix
··· 2 3 crystal.buildCrystalPackage rec { 4 pname = "lucky-cli"; 5 - version = "0.29.0"; 6 7 src = fetchFromGitHub { 8 owner = "luckyframework"; 9 repo = "lucky_cli"; 10 rev = "v${version}"; 11 - sha256 = "sha256-OmvKd35jR003qQnA/NBI4MjGRw044bYUYa59RKbz+lI="; 12 }; 13 14 # the integration tests will try to clone a remote repos
··· 2 3 crystal.buildCrystalPackage rec { 4 pname = "lucky-cli"; 5 + version = "0.30.0"; 6 7 src = fetchFromGitHub { 8 owner = "luckyframework"; 9 repo = "lucky_cli"; 10 rev = "v${version}"; 11 + hash = "sha256-fgrfVqRcb8xdvZ33XW3lBwR1GhjF/WeAglrPH2Fw31I="; 12 }; 13 14 # the integration tests will try to clone a remote repos
+5 -1
pkgs/development/web/lucky-cli/shard.lock
··· 2 shards: 3 ameba: 4 git: https://github.com/crystal-ameba/ameba.git 5 - version: 0.14.3 6 7 lucky_task: 8 git: https://github.com/luckyframework/lucky_task.git 9 version: 0.1.1 10 11 teeplate: 12 git: https://github.com/luckyframework/teeplate.git
··· 2 shards: 3 ameba: 4 git: https://github.com/crystal-ameba/ameba.git 5 + version: 1.0.0 6 7 lucky_task: 8 git: https://github.com/luckyframework/lucky_task.git 9 version: 0.1.1 10 + 11 + nox: 12 + git: https://github.com/matthewmcgarvey/nox.git 13 + version: 0.2.0 14 15 teeplate: 16 git: https://github.com/luckyframework/teeplate.git
+10 -8
pkgs/development/web/lucky-cli/shards.nix
··· 1 { 2 ameba = { 3 - owner = "crystal-ameba"; 4 - repo = "ameba"; 5 - rev = "v0.14.3"; 6 - sha256 = "1cfr95xi6hsyxw1wlrh571hc775xhwmssk3k14i8b7dgbwfmm5x1"; 7 }; 8 lucky_task = { 9 - owner = "luckyframework"; 10 - repo = "lucky_task"; 11 rev = "v0.1.1"; 12 sha256 = "0w0rnf22pvj3lp5z8c4sshzwhqgwpbjpm7nry9mf0iz3fa0v48f7"; 13 }; 14 teeplate = { 15 - owner = "luckyframework"; 16 - repo = "teeplate"; 17 rev = "v0.8.5"; 18 sha256 = "1kr05qrp674rph1324wry57gzvgvcvlz0w27brlvdgd3gi4s8sdj"; 19 };
··· 1 { 2 ameba = { 3 + url = "https://github.com/crystal-ameba/ameba.git"; 4 + rev = "v1.0.0"; 5 + sha256 = "01cgapdpk8dg7sdgnq6ql42g3kv5z2fmsc90z07d9zvjp9vs2idp"; 6 }; 7 lucky_task = { 8 + url = "https://github.com/luckyframework/lucky_task.git"; 9 rev = "v0.1.1"; 10 sha256 = "0w0rnf22pvj3lp5z8c4sshzwhqgwpbjpm7nry9mf0iz3fa0v48f7"; 11 }; 12 + nox = { 13 + url = "https://github.com/matthewmcgarvey/nox.git"; 14 + rev = "v0.2.0"; 15 + sha256 = "041wh7nbi8jxg314p5s4080ll9ywc48knpxmrzwj5h4rgmk7g231"; 16 + }; 17 teeplate = { 18 + url = "https://github.com/luckyframework/teeplate.git"; 19 rev = "v0.8.5"; 20 sha256 = "1kr05qrp674rph1324wry57gzvgvcvlz0w27brlvdgd3gi4s8sdj"; 21 };
+2 -2
pkgs/games/fheroes2/default.nix
··· 7 8 stdenv.mkDerivation rec { 9 pname = "fheroes2"; 10 - version = "0.9.16"; 11 12 src = fetchFromGitHub { 13 owner = "ihhub"; 14 repo = "fheroes2"; 15 rev = version; 16 - sha256 = "sha256-avN7InwC6YOWSRjV15HOKdAU8azZiFUfT6JjwfDAdCs="; 17 }; 18 19 buildInputs = [ gettext libpng SDL2 SDL2_image SDL2_mixer SDL2_ttf zlib ];
··· 7 8 stdenv.mkDerivation rec { 9 pname = "fheroes2"; 10 + version = "0.9.17"; 11 12 src = fetchFromGitHub { 13 owner = "ihhub"; 14 repo = "fheroes2"; 15 rev = version; 16 + sha256 = "sha256-mitkB7BDqqDbWa+zhcg66dh/SQd6XuUjl/kLWob9zwI="; 17 }; 18 19 buildInputs = [ gettext libpng SDL2 SDL2_image SDL2_mixer SDL2_ttf zlib ];
+2
pkgs/games/steam/fhsenv.nix
··· 195 SDL2_ttf 196 SDL2_mixer 197 libappindicator-gtk2 198 libcaca 199 libcanberra 200 libgcrypt
··· 195 SDL2_ttf 196 SDL2_mixer 197 libappindicator-gtk2 198 + libdbusmenu-gtk2 199 + libindicator-gtk2 200 libcaca 201 libcanberra 202 libgcrypt
+3 -3
pkgs/misc/pylode/default.nix
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "pylode"; 8 - version = "2.12.0"; 9 format = "setuptools"; 10 11 disabled = python3.pythonOlder "3.6"; ··· 13 src = fetchFromGitHub { 14 owner = "RDFLib"; 15 repo = pname; 16 - rev = version; 17 - sha256 = "sha256-X/YiJduAJNiceIrlCFwD2PFiMn3HVlzr9NzyDvYcql8="; 18 }; 19 20 propagatedBuildInputs = with python3.pkgs; [
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "pylode"; 8 + version = "2.13.3"; 9 format = "setuptools"; 10 11 disabled = python3.pythonOlder "3.6"; ··· 13 src = fetchFromGitHub { 14 owner = "RDFLib"; 15 repo = pname; 16 + rev = "refs/tags/${version}"; 17 + sha256 = "sha256-AtqkxnpEL+580S/iKCaRcsQO6LLYhkJxyNx6fi3atbE="; 18 }; 19 20 propagatedBuildInputs = with python3.pkgs; [
+5 -5
pkgs/os-specific/linux/kernel/zen-kernels.nix
··· 4 # comments with variant added for update script 5 # ./update-zen.py zen 6 zenVariant = { 7 - version = "5.18.10"; #zen 8 suffix = "zen1"; #zen 9 - sha256 = "0kqzs3g9w1sfin61sapc403pc65acsy18qk8ldkhzhjzv90fw4im"; #zen 10 isLqx = false; 11 }; 12 # ./update-zen.py lqx 13 lqxVariant = { 14 - version = "5.18.10"; #lqx 15 suffix = "lqx1"; #lqx 16 - sha256 = "0b666lwqhiydkikca2x55ljgpw9sba8r7jvcvp6nghm4yf3a11mp"; #lqx 17 isLqx = true; 18 }; 19 zenKernelsFor = { version, suffix, sha256, isLqx }: buildLinux (args // { ··· 32 33 extraMeta = { 34 branch = lib.versions.majorMinor version + "/master"; 35 - maintainers = with lib.maintainers; [ atemu andresilva psydvl ]; 36 description = "Built using the best configuration and kernel sources for desktop, multimedia, and gaming workloads." + 37 lib.optionalString isLqx " (Same as linux_zen but less aggressive release schedule)"; 38 };
··· 4 # comments with variant added for update script 5 # ./update-zen.py zen 6 zenVariant = { 7 + version = "5.18.11"; #zen 8 suffix = "zen1"; #zen 9 + sha256 = "11dp4wxn4ilndzpp16aazf7569w3r46qh31f5lhbryqwfpa8vzb1"; #zen 10 isLqx = false; 11 }; 12 # ./update-zen.py lqx 13 lqxVariant = { 14 + version = "5.18.11"; #lqx 15 suffix = "lqx1"; #lqx 16 + sha256 = "0q0n88sszq6kpy3s0n0a8nd0rxa7xh4hklkbvv8z2r43l8d4zazr"; #lqx 17 isLqx = true; 18 }; 19 zenKernelsFor = { version, suffix, sha256, isLqx }: buildLinux (args // { ··· 32 33 extraMeta = { 34 branch = lib.versions.majorMinor version + "/master"; 35 + maintainers = with lib.maintainers; [ atemu andresilva pedrohlc psydvl ]; 36 description = "Built using the best configuration and kernel sources for desktop, multimedia, and gaming workloads." + 37 lib.optionalString isLqx " (Same as linux_zen but less aggressive release schedule)"; 38 };
+3 -3
pkgs/servers/web-apps/netbox/default.nix
··· 17 in 18 py.pkgs.buildPythonApplication rec { 19 pname = "netbox"; 20 - version = "3.2.1"; 21 22 src = fetchFromGitHub { 23 owner = "netbox-community"; 24 repo = pname; 25 - rev = "v${version}"; 26 - sha256 = "sha256-iA0KIgaHQh0OsN/tXmTATIlvnf0aLRdjeQ6VkiR9VJ4="; 27 }; 28 29 format = "other";
··· 17 in 18 py.pkgs.buildPythonApplication rec { 19 pname = "netbox"; 20 + version = "3.2.3"; 21 22 src = fetchFromGitHub { 23 owner = "netbox-community"; 24 repo = pname; 25 + rev = "refs/tags/v${version}"; 26 + sha256 = "sha256-mMTZKlGVjFPGJI4Ky+V3lPuMYS7tJb+zeDEzMeXdGoU="; 27 }; 28 29 format = "other";
+19 -9
pkgs/tools/X11/ffcast/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, perl, libX11 }: 2 3 stdenv.mkDerivation rec { 4 pname = "ffcast"; 5 version = "2.5.0"; 6 7 src = fetchFromGitHub { 8 - owner = "lolilolicon"; 9 repo = "FFcast"; 10 rev = version; 11 sha256 = "047y32bixhc8ksr98vwpgd0k1xxgsv2vs0n3kc2xdac4krc9454h"; 12 }; 13 14 - nativeBuildInputs = [ autoreconfHook ]; 15 - buildInputs = [ perl libX11 ]; 16 17 configureFlags = [ "--disable-xrectsel" ]; 18 19 - postBuild = '' 20 - make install 21 ''; 22 23 meta = with lib; { 24 description = "Run commands on rectangular screen regions"; 25 - homepage = "https://github.com/lolilolicon/FFcast"; 26 - license = licenses.gpl3; 27 - maintainers = [ maintainers.guyonvarch ]; 28 platforms = platforms.linux; 29 }; 30 }
··· 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, makeWrapper, perl 2 + , ffmpeg, imagemagick, xdpyinfo, xprop, xrectsel, xwininfo 3 + }: 4 5 stdenv.mkDerivation rec { 6 pname = "ffcast"; 7 version = "2.5.0"; 8 9 src = fetchFromGitHub { 10 + owner = "ropery"; 11 repo = "FFcast"; 12 rev = version; 13 sha256 = "047y32bixhc8ksr98vwpgd0k1xxgsv2vs0n3kc2xdac4krc9454h"; 14 }; 15 16 + nativeBuildInputs = [ autoreconfHook makeWrapper perl /*for pod2man*/ ]; 17 18 configureFlags = [ "--disable-xrectsel" ]; 19 20 + postInstall = let 21 + binPath = lib.makeBinPath [ 22 + ffmpeg 23 + imagemagick 24 + xdpyinfo 25 + xprop 26 + xrectsel 27 + xwininfo 28 + ]; 29 + in '' 30 + wrapProgram $out/bin/ffcast --prefix PATH : ${binPath} 31 ''; 32 33 meta = with lib; { 34 description = "Run commands on rectangular screen regions"; 35 + homepage = "https://github.com/ropery/FFcast"; 36 + license = licenses.gpl3Plus; 37 + maintainers = with maintainers; [ sikmir ]; 38 platforms = platforms.linux; 39 }; 40 }
+4 -8
pkgs/tools/X11/xrectsel/default.nix
··· 5 version = "0.3.2"; 6 7 src = fetchFromGitHub { 8 - owner = "lolilolicon"; 9 repo = "xrectsel"; 10 rev = version; 11 sha256 = "0prl4ky3xzch6xcb673mcixk998d40ngim5dqc5374b1ls2r6n7l"; ··· 13 14 nativeBuildInputs = [ autoreconfHook ]; 15 buildInputs = [ libX11 ]; 16 - 17 - postBuild = '' 18 - make install 19 - ''; 20 21 meta = with lib; { 22 description = "Print the geometry of a rectangular screen region"; 23 - homepage = "https://github.com/lolilolicon/xrectsel"; 24 - license = licenses.gpl3; 25 - maintainers = [ maintainers.guyonvarch ]; 26 platforms = platforms.linux; 27 }; 28 }
··· 5 version = "0.3.2"; 6 7 src = fetchFromGitHub { 8 + owner = "ropery"; 9 repo = "xrectsel"; 10 rev = version; 11 sha256 = "0prl4ky3xzch6xcb673mcixk998d40ngim5dqc5374b1ls2r6n7l"; ··· 13 14 nativeBuildInputs = [ autoreconfHook ]; 15 buildInputs = [ libX11 ]; 16 17 meta = with lib; { 18 description = "Print the geometry of a rectangular screen region"; 19 + homepage = "https://github.com/ropery/xrectsel"; 20 + license = licenses.gpl3Plus; 21 + maintainers = with maintainers; [ sikmir ]; 22 platforms = platforms.linux; 23 }; 24 }
+3 -3
pkgs/tools/admin/syft/default.nix
··· 2 3 buildGoModule rec { 4 pname = "syft"; 5 - version = "0.50.0"; 6 7 src = fetchFromGitHub { 8 owner = "anchore"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-FQHmlASGBJOCAde0k3yuQBj8ZGsmi2jPWbq26NgXOxU="; 12 # populate values that require us to use git. By doing this in postFetch we 13 # can delete .git afterwards and maintain better reproducibility of the src. 14 leaveDotGit = true; ··· 20 find "$out" -name .git -print0 | xargs -0 rm -rf 21 ''; 22 }; 23 - vendorSha256 = "sha256-lnI2Y6GcxR+LiR8Us4j+8GbSYyXwvpiWqacWneGrMAE="; 24 25 nativeBuildInputs = [ installShellFiles ]; 26
··· 2 3 buildGoModule rec { 4 pname = "syft"; 5 + version = "0.51.0"; 6 7 src = fetchFromGitHub { 8 owner = "anchore"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-ISmUCu+SiY2hCf6MoIBolstMIgl5g/kGpmBuOVLoybY="; 12 # populate values that require us to use git. By doing this in postFetch we 13 # can delete .git afterwards and maintain better reproducibility of the src. 14 leaveDotGit = true; ··· 20 find "$out" -name .git -print0 | xargs -0 rm -rf 21 ''; 22 }; 23 + vendorSha256 = "sha256-d31LHkxSyO0QwA5FXX2Zfzj0ctat/Lqb5yObTrauJUg="; 24 25 nativeBuildInputs = [ installShellFiles ]; 26
+3 -3
pkgs/tools/admin/trivy/default.nix
··· 6 7 buildGoModule rec { 8 pname = "trivy"; 9 - version = "0.29.1"; 10 11 src = fetchFromGitHub { 12 owner = "aquasecurity"; 13 repo = pname; 14 rev = "v${version}"; 15 - sha256 = "sha256-L1MjPgypKWVTdR16grloRY1JoJ6giXqihsWFa8yWXd0="; 16 }; 17 - vendorSha256 = "sha256-wM8OOOVw8Pb37/JMpz0AWbpJyHeDBQ0+DO15AiDduUU="; 18 19 excludedPackages = "misc"; 20
··· 6 7 buildGoModule rec { 8 pname = "trivy"; 9 + version = "0.29.2"; 10 11 src = fetchFromGitHub { 12 owner = "aquasecurity"; 13 repo = pname; 14 rev = "v${version}"; 15 + sha256 = "sha256-IZ94kYnZ1iNX4sgYF/XvRNvycXJ4fNmRwFgSpYcSopU="; 16 }; 17 + vendorSha256 = "sha256-C1dOeVt+ocqj3s3tSXn8B/vHTRRWj8XU5RWmlQ0lZdA="; 18 19 excludedPackages = "misc"; 20
+2 -2
pkgs/tools/graphics/agi/default.nix
··· 14 15 stdenv.mkDerivation rec { 16 pname = "agi"; 17 - version = "3.1.0-dev-20220314"; 18 19 src = fetchzip { 20 url = "https://github.com/google/agi-dev-releases/releases/download/v${version}/agi-${version}-linux.zip"; 21 - sha256 = "sha256-j/ozkIoRM+G7fi0qBG8UGKPtrn6DR6KNK0Hc53dxsMw="; 22 }; 23 24 nativeBuildInputs = [
··· 14 15 stdenv.mkDerivation rec { 16 pname = "agi"; 17 + version = "3.1.0-dev-20220627"; 18 19 src = fetchzip { 20 url = "https://github.com/google/agi-dev-releases/releases/download/v${version}/agi-${version}-linux.zip"; 21 + sha256 = "sha256-gJ7vz95KqmTQp+sf1q99Sk7aYooLHVAyYliKzfM/fWU="; 22 }; 23 24 nativeBuildInputs = [
+14 -68
pkgs/tools/graphics/gmic-qt/default.nix
··· 1 { lib 2 , mkDerivation 3 - , fetchurl 4 , variant ? "standalone" 5 , fetchFromGitHub 6 , cmake 7 , pkg-config 8 , opencv3 9 , openexr 10 , graphicsmagick ··· 16 , curl 17 , krita ? null 18 , gimp ? null 19 , qtbase 20 , qttools 21 , writeShellScript ··· 56 57 mkDerivation rec { 58 pname = "gmic-qt${lib.optionalString (variant != "standalone") "-${variant}"}"; 59 - version = "3.0.0"; 60 61 - gmic-community = fetchFromGitHub { 62 - owner = "dtschump"; 63 - repo = "gmic-community"; 64 - rev = "df23b08bc52767762f0e38d040cd8ffeea4b865e"; 65 - sha256 = "euk5RsFPBgx2czAukPRdi/O4ahgXO8J8VJdiGHNge5M="; 66 - }; 67 - 68 - CImg = fetchFromGitHub { 69 - owner = "dtschump"; 70 - repo = "CImg"; 71 - rev = "v.${version}"; 72 - sha256 = "dC4VuWTz0uyFxLjBQ+2ggndHaCErcoI7tJMfkqbWmeg="; 73 - }; 74 - 75 - gmic_stdlib = fetchurl { 76 - name = "gmic_stdlib.h"; 77 - url = "http://gmic.eu/gmic_stdlib${lib.replaceStrings ["."] [""] version}.h"; 78 - sha256 = "CAYSxw5NCmE29hie1/J1csBcdQvIrmZ/+mNMl0sLLGI="; 79 - }; 80 - 81 - gmic = fetchFromGitHub { 82 - owner = "dtschump"; 83 - repo = "gmic"; 84 - rev = "v.${version}"; 85 - sha256 = "PyeJmjOqjbHlZ1Xl3IpoOD6oZEcUrHNHqF7Ft1RZDL4="; 86 - }; 87 - 88 - gmic_qt = fetchFromGitHub { 89 owner = "c-koi"; 90 repo = "gmic-qt"; 91 rev = "v.${version}"; 92 - sha256 = "nENXumOArRAHENqnBUjM7m+I5hf/WAFTVfm6cJgnv+0="; 93 }; 94 95 nativeBuildInputs = [ 96 cmake 97 pkg-config 98 ]; 99 100 buildInputs = [ 101 qtbase 102 qttools 103 fftw ··· 113 114 cmakeFlags = [ 115 "-DGMIC_QT_HOST=${if variant == "standalone" then "none" else variant}" 116 ]; 117 118 - unpackPhase = '' 119 - cp -r ${gmic} gmic 120 - ln -s ${gmic-community} gmic-community 121 - cp -r ${gmic_qt} gmic_qt 122 - chmod -R +w gmic gmic_qt 123 - ln -s ${CImg} CImg 124 - 125 - cp ${gmic_stdlib} gmic/src/gmic_stdlib.h 126 - 127 - cd gmic_qt 128 ''; 129 130 postFixup = lib.optionalString (variant == "gimp") '' 131 echo "wrapping $out/${gimp.targetPluginDir}/gmic_gimp_qt/gmic_gimp_qt" 132 wrapQtApp "$out/${gimp.targetPluginDir}/gmic_gimp_qt/gmic_gimp_qt" 133 ''; 134 - 135 - passthru = { 136 - updateScript = writeShellScript "${pname}-update-script" '' 137 - set -o errexit 138 - PATH=${lib.makeBinPath [ common-updater-scripts curl gnugrep gnused coreutils jq ]} 139 - 140 - latestVersion=$(curl 'https://gmic.eu/files/source/' | grep -E 'gmic_[^"]+\.tar\.gz' | sed -E 's/.+<a href="gmic_([^"]+)\.tar\.gz".+/\1/g' | sort --numeric-sort --reverse | head -n1) 141 - 142 - if [[ "${version}" = "$latestVersion" ]]; then 143 - echo "The new version same as the old version." 144 - exit 0 145 - fi 146 - 147 - # gmic-community is not versioned so let’s just update to master. 148 - communityLatestCommit=$(curl "https://api.github.com/repos/dtschump/gmic-community/commits/master") 149 - communityLatestSha=$(echo "$communityLatestCommit" | jq .sha --raw-output) 150 - communityLatestDate=$(echo "$communityLatestCommit" | jq .commit.committer.date --raw-output | sed 's/T.\+//') 151 - update-source-version --source-key=gmic-community "gmic-qt" "unstable-$communityLatestDate" --rev="$communityLatestSha" 152 - 153 - for component in CImg gmic_stdlib gmic gmic_qt; do 154 - # The script will not perform an update when the version attribute is up to date from previous platform run 155 - # We need to clear it before each run 156 - update-source-version "--source-key=$component" "gmic-qt" 0 "$(printf '0%.0s' {1..64})" 157 - update-source-version "--source-key=$component" "gmic-qt" $latestVersion 158 - done 159 - ''; 160 - }; 161 162 meta = with lib; { 163 description = variants.${variant}.description;
··· 1 { lib 2 , mkDerivation 3 , variant ? "standalone" 4 , fetchFromGitHub 5 , cmake 6 , pkg-config 7 + , ninja 8 , opencv3 9 , openexr 10 , graphicsmagick ··· 16 , curl 17 , krita ? null 18 , gimp ? null 19 + , gmic 20 + , cimg 21 , qtbase 22 , qttools 23 , writeShellScript ··· 58 59 mkDerivation rec { 60 pname = "gmic-qt${lib.optionalString (variant != "standalone") "-${variant}"}"; 61 + version = "3.1.5"; 62 63 + src = fetchFromGitHub { 64 owner = "c-koi"; 65 repo = "gmic-qt"; 66 rev = "v.${version}"; 67 + sha256 = "rSBdh6jhiVZogZADEKn3g7bkGPnWWOEnRF0jNCe1BCk="; 68 }; 69 70 nativeBuildInputs = [ 71 cmake 72 pkg-config 73 + ninja 74 ]; 75 76 buildInputs = [ 77 + gmic 78 + cimg 79 qtbase 80 qttools 81 fftw ··· 91 92 cmakeFlags = [ 93 "-DGMIC_QT_HOST=${if variant == "standalone" then "none" else variant}" 94 + "-DENABLE_SYSTEM_GMIC:BOOL=ON" 95 ]; 96 97 + postPatch = '' 98 + patchShebangs \ 99 + translations/filters/csv2ts.sh \ 100 + translations/lrelease.sh 101 ''; 102 103 postFixup = lib.optionalString (variant == "gimp") '' 104 echo "wrapping $out/${gimp.targetPluginDir}/gmic_gimp_qt/gmic_gimp_qt" 105 wrapQtApp "$out/${gimp.targetPluginDir}/gmic_gimp_qt/gmic_gimp_qt" 106 ''; 107 108 meta = with lib; { 109 description = variants.${variant}.description;
+56 -5
pkgs/tools/graphics/gmic/default.nix
··· 1 - { lib, stdenv 2 , fetchurl 3 , cmake 4 , ninja ··· 6 , opencv 7 , openexr 8 , graphicsmagick 9 , fftw 10 , zlib 11 , libjpeg 12 , libtiff 13 , libpng 14 }: 15 16 stdenv.mkDerivation rec { 17 pname = "gmic"; 18 - version = "3.0.0"; 19 20 outputs = [ "out" "lib" "dev" "man" ]; 21 22 - src = fetchurl { 23 - url = "https://gmic.eu/files/source/gmic_${version}.tar.gz"; 24 - sha256 = "sha256-PwVruebb8GdK9Mjc5Z9BmBchh2Yvf7s2zGPryMG3ESA="; 25 }; 26 27 nativeBuildInputs = [ ··· 31 ]; 32 33 buildInputs = [ 34 fftw 35 zlib 36 libjpeg ··· 45 "-DBUILD_LIB_STATIC=OFF" 46 "-DENABLE_CURL=OFF" 47 "-DENABLE_DYNAMIC_LINKING=ON" 48 ]; 49 50 meta = with lib; { 51 description = "Open and full-featured framework for image processing";
··· 1 + { stdenv 2 + , lib 3 + , fetchFromGitHub 4 , fetchurl 5 , cmake 6 , ninja ··· 8 , opencv 9 , openexr 10 , graphicsmagick 11 + , cimg 12 , fftw 13 , zlib 14 , libjpeg 15 , libtiff 16 , libpng 17 + , writeShellScript 18 + , common-updater-scripts 19 + , curl 20 + , gnugrep 21 + , gnused 22 + , coreutils 23 + , jq 24 }: 25 26 stdenv.mkDerivation rec { 27 pname = "gmic"; 28 + version = "3.1.5"; 29 30 outputs = [ "out" "lib" "dev" "man" ]; 31 32 + src = fetchFromGitHub { 33 + owner = "dtschump"; 34 + repo = "gmic"; 35 + rev = "326ea9b7dc320b3624fe660d7b7d81669ca12e6d"; 36 + sha256 = "RRCzYMN/IXViiUNnacJV3DNpku3hIHQkHbIrtixExT0="; 37 + }; 38 + 39 + # TODO: build this from source 40 + # https://github.com/dtschump/gmic/blob/b36b2428db5926af5eea5454f822f369c2d9907e/src/Makefile#L675-L729 41 + gmic_stdlib = fetchurl { 42 + name = "gmic_stdlib.h"; 43 + url = "http://gmic.eu/gmic_stdlib${lib.replaceStrings ["."] [""] version}.h"; 44 + sha256 = "FM8RscCrt6jYlwVB2DtpqYrh9B3pO0I6Y69tkf9W1/o="; 45 }; 46 47 nativeBuildInputs = [ ··· 51 ]; 52 53 buildInputs = [ 54 + cimg 55 fftw 56 zlib 57 libjpeg ··· 66 "-DBUILD_LIB_STATIC=OFF" 67 "-DENABLE_CURL=OFF" 68 "-DENABLE_DYNAMIC_LINKING=ON" 69 + "-DUSE_SYSTEM_CIMG=ON" 70 ]; 71 + 72 + postPatch = '' 73 + # TODO: build from source 74 + cp -r ${gmic_stdlib} src/gmic_stdlib.h 75 + 76 + # CMake build files were moved to subdirectory. 77 + mv resources/CMakeLists.txt resources/cmake . 78 + ''; 79 + 80 + passthru = { 81 + updateScript = writeShellScript "${pname}-update-script" '' 82 + set -o errexit 83 + PATH=${lib.makeBinPath [ common-updater-scripts curl gnugrep gnused coreutils jq ]} 84 + 85 + latestVersion=$(curl 'https://gmic.eu/files/source/' | grep -E 'gmic_[^"]+\.tar\.gz' | sed -E 's/.+<a href="gmic_([^"]+)\.tar\.gz".+/\1/g' | sort --numeric-sort --reverse | head -n1) 86 + 87 + if [[ "${version}" = "$latestVersion" ]]; then 88 + echo "The new version same as the old version." 89 + exit 0 90 + fi 91 + 92 + for component in src gmic_stdlib; do 93 + # The script will not perform an update when the version attribute is up to date from previous platform run 94 + # We need to clear it before each run 95 + update-source-version "--source-key=$component" "gmic" 0 "$(printf '0%.0s' {1..64})" 96 + update-source-version "--source-key=$component" "gmic" $latestVersion 97 + done 98 + ''; 99 + }; 100 101 meta = with lib; { 102 description = "Open and full-featured framework for image processing";
+14 -4
pkgs/tools/graphics/wkhtmltopdf/default.nix
··· 1 - { mkDerivation, lib, fetchFromGitHub, qtwebkit, qtsvg, qtxmlpatterns 2 - , fontconfig, freetype, libpng, zlib, libjpeg 3 , openssl, libX11, libXext, libXrender }: 4 5 - mkDerivation rec { 6 version = "0.12.6"; 7 pname = "wkhtmltopdf"; 8 ··· 13 sha256 = "0m2zy986kzcpg0g3bvvm815ap9n5ann5f6bdy7pfj6jv482bm5mg"; 14 }; 15 16 buildInputs = [ 17 fontconfig freetype libpng zlib libjpeg openssl 18 libX11 libXext libXrender ··· 23 for f in src/image/image.pro src/pdf/pdf.pro ; do 24 substituteInPlace $f --replace '$(INSTALL_ROOT)' "" 25 done 26 ''; 27 28 configurePhase = "qmake wkhtmltopdf.pro INSTALLBASE=$out"; ··· 42 ''; 43 license = licenses.gpl3Plus; 44 maintainers = with maintainers; [ jb55 ]; 45 - platforms = with platforms; linux; 46 }; 47 }
··· 1 + { stdenv, lib, fetchFromGitHub, qtwebkit, qtsvg, qtxmlpatterns 2 + , fontconfig, freetype, libpng, zlib, libjpeg, wrapQtAppsHook 3 , openssl, libX11, libXext, libXrender }: 4 5 + stdenv.mkDerivation rec { 6 version = "0.12.6"; 7 pname = "wkhtmltopdf"; 8 ··· 13 sha256 = "0m2zy986kzcpg0g3bvvm815ap9n5ann5f6bdy7pfj6jv482bm5mg"; 14 }; 15 16 + nativeBuildInputs = [ 17 + wrapQtAppsHook 18 + ]; 19 + 20 buildInputs = [ 21 fontconfig freetype libpng zlib libjpeg openssl 22 libX11 libXext libXrender ··· 27 for f in src/image/image.pro src/pdf/pdf.pro ; do 28 substituteInPlace $f --replace '$(INSTALL_ROOT)' "" 29 done 30 + ''; 31 + 32 + # rewrite library path 33 + postInstall = lib.optionalString stdenv.isDarwin '' 34 + install_name_tool -change libwkhtmltox.0.dylib $out/lib/libwkhtmltox.0.dylib $out/bin/wkhtmltopdf 35 + install_name_tool -change libwkhtmltox.0.dylib $out/lib/libwkhtmltox.0.dylib $out/bin/wkhtmltoimage 36 ''; 37 38 configurePhase = "qmake wkhtmltopdf.pro INSTALLBASE=$out"; ··· 52 ''; 53 license = licenses.gpl3Plus; 54 maintainers = with maintainers; [ jb55 ]; 55 + platforms = platforms.unix; 56 }; 57 }
+3 -3
pkgs/tools/inputmethods/remote-touchpad/default.nix
··· 9 10 buildGoModule rec { 11 pname = "remote-touchpad"; 12 - version = "1.2.0"; 13 14 src = fetchFromGitHub { 15 owner = "unrud"; 16 repo = pname; 17 rev = "v${version}"; 18 - sha256 = "sha256-GjXcQyv55yJSAFeNNB+YeCVWav7vMGo/d1FCPoujYjA="; 19 }; 20 21 buildInputs = [ libX11 libXi libXt libXtst ]; 22 tags = [ "portal,x11" ]; 23 24 - vendorSha256 = "sha256-WG8OjtfVemtmHkrMg4O0oofsjtFKmIvcmCn9AYAGIrc="; 25 26 meta = with lib; { 27 description = "Control mouse and keyboard from the webbrowser of a smartphone.";
··· 9 10 buildGoModule rec { 11 pname = "remote-touchpad"; 12 + version = "1.2.1"; 13 14 src = fetchFromGitHub { 15 owner = "unrud"; 16 repo = pname; 17 rev = "v${version}"; 18 + sha256 = "sha256-A7/NLopJkIXwS5rAsf7J6tDL10kNOKCoyAj0tCTW6jQ="; 19 }; 20 21 buildInputs = [ libX11 libXi libXt libXtst ]; 22 tags = [ "portal,x11" ]; 23 24 + vendorSha256 = "sha256-UbDbUjC8R6LcYUPVWZID5dtu5tCV4NB268K6qTXYmZY="; 25 26 meta = with lib; { 27 description = "Control mouse and keyboard from the webbrowser of a smartphone.";
+9 -1
pkgs/tools/misc/figlet/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchpatch }: 2 3 stdenv.mkDerivation rec { 4 pname = "figlet"; ··· 10 sha256 = "0za1ax15x7myjl8jz271ybly8ln9kb9zhm1gf6rdlxzhs07w925z"; 11 }; 12 13 patches = [ 14 (fetchpatch { 15 url = "https://git.alpinelinux.org/aports/plain/main/figlet/musl-fix-cplusplus-decls.patch?h=3.4-stable&id=71776c73a6f04b6f671430f702bcd40b29d48399"; ··· 20 21 makeFlags = [ "prefix=$(out)" "CC:=$(CC)" "LD:=$(CC)" ]; 22 23 doCheck = true; 24 25 meta = { 26 description = "Program for making large letters out of ordinary text"; 27 homepage = "http://www.figlet.org/"; 28 license = lib.licenses.afl21; 29 platforms = lib.platforms.unix; 30 }; 31 }
··· 1 + { lib, stdenv, fetchurl, fetchpatch, fetchzip }: 2 3 stdenv.mkDerivation rec { 4 pname = "figlet"; ··· 10 sha256 = "0za1ax15x7myjl8jz271ybly8ln9kb9zhm1gf6rdlxzhs07w925z"; 11 }; 12 13 + contributed = fetchzip { 14 + url = "ftp://ftp.figlet.org/pub/figlet/fonts/contributed.tar.gz"; 15 + hash = "sha256-AyvAoc3IqJeKWgJftBahxb/KJjudeJIY4KD6mElNagQ="; 16 + }; 17 + 18 patches = [ 19 (fetchpatch { 20 url = "https://git.alpinelinux.org/aports/plain/main/figlet/musl-fix-cplusplus-decls.patch?h=3.4-stable&id=71776c73a6f04b6f671430f702bcd40b29d48399"; ··· 25 26 makeFlags = [ "prefix=$(out)" "CC:=$(CC)" "LD:=$(CC)" ]; 27 28 + postInstall = "cp -ar ${contributed}/* $out/share/figlet/"; 29 + 30 doCheck = true; 31 32 meta = { 33 description = "Program for making large letters out of ordinary text"; 34 homepage = "http://www.figlet.org/"; 35 license = lib.licenses.afl21; 36 + maintainers = with lib.maintainers; [ ehmry ]; 37 platforms = lib.platforms.unix; 38 }; 39 }
+2 -2
pkgs/tools/misc/ncdu/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "ncdu"; 5 - version = "1.16"; 6 7 src = fetchurl { 8 url = "https://dev.yorhel.nl/download/${pname}-${version}.tar.gz"; 9 - sha256 = "1m0gk09jaz114piidiw8fkg0id5l6nhz1cg5nlaf1yl3l595g49b"; 10 }; 11 12 buildInputs = [ ncurses ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "ncdu"; 5 + version = "1.17"; 6 7 src = fetchurl { 8 url = "https://dev.yorhel.nl/download/${pname}-${version}.tar.gz"; 9 + sha256 = "sha256-gQdFqO0as3iMh9OupMwaFO327iJvdkvMOD4CS6Vq2/E="; 10 }; 11 12 buildInputs = [ ncurses ];
+5 -3
pkgs/tools/misc/phrase-cli/default.nix
··· 2 3 buildGoModule rec { 4 pname = "phrase-cli"; 5 - version = "2.4.4"; 6 7 src = fetchFromGitHub { 8 owner = "phrase"; 9 repo = "phrase-cli"; 10 rev = version; 11 - sha256 = "0xlfcj0jd6x4ynzg6d0p3wlmfq660w3zm13nzx04jfcjnks9sqvl"; 12 }; 13 14 - vendorSha256 = "1ablrs3prw011bpad8vn87y3c81q44mps873nhj278hlkz6im34g"; 15 16 postInstall = '' 17 ln -s $out/bin/phrase-cli $out/bin/phrase
··· 2 3 buildGoModule rec { 4 pname = "phrase-cli"; 5 + version = "2.4.12"; 6 7 src = fetchFromGitHub { 8 owner = "phrase"; 9 repo = "phrase-cli"; 10 rev = version; 11 + sha256 = "sha256-+/hs6v3ereja2NtGApVBA3rTib5gAiGndbDg+FybWco="; 12 }; 13 14 + vendorSha256 = "sha256-Pt+F2ICuOQZBjMccK1qq/ueGOvnjDmAM5YLRINk2u/g="; 15 + 16 + ldflags = [ "-X=github.com/phrase/phrase-cli/cmd.PHRASE_CLIENT_VERSION=${version}" ]; 17 18 postInstall = '' 19 ln -s $out/bin/phrase-cli $out/bin/phrase
+5 -3
pkgs/tools/networking/wakeonlan/default.nix
··· 2 3 perlPackages.buildPerlPackage rec { 4 pname = "wakeonlan"; 5 - version = "0.41"; 6 7 src = fetchFromGitHub { 8 owner = "jpoliv"; 9 repo = pname; 10 - rev = "wakeonlan-${version}"; 11 - sha256 = "0m48b39lz0yc5ckx2jx8y2p4c8npjngxl9wy86k43xgsd8mq1g3c"; 12 }; 13 14 outputs = [ "out" ]; 15 16 nativeBuildInputs = [ installShellFiles ]; 17 18 installPhase = '' 19 install -Dt $out/bin wakeonlan
··· 2 3 perlPackages.buildPerlPackage rec { 4 pname = "wakeonlan"; 5 + version = "0.42"; 6 7 src = fetchFromGitHub { 8 owner = "jpoliv"; 9 repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "sha256-zCOpp5iNrWwh2knBGWhiEyG9IPAnFRwH5jJLEVLBISM="; 12 }; 13 14 outputs = [ "out" ]; 15 16 nativeBuildInputs = [ installShellFiles ]; 17 + # checkInputs = [ perl534Packages.TestPerlCritic perl534Packages.TestPod perl534Packages.TestPodCoverage ]; 18 + doCheck = false; # Missing package for https://github.com/genio/test-spelling to run tests 19 20 installPhase = '' 21 install -Dt $out/bin wakeonlan
+2 -2
pkgs/tools/security/exploitdb/default.nix
··· 6 7 stdenv.mkDerivation rec { 8 pname = "exploitdb"; 9 - version = "2022-07-02"; 10 11 src = fetchFromGitHub { 12 owner = "offensive-security"; 13 repo = pname; 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-1iUlbkdC7lLxBI/zb135l61foH2A2pTOz34YjQhym2g="; 16 }; 17 18 nativeBuildInputs = [
··· 6 7 stdenv.mkDerivation rec { 8 pname = "exploitdb"; 9 + version = "2022-07-12"; 10 11 src = fetchFromGitHub { 12 owner = "offensive-security"; 13 repo = pname; 14 rev = "refs/tags/${version}"; 15 + hash = "sha256-fnhiLB5Ga2yWhj0/w94d9gl874ekPJBwiIgK8DapN+w="; 16 }; 17 18 nativeBuildInputs = [
+37 -7
pkgs/tools/security/fprintd/tod.nix
··· 1 - { fetchFromGitLab 2 , fprintd 3 , libfprint-tod 4 }: 5 6 - (fprintd.override { libfprint = libfprint-tod; }).overrideAttrs (oldAttrs: 7 - let 8 pname = "fprintd-tod"; 9 version = "1.90.9"; 10 - in 11 - { 12 - inherit pname version; 13 14 src = fetchFromGitLab { 15 domain = "gitlab.freedesktop.org"; 16 owner = "libfprint"; 17 - repo = "${oldAttrs.pname}"; 18 rev = "v${version}"; 19 sha256 = "sha256-rOTVThHOY/Q2IIu2RGiv26UE2V/JFfWWnfKZQfKl5Mg="; 20 }; 21 })
··· 1 + { lib 2 + , fetchFromGitLab 3 + , fetchpatch 4 , fprintd 5 , libfprint-tod 6 }: 7 8 + (fprintd.override { libfprint = libfprint-tod; }).overrideAttrs (oldAttrs: rec { 9 pname = "fprintd-tod"; 10 version = "1.90.9"; 11 12 src = fetchFromGitLab { 13 domain = "gitlab.freedesktop.org"; 14 owner = "libfprint"; 15 + repo = "fprintd"; 16 rev = "v${version}"; 17 sha256 = "sha256-rOTVThHOY/Q2IIu2RGiv26UE2V/JFfWWnfKZQfKl5Mg="; 18 + }; 19 + 20 + patches = oldAttrs.patches or [] ++ [ 21 + (fetchpatch { 22 + name = "use-more-idiomatic-correct-embedded-shell-scripting"; 23 + url = "https://gitlab.freedesktop.org/libfprint/fprintd/-/commit/f4256533d1ffdc203c3f8c6ee42e8dcde470a93f.patch"; 24 + sha256 = "sha256-4uPrYEgJyXU4zx2V3gwKKLaD6ty0wylSriHlvKvOhek="; 25 + }) 26 + (fetchpatch { 27 + name = "remove-pointless-copying-of-files-into-build-directory"; 28 + url = "https://gitlab.freedesktop.org/libfprint/fprintd/-/commit/2c34cef5ef2004d8479475db5523c572eb409a6b.patch"; 29 + sha256 = "sha256-2pZBbMF1xjoDKn/jCAIldbeR2JNEVduXB8bqUrj2Ih4="; 30 + }) 31 + (fetchpatch { 32 + name = "build-Do-not-use-positional-arguments-in-i18n.merge_file"; 33 + url = "https://gitlab.freedesktop.org/libfprint/fprintd/-/commit/50943b1bd4f18d103c35233f0446ce7a31d1817e.patch"; 34 + sha256 = "sha256-ANkAq6fr0VRjkS0ckvf/ddVB2mH4b2uJRTI4H8vPPes="; 35 + }) 36 + ]; 37 + 38 + postPatch = oldAttrs.postPatch or "" + '' 39 + # part of "remove-pointless-copying-of-files-into-build-directory" but git-apply doesn't handle renaming 40 + mv src/device.xml src/net.reactivated.Fprint.Device.xml 41 + mv src/manager.xml src/net.reactivated.Fprint.Manager.xml 42 + ''; 43 + 44 + meta = { 45 + homepage = "https://fprint.freedesktop.org/"; 46 + description = "fprintd built with libfprint-tod to support Touch OEM Drivers"; 47 + license = lib.licenses.gpl2Plus; 48 + platforms = lib.platforms.linux; 49 + maintainers = with lib.maintainers; [ hmenke ]; 50 }; 51 })
+3 -3
pkgs/tools/security/grype/default.nix
··· 7 8 buildGoModule rec { 9 pname = "grype"; 10 - version = "0.41.0"; 11 12 src = fetchFromGitHub { 13 owner = "anchore"; 14 repo = pname; 15 rev = "v${version}"; 16 - hash = "sha256-hEWs1o4Y3fm6dbkpClKxvR4qt5egE6Yt70V9sd3GK3I="; 17 # populate values that require us to use git. By doing this in postFetch we 18 # can delete .git afterwards and maintain better reproducibility of the src. 19 leaveDotGit = true; ··· 26 ''; 27 }; 28 29 - vendorSha256 = "sha256-BB7E6wb6A97AATxFHENLo+Q+oVYOnYRzC/15bfomgR4="; 30 31 nativeBuildInputs = [ 32 installShellFiles
··· 7 8 buildGoModule rec { 9 pname = "grype"; 10 + version = "0.42.0"; 11 12 src = fetchFromGitHub { 13 owner = "anchore"; 14 repo = pname; 15 rev = "v${version}"; 16 + hash = "sha256-MShlKtrorqXRInQ01dEzVeLDRDua9PISkficF02PrBI="; 17 # populate values that require us to use git. By doing this in postFetch we 18 # can delete .git afterwards and maintain better reproducibility of the src. 19 leaveDotGit = true; ··· 26 ''; 27 }; 28 29 + vendorSha256 = "sha256-MusEvYNaMM0kqHSDdenPKo4IrIFmvPHSCRzciKMFiew="; 30 31 nativeBuildInputs = [ 32 installShellFiles
+3 -3
pkgs/tools/security/vault/default.nix
··· 6 7 buildGoModule rec { 8 pname = "vault"; 9 - version = "1.10.4"; 10 11 src = fetchFromGitHub { 12 owner = "hashicorp"; 13 repo = "vault"; 14 rev = "v${version}"; 15 - sha256 = "sha256-RJCFbhpFx84R9CIU1OaaZbjBXltNY/1GC2gwgydX4n8="; 16 }; 17 18 - vendorSha256 = "sha256-8fTAU/K0WkkS6an5Ffaxpnz8vABQXpiWaCroc8DTYmc="; 19 20 subPackages = [ "." ]; 21
··· 6 7 buildGoModule rec { 8 pname = "vault"; 9 + version = "1.11.0"; 10 11 src = fetchFromGitHub { 12 owner = "hashicorp"; 13 repo = "vault"; 14 rev = "v${version}"; 15 + sha256 = "sha256-r/zq4WjkwsqClipWehMGQ7uOqNy73TPufLq+hp6CTPA="; 16 }; 17 18 + vendorSha256 = "sha256-9cfza5Gvc0+O2qZ/8Yqf/WqmhrOEzdiTnenTRqfL5W8="; 19 20 subPackages = [ "." ]; 21
+6 -6
pkgs/tools/security/vault/vault-bin.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "vault-bin"; 5 - version = "1.10.4"; 6 7 src = 8 let ··· 16 aarch64-darwin = "darwin_arm64"; 17 }; 18 sha256 = selectSystem { 19 - x86_64-linux = "sha256-cLCRZDOMx1bk+sZnArR9oOxuCowqFDwPINxWnONIqUU="; 20 - aarch64-linux = "sha256-5MdszdDr+qK1RZnhXnAZjZ9+pal3ju6XMV6NnjVSUIg="; 21 - i686-linux = "sha256-srlyVhh4j005kLdLdJoEjHbXw0DLHH4G/rUH+b4EdDE="; 22 - x86_64-darwin = "sha256-Bep4LAm1/8PDA+fiWfR0nDUezP0VADKwry2rjYv8dTU="; 23 - aarch64-darwin = "sha256-2mLIOun03SiXeSEFD+qRPOCj4LJB6LjB6aneJ78A5OQ="; 24 }; 25 in 26 fetchzip {
··· 2 3 stdenv.mkDerivation rec { 4 pname = "vault-bin"; 5 + version = "1.11.0"; 6 7 src = 8 let ··· 16 aarch64-darwin = "darwin_arm64"; 17 }; 18 sha256 = selectSystem { 19 + x86_64-linux = "sha256-3oxIjILjl85GAl/YwTRrXunWY7UmPtOuG0wxA7wrzp0="; 20 + aarch64-linux = "sha256-PiIibaFPBBTWPLVIWmCXqR51+HujoQmVOsm8AJTNr9s="; 21 + i686-linux = "sha256-t3myhfPUe/28BlSIoxNbjmYykHlet5mWxOLuyNcu4o4="; 22 + x86_64-darwin = "sha256-nPcKir2NcsXnQ6RG6TrioLC4jT9Pn7NssNjjDnw+fAY="; 23 + aarch64-darwin = "sha256-yJJXmoR4Re1iIbSI6+VwOGP3FZvlJcumjxXM+PfPZm4="; 24 }; 25 in 26 fetchzip {
+15 -7
pkgs/tools/system/netdata/default.nix
··· 1 { lib, stdenv, callPackage, fetchFromGitHub, autoreconfHook, pkg-config, makeWrapper 2 , CoreFoundation, IOKit, libossp_uuid 3 , nixosTests 4 - , curl, libcap, libuuid, lm_sensors, zlib, protobuf 5 , withCups ? false, cups 6 - , withDBengine ? true, libuv, lz4, judy 7 , withIpmi ? (!stdenv.isDarwin), freeipmi 8 , withNetfilter ? (!stdenv.isDarwin), libmnl, libnetfilter_acct 9 , withCloud ? (!stdenv.isDarwin), json_c 10 , withSsl ? true, openssl 11 , withDebug ? false 12 }: ··· 30 strictDeps = true; 31 32 nativeBuildInputs = [ autoreconfHook pkg-config makeWrapper protobuf ]; 33 - buildInputs = [ curl.dev zlib.dev protobuf ] 34 ++ optionals stdenv.isDarwin [ CoreFoundation IOKit libossp_uuid ] 35 ++ optionals (!stdenv.isDarwin) [ libcap.dev libuuid.dev ] 36 ++ optionals withCups [ cups ] 37 - ++ optionals withDBengine [ libuv lz4.dev judy ] 38 ++ optionals withIpmi [ freeipmi ] 39 ++ optionals withNetfilter [ libmnl libnetfilter_acct ] 40 ++ optionals withCloud [ json_c ] 41 ++ optionals withSsl [ openssl.dev ]; 42 43 patches = [ ··· 92 "--localstatedir=/var" 93 "--sysconfdir=/etc" 94 "--disable-ebpf" 95 - ] ++ optionals withCloud [ 96 - "--enable-cloud" 97 - "--with-aclk-ng" 98 ]; 99 100 postFixup = ''
··· 1 { lib, stdenv, callPackage, fetchFromGitHub, autoreconfHook, pkg-config, makeWrapper 2 , CoreFoundation, IOKit, libossp_uuid 3 , nixosTests 4 + , curl, jemalloc, libuv, zlib 5 + , libcap, libuuid, lm_sensors, protobuf 6 , withCups ? false, cups 7 + , withDBengine ? true, judy, lz4 8 , withIpmi ? (!stdenv.isDarwin), freeipmi 9 , withNetfilter ? (!stdenv.isDarwin), libmnl, libnetfilter_acct 10 , withCloud ? (!stdenv.isDarwin), json_c 11 + , withConnPubSub ? false, google-cloud-cpp, grpc 12 + , withConnPrometheus ? false, snappy 13 , withSsl ? true, openssl 14 , withDebug ? false 15 }: ··· 33 strictDeps = true; 34 35 nativeBuildInputs = [ autoreconfHook pkg-config makeWrapper protobuf ]; 36 + buildInputs = [ curl.dev jemalloc libuv zlib.dev ] 37 ++ optionals stdenv.isDarwin [ CoreFoundation IOKit libossp_uuid ] 38 ++ optionals (!stdenv.isDarwin) [ libcap.dev libuuid.dev ] 39 ++ optionals withCups [ cups ] 40 + ++ optionals withDBengine [ judy lz4.dev ] 41 ++ optionals withIpmi [ freeipmi ] 42 ++ optionals withNetfilter [ libmnl libnetfilter_acct ] 43 ++ optionals withCloud [ json_c ] 44 + ++ optionals withConnPubSub [ google-cloud-cpp grpc ] 45 + ++ optionals withConnPrometheus [ snappy ] 46 + ++ optionals (withCloud || withConnPrometheus) [ protobuf ] 47 ++ optionals withSsl [ openssl.dev ]; 48 49 patches = [ ··· 98 "--localstatedir=/var" 99 "--sysconfdir=/etc" 100 "--disable-ebpf" 101 + "--with-jemalloc=${jemalloc}" 102 + ] ++ optional (!withDBengine) [ 103 + "--disable-dbengine" 104 + ] ++ optional (!withCloud) [ 105 + "--disable-cloud" 106 ]; 107 108 postFixup = ''
+1 -1
pkgs/tools/system/pciutils/default.nix
··· 43 ''; 44 45 meta = with lib; { 46 - homepage = "http://mj.ucw.cz/pciutils.html"; 47 description = "A collection of programs for inspecting and manipulating configuration of PCI devices"; 48 license = licenses.gpl2Plus; 49 platforms = platforms.unix;
··· 43 ''; 44 45 meta = with lib; { 46 + homepage = "https://mj.ucw.cz/sw/pciutils/"; 47 description = "A collection of programs for inspecting and manipulating configuration of PCI devices"; 48 license = licenses.gpl2Plus; 49 platforms = platforms.unix;
+14 -11
pkgs/top-level/all-packages.nix
··· 6154 }; 6155 6156 lp_solve = callPackage ../applications/science/math/lp_solve { 6157 - inherit (darwin) cctools; 6158 }; 6159 6160 fabric-installer = callPackage ../tools/games/minecraft/fabric-installer { }; ··· 7776 kstars = libsForQt5.callPackage ../applications/science/astronomy/kstars { }; 7777 7778 kytea = callPackage ../tools/text/kytea { }; 7779 7780 k6 = callPackage ../development/tools/k6 { }; 7781 ··· 16855 16856 ytt = callPackage ../development/tools/ytt {}; 16857 16858 - zls = callPackage ../development/tools/zls { 16859 - zig = zig_0_8_1; 16860 - }; 16861 16862 zydis = callPackage ../development/libraries/zydis { }; 16863 ··· 17745 17746 ghcid = haskellPackages.ghcid.bin; 17747 17748 - graphia = libsForQt5.callPackage ../applications/science/misc/graphia { }; 17749 17750 icon-lang = callPackage ../development/interpreters/icon-lang { }; 17751 ··· 17865 17866 relibc = callPackage ../development/libraries/relibc { }; 17867 17868 - # Only supported on Linux 17869 glibcLocales = 17870 - if stdenv.hostPlatform.isLinux 17871 then callPackage ../development/libraries/glibc/locales.nix { } 17872 else null; 17873 glibcLocalesUtf8 = 17874 - if stdenv.hostPlatform.isLinux 17875 then callPackage ../development/libraries/glibc/locales.nix { allLocales = false; } 17876 else null; 17877 ··· 21673 21674 zig = callPackage ../development/compilers/zig { 21675 llvmPackages = llvmPackages_13; 21676 - }; 21677 - zig_0_8_1 = callPackage ../development/compilers/zig/0.8.1.nix { 21678 - llvmPackages = llvmPackages_12; 21679 }; 21680 21681 zimlib = callPackage ../development/libraries/zimlib { }; ··· 28480 mdzk = callPackage ../applications/misc/mdzk { 28481 inherit (darwin.apple_sdk.frameworks) CoreServices; 28482 }; 28483 28484 mediaelch = libsForQt5.callPackage ../applications/misc/mediaelch { }; 28485
··· 6154 }; 6155 6156 lp_solve = callPackage ../applications/science/math/lp_solve { 6157 + inherit (darwin) cctools autoSignDarwinBinariesHook; 6158 }; 6159 6160 fabric-installer = callPackage ../tools/games/minecraft/fabric-installer { }; ··· 7776 kstars = libsForQt5.callPackage ../applications/science/astronomy/kstars { }; 7777 7778 kytea = callPackage ../tools/text/kytea { }; 7779 + 7780 + kyverno = callPackage ../applications/networking/cluster/kyverno { }; 7781 7782 k6 = callPackage ../development/tools/k6 { }; 7783 ··· 16857 16858 ytt = callPackage ../development/tools/ytt {}; 16859 16860 + zls = callPackage ../development/tools/zls { }; 16861 16862 zydis = callPackage ../development/libraries/zydis { }; 16863 ··· 17745 17746 ghcid = haskellPackages.ghcid.bin; 17747 17748 + graphia = libsForQt514.callPackage ../applications/science/misc/graphia { 17749 + # Using gcc 10 because this fails to build with gcc 11 17750 + # Error similar to this https://github.com/RPCS3/rpcs3/issues/10291 17751 + stdenv = gcc10Stdenv; 17752 + }; 17753 17754 icon-lang = callPackage ../development/interpreters/icon-lang { }; 17755 ··· 17869 17870 relibc = callPackage ../development/libraries/relibc { }; 17871 17872 + # Only supported on Linux and only on glibc 17873 glibcLocales = 17874 + if stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isGnu 17875 then callPackage ../development/libraries/glibc/locales.nix { } 17876 else null; 17877 glibcLocalesUtf8 = 17878 + if stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isGnu 17879 then callPackage ../development/libraries/glibc/locales.nix { allLocales = false; } 17880 else null; 17881 ··· 21677 21678 zig = callPackage ../development/compilers/zig { 21679 llvmPackages = llvmPackages_13; 21680 }; 21681 21682 zimlib = callPackage ../development/libraries/zimlib { }; ··· 28481 mdzk = callPackage ../applications/misc/mdzk { 28482 inherit (darwin.apple_sdk.frameworks) CoreServices; 28483 }; 28484 + 28485 + media-downloader = callPackage ../applications/video/media-downloader { }; 28486 28487 mediaelch = libsForQt5.callPackage ../applications/misc/mediaelch { }; 28488
+7
pkgs/top-level/release-cross.nix
··· 1 /* This file defines some basic smoke tests for cross compilation. 2 */ 3 4 { # The platforms *from* which we cross compile.
··· 1 /* This file defines some basic smoke tests for cross compilation. 2 + Individual jobs can be tested by running: 3 + 4 + $ nix-build pkgs/top-level/release-cross.nix -A <jobname>.<package> --arg supportedSystems '[builtins.currentSystem]' 5 + 6 + e.g. 7 + 8 + $ nix-build pkgs/top-level/release-cross.nix -A crossMingw32.nixUnstable --arg supportedSystems '[builtins.currentSystem]' 9 */ 10 11 { # The platforms *from* which we cross compile.