Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
f1d7a132 fbb4f932

+232 -845
+1 -1
nixos/modules/services/web-apps/photoprism.nix
··· 123 RestrictNamespaces = true; 124 RestrictRealtime = true; 125 SystemCallArchitectures = "native"; 126 - SystemCallFilter = [ "@system-service" "~@privileged @setuid @keyring" ]; 127 UMask = "0066"; 128 } // lib.optionalAttrs (cfg.port < 1024) { 129 AmbientCapabilities = [ "CAP_NET_BIND_SERVICE" ];
··· 123 RestrictNamespaces = true; 124 RestrictRealtime = true; 125 SystemCallArchitectures = "native"; 126 + SystemCallFilter = [ "@system-service" "~@setuid @keyring" ]; 127 UMask = "0066"; 128 } // lib.optionalAttrs (cfg.port < 1024) { 129 AmbientCapabilities = [ "CAP_NET_BIND_SERVICE" ];
+1 -1
nixos/modules/services/x11/window-managers/dwm.nix
··· 24 patches = [ 25 (super.fetchpatch { 26 url = "https://dwm.suckless.org/patches/steam/dwm-steam-6.2.diff"; 27 - sha256 = "1ld1z3fh6p5f8gr62zknx3axsinraayzxw3rz1qwg73mx2zk5y1f"; 28 }) 29 ]; 30 })
··· 24 patches = [ 25 (super.fetchpatch { 26 url = "https://dwm.suckless.org/patches/steam/dwm-steam-6.2.diff"; 27 + sha256 = "sha256-f3lffBjz7+0Khyn9c9orzReoLTqBb/9gVGshYARGdVc="; 28 }) 29 ]; 30 })
+1 -1
nixos/tests/web-apps/mastodon/remote-postgresql.nix
··· 13 in 14 { 15 name = "mastodon-remote-postgresql"; 16 - meta.maintainers = with pkgs.lib.maintainers; [ erictapen izorkin turion ]; 17 18 nodes = { 19 database = {
··· 13 in 14 { 15 name = "mastodon-remote-postgresql"; 16 + meta.maintainers = with pkgs.lib.maintainers; [ erictapen izorkin ]; 17 18 nodes = { 19 database = {
+1 -1
pkgs/applications/audio/musescore/default.nix
··· 162 description = "Music notation and composition software"; 163 homepage = "https://musescore.org/"; 164 license = licenses.gpl3Only; 165 - maintainers = with maintainers; [ vandenoever turion doronbehar ]; 166 # on aarch64-linux: 167 # error: cannot convert '<brace-enclosed initializer list>' to 'float32x4_t' in assignment 168 broken = (stdenv.isLinux && stdenv.isAarch64);
··· 162 description = "Music notation and composition software"; 163 homepage = "https://musescore.org/"; 164 license = licenses.gpl3Only; 165 + maintainers = with maintainers; [ vandenoever doronbehar ]; 166 # on aarch64-linux: 167 # error: cannot convert '<brace-enclosed initializer list>' to 'float32x4_t' in assignment 168 broken = (stdenv.isLinux && stdenv.isAarch64);
+5 -2
pkgs/applications/editors/glow/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub }: 2 - 3 buildGoModule rec { 4 pname = "glow"; 5 version = "1.5.0"; ··· 23 changelog = "https://github.com/charmbracelet/glow/releases/tag/v${version}"; 24 license = licenses.mit; 25 maintainers = with maintainers; [ Br1ght0ne penguwin ]; 26 }; 27 }
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 buildGoModule rec { 6 pname = "glow"; 7 version = "1.5.0"; ··· 25 changelog = "https://github.com/charmbracelet/glow/releases/tag/v${version}"; 26 license = licenses.mit; 27 maintainers = with maintainers; [ Br1ght0ne penguwin ]; 28 + mainProgram = "glow"; 29 }; 30 }
+1 -1
pkgs/applications/editors/vscode/vscodium.nix
··· 61 downloadPage = "https://github.com/VSCodium/vscodium/releases"; 62 license = licenses.mit; 63 sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 64 - maintainers = with maintainers; [ synthetica turion bobby285271 ]; 65 mainProgram = "codium"; 66 platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" "armv7l-linux" ]; 67 };
··· 61 downloadPage = "https://github.com/VSCodium/vscodium/releases"; 62 license = licenses.mit; 63 sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 64 + maintainers = with maintainers; [ synthetica bobby285271 ]; 65 mainProgram = "codium"; 66 platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" "armv7l-linux" ]; 67 };
+1 -1
pkgs/applications/file-managers/krusader/default.nix
··· 42 homepage = "http://www.krusader.org"; 43 description = "Norton/Total Commander clone for KDE"; 44 license = licenses.gpl2Only; 45 - maintainers = with maintainers; [ sander turion ]; 46 mainProgram = "krusader"; 47 }; 48 }
··· 42 homepage = "http://www.krusader.org"; 43 description = "Norton/Total Commander clone for KDE"; 44 license = licenses.gpl2Only; 45 + maintainers = with maintainers; [ sander ]; 46 mainProgram = "krusader"; 47 }; 48 }
+1 -1
pkgs/applications/kde/konsole.nix
··· 13 homepage = "https://apps.kde.org/konsole/"; 14 description = "KDE terminal emulator"; 15 license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ]; 16 - maintainers = with lib.maintainers; [ ttuegel turion ]; 17 }; 18 nativeBuildInputs = [ extra-cmake-modules kdoctools ]; 19 buildInputs = [
··· 13 homepage = "https://apps.kde.org/konsole/"; 14 description = "KDE terminal emulator"; 15 license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ]; 16 + maintainers = with lib.maintainers; [ ttuegel ]; 17 }; 18 nativeBuildInputs = [ extra-cmake-modules kdoctools ]; 19 buildInputs = [
+1 -1
pkgs/applications/kde/okular.nix
··· 35 homepage = "http://www.kde.org"; 36 description = "KDE document viewer"; 37 license = with licenses; [ gpl2Plus lgpl21Plus fdl12Plus bsd3 ]; 38 - maintainers = with maintainers; [ ttuegel turion ]; 39 platforms = lib.platforms.linux; 40 }; 41 }
··· 35 homepage = "http://www.kde.org"; 36 description = "KDE document viewer"; 37 license = with licenses; [ gpl2Plus lgpl21Plus fdl12Plus bsd3 ]; 38 + maintainers = with maintainers; [ ttuegel ]; 39 platforms = lib.platforms.linux; 40 }; 41 }
+1 -1
pkgs/applications/misc/keepassxc/default.nix
··· 129 ''; 130 homepage = "https://keepassxc.org/"; 131 license = licenses.gpl2Plus; 132 - maintainers = with maintainers; [ jonafato turion srapenne ]; 133 platforms = platforms.linux ++ platforms.darwin; 134 }; 135 }
··· 129 ''; 130 homepage = "https://keepassxc.org/"; 131 license = licenses.gpl2Plus; 132 + maintainers = with maintainers; [ jonafato srapenne ]; 133 platforms = platforms.linux ++ platforms.darwin; 134 }; 135 }
+1
pkgs/applications/misc/seatd/default.nix
··· 47 license = lib.licenses.mit; 48 maintainers = with lib.maintainers; [ emantor ]; 49 platforms = with lib.platforms; freebsd ++ linux ++ netbsd; 50 }; 51 })
··· 47 license = lib.licenses.mit; 48 maintainers = with lib.maintainers; [ emantor ]; 49 platforms = with lib.platforms; freebsd ++ linux ++ netbsd; 50 + mainProgram = "seatd"; 51 }; 52 })
+1
pkgs/applications/misc/tofi/default.nix
··· 38 license = licenses.mit; 39 maintainers = with maintainers; [ fbergroth ]; 40 platforms = platforms.linux; 41 }; 42 }
··· 38 license = licenses.mit; 39 maintainers = with maintainers; [ fbergroth ]; 40 platforms = platforms.linux; 41 + mainProgram = "tofi"; 42 }; 43 }
+3 -3
pkgs/applications/science/logic/cvc5/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "cvc5"; 5 - version = "1.0.5"; 6 7 src = fetchFromGitHub { 8 owner = "cvc5"; 9 repo = "cvc5"; 10 rev = "cvc5-${version}"; 11 - hash = "sha256-l+L59QLLrAEVkAZjhxICJpa+j+jr1k/7B61JlapXGRI="; 12 }; 13 14 nativeBuildInputs = [ pkg-config cmake flex ]; 15 buildInputs = [ 16 cadical.dev symfpu gmp gtest libantlr3c antlr3_4 boost jdk 17 - (python3.withPackages (ps: with ps; [ pyparsing toml ])) 18 ]; 19 20 preConfigure = ''
··· 2 3 stdenv.mkDerivation rec { 4 pname = "cvc5"; 5 + version = "1.0.6"; 6 7 src = fetchFromGitHub { 8 owner = "cvc5"; 9 repo = "cvc5"; 10 rev = "cvc5-${version}"; 11 + hash = "sha256-pZiXAO92cwnYtaVMDFBEmk+NzDf4eKdc0eY0RltofPA="; 12 }; 13 14 nativeBuildInputs = [ pkg-config cmake flex ]; 15 buildInputs = [ 16 cadical.dev symfpu gmp gtest libantlr3c antlr3_4 boost jdk 17 + (python3.withPackages (ps: with ps; [ pyparsing tomli ])) 18 ]; 19 20 preConfigure = ''
+6 -1
pkgs/applications/terminal-emulators/rxvt-unicode/default.nix
··· 73 ./patches/9.06-font-width.patch 74 ]) ++ [ 75 ./patches/256-color-resources.patch 76 - ]++ optional stdenv.isDarwin ./patches/makefile-phony.patch; 77 78 configureFlags = [ 79 "--with-terminfo=${placeholder "terminfo"}/share/terminfo"
··· 73 ./patches/9.06-font-width.patch 74 ]) ++ [ 75 ./patches/256-color-resources.patch 76 + ] ++ optional (perlSupport && versionAtLeast perl.version "5.38") (fetchpatch { 77 + name = "perl538-locale-c.patch"; 78 + url = "https://github.com/exg/rxvt-unicode/commit/16634bc8dd5fc4af62faf899687dfa8f27768d15.patch"; 79 + excludes = [ "Changes" ]; 80 + sha256 = "sha256-JVqzYi3tcWIN2j5JByZSztImKqbbbB3lnfAwUXrumHM="; 81 + }) ++ optional stdenv.isDarwin ./patches/makefile-phony.patch; 82 83 configureFlags = [ 84 "--with-terminfo=${placeholder "terminfo"}/share/terminfo"
+3
pkgs/development/node-packages/aliases.nix
··· 40 mapAliases { 41 "@antora/cli" = pkgs.antora; # Added 2023-05-06 42 "@bitwarden/cli" = pkgs.bitwarden-cli; # added 2023-07-25 43 "@githubnext/github-copilot-cli" = pkgs.github-copilot-cli; # Added 2023-05-02 44 "@google/clasp" = pkgs.google-clasp; # Added 2023-05-07 45 "@nestjs/cli" = pkgs.nest-cli; # Added 2023-05-06 46 antennas = pkgs.antennas; # added 2023-07-30 47 balanceofsatoshis = pkgs.balanceofsatoshis; # added 2023-07-31 48 bibtex-tidy = pkgs.bibtex-tidy; # added 2023-07-30 49 bitwarden-cli = pkgs.bitwarden-cli; # added 2023-07-25 50 castnow = pkgs.castnow; # added 2023-07-30 51 eslint_d = pkgs.eslint_d; # Added 2023-05-26 52 flood = pkgs.flood; # Added 2023-07-25 53 gtop = pkgs.gtop; # added 2023-07-31
··· 40 mapAliases { 41 "@antora/cli" = pkgs.antora; # Added 2023-05-06 42 "@bitwarden/cli" = pkgs.bitwarden-cli; # added 2023-07-25 43 + "@emacs-eask/cli" = pkgs.eask; # added 2023-08-17 44 "@githubnext/github-copilot-cli" = pkgs.github-copilot-cli; # Added 2023-05-02 45 "@google/clasp" = pkgs.google-clasp; # Added 2023-05-07 46 + "@maizzle/cli" = pkgs.maizzle; # added 2023-08-17 47 "@nestjs/cli" = pkgs.nest-cli; # Added 2023-05-06 48 antennas = pkgs.antennas; # added 2023-07-30 49 balanceofsatoshis = pkgs.balanceofsatoshis; # added 2023-07-31 50 bibtex-tidy = pkgs.bibtex-tidy; # added 2023-07-30 51 bitwarden-cli = pkgs.bitwarden-cli; # added 2023-07-25 52 castnow = pkgs.castnow; # added 2023-07-30 53 + eask = pkgs.eask; # added 2023-08-17 54 eslint_d = pkgs.eslint_d; # Added 2023-05-26 55 flood = pkgs.flood; # Added 2023-07-25 56 gtop = pkgs.gtop; # added 2023-07-31
-2
pkgs/development/node-packages/node-packages.json
··· 5 , "@babel/cli" 6 , "@commitlint/cli" 7 , "@commitlint/config-conventional" 8 - , "@emacs-eask/cli" 9 , "@forge/cli" 10 - , "@maizzle/cli" 11 , "@medable/mdctl-cli" 12 , "@mermaid-js/mermaid-cli" 13 , "@microsoft/rush"
··· 5 , "@babel/cli" 6 , "@commitlint/cli" 7 , "@commitlint/config-conventional" 8 , "@forge/cli" 9 , "@medable/mdctl-cli" 10 , "@mermaid-js/mermaid-cli" 11 , "@microsoft/rush"
-755
pkgs/development/node-packages/node-packages.nix
··· 81163 bypassCache = true; 81164 reconstructLock = true; 81165 }; 81166 - "@emacs-eask/cli" = nodeEnv.buildNodePackage { 81167 - name = "_at_emacs-eask_slash_cli"; 81168 - packageName = "@emacs-eask/cli"; 81169 - version = "0.8.1"; 81170 - src = fetchurl { 81171 - url = "https://registry.npmjs.org/@emacs-eask/cli/-/cli-0.8.1.tgz"; 81172 - sha512 = "+Z54Sh/vHWOXcbb495SjH5+4h9D3c5wNPebz83yfZIUHQ4DqxSB53l//Dse5P3UVt3okQeXdwGNuRN1VBf3brg=="; 81173 - }; 81174 - dependencies = [ 81175 - sources."ansi-regex-5.0.1" 81176 - sources."ansi-styles-4.3.0" 81177 - sources."cliui-8.0.1" 81178 - sources."color-convert-2.0.1" 81179 - sources."color-name-1.1.4" 81180 - sources."emoji-regex-8.0.0" 81181 - sources."escalade-3.1.1" 81182 - sources."get-caller-file-2.0.5" 81183 - sources."is-fullwidth-code-point-3.0.0" 81184 - sources."require-directory-2.1.1" 81185 - sources."string-width-4.2.3" 81186 - sources."strip-ansi-6.0.1" 81187 - sources."wrap-ansi-7.0.0" 81188 - sources."y18n-5.0.8" 81189 - sources."yargs-17.7.2" 81190 - sources."yargs-parser-21.1.1" 81191 - ]; 81192 - buildInputs = globalBuildInputs; 81193 - meta = { 81194 - description = "A set of command-line tools to build Emacs packages"; 81195 - homepage = "https://github.com/emacs-eask/cli#readme"; 81196 - license = "GPL-3.0"; 81197 - }; 81198 - production = true; 81199 - bypassCache = true; 81200 - reconstructLock = true; 81201 - }; 81202 "@forge/cli" = nodeEnv.buildNodePackage { 81203 name = "_at_forge_slash_cli"; 81204 packageName = "@forge/cli"; ··· 82368 description = "A command line interface for managing Atlassian-hosted apps"; 82369 homepage = "https://developer.atlassian.com/platform/forge"; 82370 license = "UNLICENSED"; 82371 - }; 82372 - production = true; 82373 - bypassCache = true; 82374 - reconstructLock = true; 82375 - }; 82376 - "@maizzle/cli" = nodeEnv.buildNodePackage { 82377 - name = "_at_maizzle_slash_cli"; 82378 - packageName = "@maizzle/cli"; 82379 - version = "1.5.6"; 82380 - src = fetchurl { 82381 - url = "https://registry.npmjs.org/@maizzle/cli/-/cli-1.5.6.tgz"; 82382 - sha512 = "S+NzmN4VSmIu6vHVJ6hYUQj3xsksOpE82SGP97nMimabR282BM1l/FT71jOqbf+UAgjm2Q9TyIOeGtsWDsW+CQ=="; 82383 - }; 82384 - dependencies = [ 82385 - (sources."@babel/code-frame-7.22.10" // { 82386 - dependencies = [ 82387 - sources."ansi-styles-3.2.1" 82388 - sources."chalk-2.4.2" 82389 - sources."color-convert-1.9.3" 82390 - sources."color-name-1.1.3" 82391 - sources."has-flag-3.0.0" 82392 - sources."supports-color-5.5.0" 82393 - ]; 82394 - }) 82395 - sources."@babel/helper-validator-identifier-7.22.5" 82396 - (sources."@babel/highlight-7.22.10" // { 82397 - dependencies = [ 82398 - sources."ansi-styles-3.2.1" 82399 - sources."chalk-2.4.2" 82400 - sources."color-convert-1.9.3" 82401 - sources."color-name-1.1.3" 82402 - sources."has-flag-3.0.0" 82403 - sources."supports-color-5.5.0" 82404 - ]; 82405 - }) 82406 - (sources."@bconnorwhite/module-2.0.2" // { 82407 - dependencies = [ 82408 - sources."find-up-5.0.0" 82409 - sources."locate-path-6.0.0" 82410 - sources."p-limit-3.1.0" 82411 - sources."p-locate-5.0.0" 82412 - sources."path-exists-4.0.0" 82413 - ]; 82414 - }) 82415 - sources."@ljharb/through-2.3.9" 82416 - sources."@nodelib/fs.scandir-2.1.5" 82417 - sources."@nodelib/fs.stat-2.0.5" 82418 - sources."@nodelib/fs.walk-1.2.8" 82419 - sources."@pnpm/config.env-replace-1.1.0" 82420 - (sources."@pnpm/network.ca-file-1.0.2" // { 82421 - dependencies = [ 82422 - sources."graceful-fs-4.2.10" 82423 - ]; 82424 - }) 82425 - sources."@pnpm/npm-conf-2.2.2" 82426 - sources."@samverschueren/stream-to-observable-0.3.1" 82427 - sources."@sindresorhus/is-4.6.0" 82428 - sources."@szmarczak/http-timer-4.0.6" 82429 - sources."@types/cacheable-request-6.0.3" 82430 - sources."@types/http-cache-semantics-4.0.1" 82431 - sources."@types/keyv-3.1.4" 82432 - sources."@types/minimist-1.2.2" 82433 - sources."@types/node-20.4.9" 82434 - sources."@types/normalize-package-data-2.4.1" 82435 - sources."@types/responselike-1.0.0" 82436 - sources."aggregate-error-4.0.1" 82437 - sources."all-package-names-2.0.711" 82438 - sources."ansi-align-3.0.1" 82439 - sources."ansi-escapes-4.3.2" 82440 - sources."ansi-regex-5.0.1" 82441 - sources."ansi-styles-4.3.0" 82442 - sources."any-observable-0.3.0" 82443 - sources."argparse-2.0.1" 82444 - sources."arrify-1.0.1" 82445 - sources."balanced-match-1.0.2" 82446 - sources."base64-js-1.5.1" 82447 - sources."big-integer-1.6.51" 82448 - sources."bl-4.1.0" 82449 - (sources."boxen-7.1.1" // { 82450 - dependencies = [ 82451 - sources."ansi-regex-6.0.1" 82452 - sources."ansi-styles-6.2.1" 82453 - sources."chalk-5.3.0" 82454 - sources."emoji-regex-9.2.2" 82455 - sources."string-width-5.1.2" 82456 - sources."strip-ansi-7.1.0" 82457 - sources."type-fest-2.19.0" 82458 - sources."wrap-ansi-8.1.0" 82459 - ]; 82460 - }) 82461 - sources."bplist-parser-0.2.0" 82462 - sources."brace-expansion-1.1.11" 82463 - sources."braces-3.0.2" 82464 - sources."buffer-5.7.1" 82465 - sources."builtins-1.0.3" 82466 - sources."bundle-name-3.0.0" 82467 - sources."cacheable-lookup-5.0.4" 82468 - (sources."cacheable-request-7.0.4" // { 82469 - dependencies = [ 82470 - sources."get-stream-5.2.0" 82471 - ]; 82472 - }) 82473 - sources."callsites-3.1.0" 82474 - sources."camelcase-7.0.1" 82475 - (sources."camelcase-keys-8.0.2" // { 82476 - dependencies = [ 82477 - sources."type-fest-2.19.0" 82478 - ]; 82479 - }) 82480 - sources."chalk-4.1.2" 82481 - sources."chardet-0.7.0" 82482 - sources."ci-info-3.8.0" 82483 - (sources."clean-stack-4.2.0" // { 82484 - dependencies = [ 82485 - sources."escape-string-regexp-5.0.0" 82486 - ]; 82487 - }) 82488 - sources."cli-boxes-3.0.0" 82489 - sources."cli-cursor-3.1.0" 82490 - sources."cli-spinners-2.9.0" 82491 - (sources."cli-truncate-0.2.1" // { 82492 - dependencies = [ 82493 - sources."ansi-regex-2.1.1" 82494 - sources."is-fullwidth-code-point-1.0.0" 82495 - sources."string-width-1.0.2" 82496 - sources."strip-ansi-3.0.1" 82497 - ]; 82498 - }) 82499 - sources."cli-width-3.0.0" 82500 - sources."clone-1.0.4" 82501 - sources."clone-response-1.0.3" 82502 - sources."code-point-at-1.1.0" 82503 - sources."color-convert-2.0.1" 82504 - sources."color-name-1.1.4" 82505 - sources."commander-10.0.1" 82506 - (sources."commander-version-1.1.0" // { 82507 - dependencies = [ 82508 - sources."commander-6.2.1" 82509 - ]; 82510 - }) 82511 - sources."concat-map-0.0.1" 82512 - (sources."config-chain-1.1.13" // { 82513 - dependencies = [ 82514 - sources."ini-1.3.8" 82515 - ]; 82516 - }) 82517 - (sources."configstore-6.0.0" // { 82518 - dependencies = [ 82519 - sources."dot-prop-6.0.1" 82520 - ]; 82521 - }) 82522 - sources."cosmiconfig-8.2.0" 82523 - sources."cross-spawn-7.0.3" 82524 - (sources."crypto-random-string-4.0.0" // { 82525 - dependencies = [ 82526 - sources."type-fest-1.4.0" 82527 - ]; 82528 - }) 82529 - sources."date-fns-1.30.1" 82530 - sources."decamelize-6.0.0" 82531 - (sources."decamelize-keys-2.0.1" // { 82532 - dependencies = [ 82533 - sources."type-fest-3.13.1" 82534 - ]; 82535 - }) 82536 - (sources."decompress-response-6.0.0" // { 82537 - dependencies = [ 82538 - sources."mimic-response-3.1.0" 82539 - ]; 82540 - }) 82541 - sources."deep-extend-0.6.0" 82542 - (sources."default-browser-4.0.0" // { 82543 - dependencies = [ 82544 - sources."execa-7.2.0" 82545 - sources."human-signals-4.3.1" 82546 - sources."is-stream-3.0.0" 82547 - sources."mimic-fn-4.0.0" 82548 - sources."npm-run-path-5.1.0" 82549 - sources."onetime-6.0.0" 82550 - sources."path-key-4.0.0" 82551 - sources."strip-final-newline-3.0.0" 82552 - ]; 82553 - }) 82554 - sources."default-browser-id-3.0.0" 82555 - sources."defaults-1.0.4" 82556 - sources."defer-to-connect-2.0.1" 82557 - sources."define-lazy-prop-3.0.0" 82558 - sources."del-7.0.0" 82559 - sources."dir-glob-3.0.1" 82560 - (sources."dot-prop-7.2.0" // { 82561 - dependencies = [ 82562 - sources."type-fest-2.19.0" 82563 - ]; 82564 - }) 82565 - sources."duplexer3-0.1.5" 82566 - sources."eastasianwidth-0.2.0" 82567 - sources."elegant-spinner-1.0.1" 82568 - sources."emoji-regex-8.0.0" 82569 - sources."end-of-stream-1.4.4" 82570 - sources."error-ex-1.3.2" 82571 - sources."escape-goat-4.0.0" 82572 - sources."escape-string-regexp-1.0.5" 82573 - sources."execa-5.1.1" 82574 - sources."exit-hook-3.2.0" 82575 - sources."external-editor-3.1.0" 82576 - sources."fast-glob-3.3.1" 82577 - sources."fastq-1.15.0" 82578 - sources."figures-3.2.0" 82579 - sources."fill-range-7.0.1" 82580 - (sources."find-up-4.1.0" // { 82581 - dependencies = [ 82582 - sources."path-exists-4.0.0" 82583 - ]; 82584 - }) 82585 - sources."form-data-encoder-2.1.4" 82586 - sources."fs-extra-10.1.0" 82587 - sources."fs.realpath-1.0.0" 82588 - sources."function-bind-1.1.1" 82589 - sources."get-stream-6.0.1" 82590 - sources."github-url-from-git-1.5.0" 82591 - sources."glob-7.2.3" 82592 - sources."glob-parent-5.1.2" 82593 - sources."global-dirs-3.0.1" 82594 - sources."globby-13.2.2" 82595 - sources."got-11.8.6" 82596 - sources."graceful-fs-4.2.11" 82597 - sources."hard-rejection-2.1.0" 82598 - sources."has-1.0.3" 82599 - (sources."has-ansi-2.0.0" // { 82600 - dependencies = [ 82601 - sources."ansi-regex-2.1.1" 82602 - ]; 82603 - }) 82604 - sources."has-flag-4.0.0" 82605 - sources."has-yarn-3.0.0" 82606 - sources."hosted-git-info-6.1.1" 82607 - sources."http-cache-semantics-4.1.1" 82608 - (sources."http2-wrapper-1.0.3" // { 82609 - dependencies = [ 82610 - sources."quick-lru-5.1.1" 82611 - ]; 82612 - }) 82613 - sources."human-signals-2.1.0" 82614 - sources."iconv-lite-0.4.24" 82615 - sources."ieee754-1.2.1" 82616 - sources."ignore-5.2.4" 82617 - (sources."ignore-walk-6.0.3" // { 82618 - dependencies = [ 82619 - sources."brace-expansion-2.0.1" 82620 - sources."minimatch-9.0.3" 82621 - ]; 82622 - }) 82623 - sources."import-cwd-3.0.0" 82624 - (sources."import-fresh-3.3.0" // { 82625 - dependencies = [ 82626 - sources."resolve-from-4.0.0" 82627 - ]; 82628 - }) 82629 - sources."import-from-3.0.0" 82630 - sources."import-lazy-4.0.0" 82631 - (sources."import-local-3.1.0" // { 82632 - dependencies = [ 82633 - sources."pkg-dir-4.2.0" 82634 - ]; 82635 - }) 82636 - sources."imurmurhash-0.1.4" 82637 - sources."indent-string-5.0.0" 82638 - sources."inflight-1.0.6" 82639 - sources."inherits-2.0.4" 82640 - sources."ini-2.0.0" 82641 - sources."inquirer-8.2.6" 82642 - (sources."inquirer-autosubmit-prompt-0.2.0" // { 82643 - dependencies = [ 82644 - sources."ansi-escapes-3.2.0" 82645 - sources."ansi-regex-3.0.1" 82646 - sources."ansi-styles-3.2.1" 82647 - sources."chalk-2.4.2" 82648 - sources."cli-cursor-2.1.0" 82649 - sources."cli-width-2.2.1" 82650 - sources."color-convert-1.9.3" 82651 - sources."color-name-1.1.3" 82652 - sources."figures-2.0.0" 82653 - sources."has-flag-3.0.0" 82654 - sources."inquirer-6.5.2" 82655 - sources."is-fullwidth-code-point-2.0.0" 82656 - sources."mimic-fn-1.2.0" 82657 - sources."mute-stream-0.0.7" 82658 - sources."onetime-2.0.1" 82659 - sources."restore-cursor-2.0.0" 82660 - sources."rxjs-6.6.7" 82661 - (sources."string-width-2.1.1" // { 82662 - dependencies = [ 82663 - sources."strip-ansi-4.0.0" 82664 - ]; 82665 - }) 82666 - (sources."strip-ansi-5.2.0" // { 82667 - dependencies = [ 82668 - sources."ansi-regex-4.1.1" 82669 - ]; 82670 - }) 82671 - sources."supports-color-5.5.0" 82672 - sources."tslib-1.14.1" 82673 - ]; 82674 - }) 82675 - sources."is-arrayish-0.2.1" 82676 - sources."is-ci-3.0.1" 82677 - sources."is-core-module-2.13.0" 82678 - sources."is-docker-3.0.0" 82679 - sources."is-extglob-2.1.1" 82680 - sources."is-fullwidth-code-point-3.0.0" 82681 - sources."is-glob-4.0.3" 82682 - sources."is-inside-container-1.0.0" 82683 - (sources."is-installed-globally-0.4.0" // { 82684 - dependencies = [ 82685 - sources."is-path-inside-3.0.3" 82686 - ]; 82687 - }) 82688 - sources."is-interactive-2.0.0" 82689 - sources."is-name-taken-2.0.0" 82690 - sources."is-npm-6.0.0" 82691 - sources."is-number-7.0.0" 82692 - sources."is-obj-2.0.0" 82693 - (sources."is-observable-1.1.0" // { 82694 - dependencies = [ 82695 - sources."symbol-observable-1.2.0" 82696 - ]; 82697 - }) 82698 - sources."is-path-cwd-3.0.0" 82699 - sources."is-path-inside-4.0.0" 82700 - sources."is-plain-obj-1.1.0" 82701 - sources."is-promise-2.2.2" 82702 - sources."is-scoped-3.0.0" 82703 - sources."is-stream-2.0.1" 82704 - sources."is-typedarray-1.0.0" 82705 - sources."is-unicode-supported-1.3.0" 82706 - sources."is-url-superb-6.1.0" 82707 - (sources."is-wsl-2.2.0" // { 82708 - dependencies = [ 82709 - sources."is-docker-2.2.1" 82710 - ]; 82711 - }) 82712 - sources."is-yarn-global-0.4.1" 82713 - sources."isexe-2.0.0" 82714 - sources."issue-regex-4.1.0" 82715 - sources."js-tokens-4.0.0" 82716 - sources."js-yaml-4.1.0" 82717 - sources."json-buffer-3.0.1" 82718 - sources."json-parse-even-better-errors-2.3.1" 82719 - sources."jsonfile-6.1.0" 82720 - sources."keyv-4.5.3" 82721 - sources."kind-of-6.0.3" 82722 - sources."latest-version-7.0.0" 82723 - sources."lines-and-columns-1.2.4" 82724 - (sources."listr-0.14.3" // { 82725 - dependencies = [ 82726 - sources."is-stream-1.1.0" 82727 - sources."p-map-2.1.0" 82728 - sources."rxjs-6.6.7" 82729 - sources."tslib-1.14.1" 82730 - ]; 82731 - }) 82732 - (sources."listr-input-0.2.1" // { 82733 - dependencies = [ 82734 - sources."inquirer-7.3.3" 82735 - sources."rxjs-6.6.7" 82736 - sources."tslib-1.14.1" 82737 - ]; 82738 - }) 82739 - sources."listr-silent-renderer-1.1.1" 82740 - (sources."listr-update-renderer-0.5.0" // { 82741 - dependencies = [ 82742 - sources."ansi-regex-2.1.1" 82743 - sources."ansi-styles-2.2.1" 82744 - sources."chalk-1.1.3" 82745 - sources."figures-1.7.0" 82746 - sources."indent-string-3.2.0" 82747 - sources."log-symbols-1.0.2" 82748 - sources."strip-ansi-3.0.1" 82749 - sources."supports-color-2.0.0" 82750 - ]; 82751 - }) 82752 - (sources."listr-verbose-renderer-0.5.0" // { 82753 - dependencies = [ 82754 - sources."ansi-styles-3.2.1" 82755 - sources."chalk-2.4.2" 82756 - sources."cli-cursor-2.1.0" 82757 - sources."color-convert-1.9.3" 82758 - sources."color-name-1.1.3" 82759 - sources."figures-2.0.0" 82760 - sources."has-flag-3.0.0" 82761 - sources."mimic-fn-1.2.0" 82762 - sources."onetime-2.0.1" 82763 - sources."restore-cursor-2.0.0" 82764 - sources."supports-color-5.5.0" 82765 - ]; 82766 - }) 82767 - sources."locate-path-5.0.0" 82768 - sources."lodash-4.17.21" 82769 - sources."lodash.isequal-4.5.0" 82770 - sources."lodash.zip-4.2.0" 82771 - (sources."log-symbols-5.1.0" // { 82772 - dependencies = [ 82773 - sources."chalk-5.3.0" 82774 - ]; 82775 - }) 82776 - (sources."log-update-2.3.0" // { 82777 - dependencies = [ 82778 - sources."ansi-escapes-3.2.0" 82779 - sources."ansi-regex-3.0.1" 82780 - sources."cli-cursor-2.1.0" 82781 - sources."is-fullwidth-code-point-2.0.0" 82782 - sources."mimic-fn-1.2.0" 82783 - sources."onetime-2.0.1" 82784 - sources."restore-cursor-2.0.0" 82785 - sources."string-width-2.1.1" 82786 - sources."strip-ansi-4.0.0" 82787 - sources."wrap-ansi-3.0.1" 82788 - ]; 82789 - }) 82790 - sources."lowercase-keys-2.0.0" 82791 - sources."lru-cache-7.18.3" 82792 - (sources."make-dir-3.1.0" // { 82793 - dependencies = [ 82794 - sources."semver-6.3.1" 82795 - ]; 82796 - }) 82797 - sources."map-obj-4.3.0" 82798 - (sources."meow-12.0.1" // { 82799 - dependencies = [ 82800 - sources."type-fest-3.13.1" 82801 - ]; 82802 - }) 82803 - sources."merge-stream-2.0.0" 82804 - sources."merge2-1.4.1" 82805 - sources."micromatch-4.0.5" 82806 - sources."mimic-fn-2.1.0" 82807 - sources."mimic-response-1.0.1" 82808 - sources."min-indent-1.0.1" 82809 - sources."minimatch-3.1.2" 82810 - sources."minimist-1.2.8" 82811 - sources."minimist-options-4.1.0" 82812 - sources."mute-stream-0.0.8" 82813 - (sources."new-github-release-url-2.0.0" // { 82814 - dependencies = [ 82815 - sources."type-fest-2.19.0" 82816 - ]; 82817 - }) 82818 - sources."normalize-package-data-5.0.0" 82819 - sources."normalize-url-6.1.0" 82820 - (sources."np-8.0.4" // { 82821 - dependencies = [ 82822 - sources."chalk-5.3.0" 82823 - sources."cli-width-4.1.0" 82824 - sources."escape-string-regexp-5.0.0" 82825 - sources."execa-7.2.0" 82826 - sources."figures-5.0.0" 82827 - sources."human-signals-4.3.1" 82828 - sources."inquirer-9.2.10" 82829 - sources."is-stream-3.0.0" 82830 - sources."mimic-fn-4.0.0" 82831 - sources."mute-stream-1.0.0" 82832 - sources."npm-run-path-5.1.0" 82833 - sources."onetime-6.0.0" 82834 - sources."path-key-4.0.0" 82835 - sources."run-async-3.0.0" 82836 - sources."strip-final-newline-3.0.0" 82837 - sources."update-notifier-6.0.2" 82838 - ]; 82839 - }) 82840 - sources."npm-name-7.1.0" 82841 - sources."npm-run-path-4.0.1" 82842 - sources."number-is-nan-1.0.1" 82843 - sources."object-assign-4.1.1" 82844 - sources."once-1.4.0" 82845 - sources."onetime-5.1.2" 82846 - sources."open-9.1.0" 82847 - (sources."ora-5.4.1" // { 82848 - dependencies = [ 82849 - sources."is-interactive-1.0.0" 82850 - sources."is-unicode-supported-0.1.0" 82851 - sources."log-symbols-4.1.0" 82852 - ]; 82853 - }) 82854 - sources."org-regex-1.0.0" 82855 - sources."os-tmpdir-1.0.2" 82856 - (sources."ow-1.1.1" // { 82857 - dependencies = [ 82858 - sources."@sindresorhus/is-5.6.0" 82859 - sources."callsites-4.0.0" 82860 - ]; 82861 - }) 82862 - sources."p-cancelable-2.1.1" 82863 - sources."p-limit-2.3.0" 82864 - sources."p-locate-4.1.0" 82865 - sources."p-lock-2.1.0" 82866 - sources."p-map-5.5.0" 82867 - (sources."p-memoize-7.1.1" // { 82868 - dependencies = [ 82869 - sources."mimic-fn-4.0.0" 82870 - sources."type-fest-3.13.1" 82871 - ]; 82872 - }) 82873 - sources."p-timeout-6.1.2" 82874 - sources."p-try-2.2.0" 82875 - (sources."package-json-8.1.1" // { 82876 - dependencies = [ 82877 - sources."@sindresorhus/is-5.6.0" 82878 - sources."@szmarczak/http-timer-5.0.1" 82879 - sources."cacheable-lookup-7.0.0" 82880 - sources."cacheable-request-10.2.13" 82881 - sources."got-12.6.1" 82882 - sources."http2-wrapper-2.2.0" 82883 - sources."lowercase-keys-3.0.0" 82884 - sources."mimic-response-4.0.0" 82885 - sources."normalize-url-8.0.0" 82886 - sources."p-cancelable-3.0.0" 82887 - sources."quick-lru-5.1.1" 82888 - sources."registry-auth-token-5.0.2" 82889 - sources."responselike-3.0.0" 82890 - ]; 82891 - }) 82892 - sources."package-name-conflict-1.0.3" 82893 - sources."parent-module-1.0.1" 82894 - sources."parse-json-5.2.0" 82895 - sources."parse-json-object-2.0.1" 82896 - sources."path-exists-5.0.0" 82897 - sources."path-is-absolute-1.0.1" 82898 - sources."path-key-3.1.1" 82899 - sources."path-type-4.0.0" 82900 - sources."picomatch-2.3.1" 82901 - (sources."pkg-dir-7.0.0" // { 82902 - dependencies = [ 82903 - sources."find-up-6.3.0" 82904 - sources."locate-path-7.2.0" 82905 - sources."p-limit-4.0.0" 82906 - sources."p-locate-6.0.0" 82907 - sources."yocto-queue-1.0.0" 82908 - ]; 82909 - }) 82910 - sources."prepend-http-2.0.0" 82911 - sources."progress-2.0.3" 82912 - sources."proto-list-1.2.4" 82913 - sources."pump-3.0.0" 82914 - sources."pupa-3.1.0" 82915 - sources."queue-microtask-1.2.3" 82916 - sources."quick-lru-6.1.1" 82917 - (sources."rc-1.2.8" // { 82918 - dependencies = [ 82919 - sources."ini-1.3.8" 82920 - ]; 82921 - }) 82922 - sources."read-file-safe-1.0.10" 82923 - (sources."read-json-safe-1.0.5" // { 82924 - dependencies = [ 82925 - sources."parse-json-object-1.1.0" 82926 - ]; 82927 - }) 82928 - (sources."read-pkg-7.1.0" // { 82929 - dependencies = [ 82930 - sources."hosted-git-info-4.1.0" 82931 - sources."lru-cache-6.0.0" 82932 - sources."normalize-package-data-3.0.3" 82933 - sources."type-fest-2.19.0" 82934 - ]; 82935 - }) 82936 - (sources."read-pkg-up-9.1.0" // { 82937 - dependencies = [ 82938 - sources."find-up-6.3.0" 82939 - sources."locate-path-7.2.0" 82940 - sources."p-limit-4.0.0" 82941 - sources."p-locate-6.0.0" 82942 - sources."type-fest-2.19.0" 82943 - sources."yocto-queue-1.0.0" 82944 - ]; 82945 - }) 82946 - sources."readable-stream-3.6.2" 82947 - sources."redent-4.0.0" 82948 - sources."registry-auth-token-4.2.2" 82949 - sources."registry-url-6.0.1" 82950 - sources."resolve-alpn-1.2.1" 82951 - sources."resolve-cwd-3.0.0" 82952 - sources."resolve-from-5.0.0" 82953 - sources."responselike-2.0.1" 82954 - sources."restore-cursor-3.1.0" 82955 - sources."reusify-1.0.4" 82956 - sources."rimraf-3.0.2" 82957 - sources."run-applescript-5.0.0" 82958 - sources."run-async-2.4.1" 82959 - sources."run-parallel-1.2.0" 82960 - sources."rxjs-7.8.1" 82961 - sources."safe-buffer-5.2.1" 82962 - sources."safer-buffer-2.1.2" 82963 - sources."scoped-regex-3.0.0" 82964 - (sources."semver-7.5.4" // { 82965 - dependencies = [ 82966 - sources."lru-cache-6.0.0" 82967 - ]; 82968 - }) 82969 - sources."semver-diff-4.0.0" 82970 - sources."shebang-command-2.0.0" 82971 - sources."shebang-regex-3.0.0" 82972 - sources."signal-exit-3.0.7" 82973 - sources."slash-4.0.0" 82974 - sources."slice-ansi-0.0.4" 82975 - sources."spdx-correct-3.2.0" 82976 - sources."spdx-exceptions-2.3.0" 82977 - sources."spdx-expression-parse-3.0.1" 82978 - sources."spdx-license-ids-3.0.13" 82979 - sources."string-width-4.2.3" 82980 - sources."string_decoder-1.3.0" 82981 - sources."strip-ansi-6.0.1" 82982 - sources."strip-final-newline-2.0.0" 82983 - sources."strip-indent-4.0.0" 82984 - sources."strip-json-comments-2.0.1" 82985 - sources."supports-color-7.2.0" 82986 - sources."supports-hyperlinks-2.3.0" 82987 - sources."symbol-observable-4.0.0" 82988 - (sources."terminal-link-3.0.0" // { 82989 - dependencies = [ 82990 - sources."ansi-escapes-5.0.0" 82991 - sources."type-fest-1.4.0" 82992 - ]; 82993 - }) 82994 - sources."through-2.3.8" 82995 - sources."titleize-3.0.0" 82996 - sources."tmp-0.0.33" 82997 - sources."to-readable-stream-1.0.0" 82998 - sources."to-regex-range-5.0.1" 82999 - sources."trim-newlines-5.0.0" 83000 - sources."tslib-2.6.1" 83001 - sources."type-fest-0.21.3" 83002 - sources."typedarray-to-buffer-3.1.5" 83003 - sources."types-eslintrc-1.0.3" 83004 - sources."types-json-1.2.2" 83005 - sources."types-pkg-json-1.2.1" 83006 - sources."unique-string-3.0.0" 83007 - sources."universalify-2.0.0" 83008 - sources."untildify-4.0.0" 83009 - (sources."update-notifier-5.1.0" // { 83010 - dependencies = [ 83011 - sources."@sindresorhus/is-0.14.0" 83012 - sources."@szmarczak/http-timer-1.1.2" 83013 - sources."boxen-5.1.2" 83014 - (sources."cacheable-request-6.1.0" // { 83015 - dependencies = [ 83016 - sources."get-stream-5.2.0" 83017 - sources."lowercase-keys-2.0.0" 83018 - ]; 83019 - }) 83020 - sources."camelcase-6.3.0" 83021 - sources."ci-info-2.0.0" 83022 - sources."cli-boxes-2.2.1" 83023 - sources."configstore-5.0.1" 83024 - sources."crypto-random-string-2.0.0" 83025 - sources."decompress-response-3.3.0" 83026 - sources."defer-to-connect-1.1.3" 83027 - sources."dot-prop-5.3.0" 83028 - sources."escape-goat-2.1.1" 83029 - sources."get-stream-4.1.0" 83030 - sources."got-9.6.0" 83031 - sources."has-yarn-2.1.0" 83032 - sources."import-lazy-2.1.0" 83033 - sources."is-ci-2.0.0" 83034 - sources."is-npm-5.0.0" 83035 - sources."is-yarn-global-0.3.0" 83036 - sources."json-buffer-3.0.0" 83037 - sources."keyv-3.1.0" 83038 - sources."latest-version-5.1.0" 83039 - sources."lowercase-keys-1.0.1" 83040 - sources."normalize-url-4.5.1" 83041 - sources."p-cancelable-1.1.0" 83042 - (sources."package-json-6.5.0" // { 83043 - dependencies = [ 83044 - sources."semver-6.3.1" 83045 - ]; 83046 - }) 83047 - sources."pupa-2.1.1" 83048 - sources."registry-url-5.1.0" 83049 - sources."responselike-1.0.2" 83050 - (sources."semver-diff-3.1.1" // { 83051 - dependencies = [ 83052 - sources."semver-6.3.1" 83053 - ]; 83054 - }) 83055 - sources."type-fest-0.20.2" 83056 - sources."unique-string-2.0.0" 83057 - sources."widest-line-3.1.0" 83058 - sources."wrap-ansi-7.0.0" 83059 - sources."xdg-basedir-4.0.0" 83060 - ]; 83061 - }) 83062 - sources."url-parse-lax-3.0.0" 83063 - sources."util-deprecate-1.0.2" 83064 - sources."vali-date-1.0.0" 83065 - sources."validate-npm-package-license-3.0.4" 83066 - sources."validate-npm-package-name-3.0.0" 83067 - sources."wcwidth-1.0.1" 83068 - sources."which-2.0.2" 83069 - (sources."widest-line-4.0.1" // { 83070 - dependencies = [ 83071 - sources."ansi-regex-6.0.1" 83072 - sources."emoji-regex-9.2.2" 83073 - sources."string-width-5.1.2" 83074 - sources."strip-ansi-7.1.0" 83075 - ]; 83076 - }) 83077 - sources."wrap-ansi-6.2.0" 83078 - sources."wrappy-1.0.2" 83079 - sources."write-file-atomic-3.0.3" 83080 - sources."xdg-basedir-5.1.0" 83081 - sources."yallist-4.0.0" 83082 - sources."yargs-parser-21.1.1" 83083 - sources."yocto-queue-0.1.0" 83084 - ]; 83085 - buildInputs = globalBuildInputs; 83086 - meta = { 83087 - description = "CLI tool for the Maizzle Email Framework"; 83088 - homepage = "https://maizzle.com"; 83089 - license = "MIT"; 83090 }; 83091 production = true; 83092 bypassCache = true;
··· 81163 bypassCache = true; 81164 reconstructLock = true; 81165 }; 81166 "@forge/cli" = nodeEnv.buildNodePackage { 81167 name = "_at_forge_slash_cli"; 81168 packageName = "@forge/cli"; ··· 82332 description = "A command line interface for managing Atlassian-hosted apps"; 82333 homepage = "https://developer.atlassian.com/platform/forge"; 82334 license = "UNLICENSED"; 82335 }; 82336 production = true; 82337 bypassCache = true;
-3
pkgs/development/node-packages/overrides.nix
··· 112 meta = oldAttrs.meta // { broken = since "12"; }; 113 }); 114 115 - eask = prev."@emacs-eask/cli".override { 116 - name = "eask"; 117 - }; 118 119 expo-cli = prev."expo-cli".override (oldAttrs: { 120 # The traveling-fastlane-darwin optional dependency aborts build on Linux.
··· 112 meta = oldAttrs.meta // { broken = since "12"; }; 113 }); 114 115 116 expo-cli = prev."expo-cli".override (oldAttrs: { 117 # The traveling-fastlane-darwin optional dependency aborts build on Linux.
+1 -1
pkgs/development/python-modules/cassandra-driver/default.nix
··· 110 homepage = "http://datastax.github.io/python-driver"; 111 changelog = "https://github.com/datastax/python-driver/blob/${version}/CHANGELOG.rst"; 112 license = licenses.asl20; 113 - maintainers = with maintainers; [ turion ris ]; 114 }; 115 }
··· 110 homepage = "http://datastax.github.io/python-driver"; 111 changelog = "https://github.com/datastax/python-driver/blob/${version}/CHANGELOG.rst"; 112 license = licenses.asl20; 113 + maintainers = with maintainers; [ ris ]; 114 }; 115 }
+2 -2
pkgs/development/python-modules/ecs-logging/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "ecs-logging"; 11 - version = "2.0.2"; 12 format = "flit"; 13 14 disabled = pythonOlder "3.8"; ··· 17 owner = "elastic"; 18 repo = "ecs-logging-python"; 19 rev = "refs/tags/${version}"; 20 - hash = "sha256-CfPpUpzNfPuCAiuNsJrJ1nVLiUCPvclfrK7tByytoQE="; 21 }; 22 23 nativeBuildInputs = [
··· 8 9 buildPythonPackage rec { 10 pname = "ecs-logging"; 11 + version = "2.1.0"; 12 format = "flit"; 13 14 disabled = pythonOlder "3.8"; ··· 17 owner = "elastic"; 18 repo = "ecs-logging-python"; 19 rev = "refs/tags/${version}"; 20 + hash = "sha256-Gf44bT3/gmHy+yaQ1+bhCFB33ym2G14tzNqTQyC3BJU="; 21 }; 22 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/elasticsearch8/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "elasticsearch8"; 13 - version = "8.7.0"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.7"; 17 18 src = fetchPypi { 19 inherit pname version; 20 - hash = "sha256-mRy48OYsm+0M1/D+abs83RiqN8wQr/Z6SZUY4TNg190="; 21 }; 22 23 nativeBuildInputs = [
··· 10 11 buildPythonPackage rec { 12 pname = "elasticsearch8"; 13 + version = "8.9.0"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.7"; 17 18 src = fetchPypi { 19 inherit pname version; 20 + hash = "sha256-9j71MX3ITwfwFfIVvQIbXHu4r/3qz9SNAz8XfeAyWTc="; 21 }; 22 23 nativeBuildInputs = [
+6 -2
pkgs/development/python-modules/es-client/default.nix
··· 10 , pytest-asyncio 11 , pytestCheckHook 12 , pythonOlder 13 , pyyaml 14 , requests 15 , six ··· 18 19 buildPythonPackage rec { 20 pname = "es-client"; 21 - version = "8.7.0"; 22 format = "pyproject"; 23 24 disabled = pythonOlder "3.7"; ··· 27 owner = "untergeek"; 28 repo = "es_client"; 29 rev = "refs/tags/v${version}"; 30 - hash = "sha256-DJIo0yFJGR9gw5UJnmgnBFZx0uXUEW3rWT49jhfnXkQ="; 31 }; 32 33 nativeBuildInputs = [ 34 hatchling 35 ]; 36 37 propagatedBuildInputs = [
··· 10 , pytest-asyncio 11 , pytestCheckHook 12 , pythonOlder 13 + , pythonRelaxDepsHook 14 , pyyaml 15 , requests 16 , six ··· 19 20 buildPythonPackage rec { 21 pname = "es-client"; 22 + version = "8.9.0"; 23 format = "pyproject"; 24 25 disabled = pythonOlder "3.7"; ··· 28 owner = "untergeek"; 29 repo = "es_client"; 30 rev = "refs/tags/v${version}"; 31 + hash = "sha256-pzCjVkZ/NmHSe6X8dNH1YvjTu3njQaJe4CuguqrJNs8="; 32 }; 33 34 + pythonRelaxDeps = true; 35 + 36 nativeBuildInputs = [ 37 hatchling 38 + pythonRelaxDepsHook 39 ]; 40 41 propagatedBuildInputs = [
+1 -1
pkgs/development/python-modules/gremlinpython/default.nix
··· 79 description = "Gremlin-Python implements Gremlin, the graph traversal language of Apache TinkerPop, within the Python language"; 80 homepage = "https://tinkerpop.apache.org/"; 81 license = licenses.asl20; 82 - maintainers = with maintainers; [ turion ris ]; 83 }; 84 }
··· 79 description = "Gremlin-Python implements Gremlin, the graph traversal language of Apache TinkerPop, within the Python language"; 80 homepage = "https://tinkerpop.apache.org/"; 81 license = licenses.asl20; 82 + maintainers = with maintainers; [ ris ]; 83 }; 84 }
+22 -18
pkgs/development/python-modules/irc/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 - , isPy3k 5 - , six 6 , jaraco-logging 7 - , jaraco-text 8 , jaraco-stream 9 , pytz 10 - , jaraco-itertools 11 , setuptools-scm 12 - , jaraco-collections 13 - , importlib-metadata 14 }: 15 16 buildPythonPackage rec { 17 pname = "irc"; 18 - version = "20.1.0"; 19 format = "pyproject"; 20 21 - disabled = !isPy3k; 22 23 src = fetchPypi { 24 inherit pname version; 25 - hash = "sha256-tvc3ky3UeR87GOMZ3nt9rwLSKFpr6iY9EB9NjlU4B+w="; 26 }; 27 28 - nativeBuildInputs = [ setuptools-scm ]; 29 30 propagatedBuildInputs = [ 31 - six 32 - importlib-metadata 33 jaraco-logging 34 - jaraco-text 35 jaraco-stream 36 pytz 37 - jaraco-itertools 38 - jaraco-collections 39 ]; 40 41 - doCheck = false; 42 43 - pythonImportsCheck = [ "irc" ]; 44 45 meta = with lib; { 46 description = "IRC (Internet Relay Chat) protocol library for Python"; 47 homepage = "https://github.com/jaraco/irc"; 48 license = licenses.mit; 49 - maintainers = with maintainers; []; 50 }; 51 }
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 + , jaraco-collections 5 + , jaraco-itertools 6 , jaraco-logging 7 , jaraco-stream 8 + , jaraco-text 9 + , pytestCheckHook 10 + , pythonOlder 11 , pytz 12 , setuptools-scm 13 }: 14 15 buildPythonPackage rec { 16 pname = "irc"; 17 + version = "20.3.0"; 18 format = "pyproject"; 19 20 + disabled = pythonOlder "3.8"; 21 22 src = fetchPypi { 23 inherit pname version; 24 + hash = "sha256-JFteqYqwAlZnYx53alXjGRfmDvcIxgEC8hmLyfURMjY="; 25 }; 26 27 + nativeBuildInputs = [ 28 + setuptools-scm 29 + ]; 30 31 propagatedBuildInputs = [ 32 + jaraco-collections 33 + jaraco-itertools 34 jaraco-logging 35 jaraco-stream 36 + jaraco-text 37 pytz 38 ]; 39 40 + nativeCheckInputs = [ 41 + pytestCheckHook 42 + ]; 43 44 + pythonImportsCheck = [ 45 + "irc" 46 + ]; 47 48 meta = with lib; { 49 description = "IRC (Internet Relay Chat) protocol library for Python"; 50 homepage = "https://github.com/jaraco/irc"; 51 + changelog = "https://github.com/jaraco/irc/blob/v${version}/NEWS.rst"; 52 license = licenses.mit; 53 + maintainers = with maintainers; [ ]; 54 }; 55 }
+14 -7
pkgs/development/python-modules/jupyterhub-tmpauthenticator/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "jupyterhub-tmpauthenticator"; 10 - version = "0.6"; 11 - disabled = pythonOlder "3.5"; 12 13 src = fetchPypi { 14 inherit pname version; 15 - sha256 = "064x1ypxwx1l270ic97p8czbzb7swl9758v40k3w2gaqf9762f0l"; 16 }; 17 18 - propagatedBuildInputs = [ jupyterhub ]; 19 20 # No tests available in the package 21 doCheck = false; 22 23 - pythonImportsCheck = [ "tmpauthenticator" ]; 24 25 meta = with lib; { 26 - description = "Simple Jupyterhub authenticator that allows anyone to log in."; 27 license = with licenses; [ bsd3 ]; 28 - homepage = "https://github.com/jupyterhub/tmpauthenticator"; 29 maintainers = with maintainers; [ chiroptical ]; 30 }; 31 }
··· 7 8 buildPythonPackage rec { 9 pname = "jupyterhub-tmpauthenticator"; 10 + version = "1.0.0"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.8"; 14 15 src = fetchPypi { 16 inherit pname version; 17 + hash = "sha256-7TuAYP6mRffsZL+O+AMgt5HBu6PhwLYj5A8X8DnMfl0="; 18 }; 19 20 + propagatedBuildInputs = [ 21 + jupyterhub 22 + ]; 23 24 # No tests available in the package 25 doCheck = false; 26 27 + pythonImportsCheck = [ 28 + "tmpauthenticator" 29 + ]; 30 31 meta = with lib; { 32 + description = "Simple Jupyterhub authenticator that allows anyone to log in"; 33 + homepage = "https://github.com/jupyterhub/tmpauthenticator"; 34 + changelog = "https://github.com/jupyterhub/tmpauthenticator/blob/v${version}/CHANGELOG.md"; 35 license = with licenses; [ bsd3 ]; 36 maintainers = with maintainers; [ chiroptical ]; 37 }; 38 }
+14 -5
pkgs/development/python-modules/mkdocs-mermaid2-plugin/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub 2 , beautifulsoup4 3 , jsbeautifier 4 , mkdocs ··· 6 , pymdown-extensions 7 , pyyaml 8 , requests 9 }: 10 11 buildPythonPackage rec { 12 pname = "mkdocs-mermaid2-plugin"; 13 - version = "0.6.0"; 14 15 src = fetchFromGitHub { 16 owner = "fralau"; 17 repo = "mkdocs-mermaid2-plugin"; 18 - rev = "v${version}"; 19 - hash = "sha256-Oe6wkVrsB0NWF+HHeifrEogjxdGPINRDJGkh9p+GoHs="; 20 }; 21 22 propagatedBuildInputs = [ ··· 32 # non-traditional python tests (e.g. nodejs based tests) 33 doCheck = false; 34 35 - pythonImportsCheck = [ "mermaid2" ]; 36 37 meta = with lib; { 38 description = "A MkDocs plugin for including mermaid graphs in markdown sources"; 39 homepage = "https://github.com/fralau/mkdocs-mermaid2-plugin"; 40 license = licenses.mit; 41 maintainers = with maintainers; [ jonringer ]; 42 };
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 , beautifulsoup4 5 , jsbeautifier 6 , mkdocs ··· 8 , pymdown-extensions 9 , pyyaml 10 , requests 11 + , pythonOlder 12 }: 13 14 buildPythonPackage rec { 15 pname = "mkdocs-mermaid2-plugin"; 16 + version = "1.0.1"; 17 + format = "setuptools"; 18 + 19 + disabled = pythonOlder "3.7"; 20 21 src = fetchFromGitHub { 22 owner = "fralau"; 23 repo = "mkdocs-mermaid2-plugin"; 24 + rev = "refs/tags/v${version}"; 25 + hash = "sha256-8/5lltOT78VSMxunIfCeGSBQ7VIRVnk3cHIzd7S+c00="; 26 }; 27 28 propagatedBuildInputs = [ ··· 38 # non-traditional python tests (e.g. nodejs based tests) 39 doCheck = false; 40 41 + pythonImportsCheck = [ 42 + "mermaid2" 43 + ]; 44 45 meta = with lib; { 46 description = "A MkDocs plugin for including mermaid graphs in markdown sources"; 47 homepage = "https://github.com/fralau/mkdocs-mermaid2-plugin"; 48 + changelog = "https://github.com/fralau/mkdocs-mermaid2-plugin/blob/v${version}/CHANGELOG.md"; 49 license = licenses.mit; 50 maintainers = with maintainers; [ jonringer ]; 51 };
+1
pkgs/development/python-modules/opower/default.nix
··· 51 meta = with lib; { 52 description = "Module for getting historical and forecasted usage/cost from utilities that use opower.com"; 53 homepage = "https://github.com/tronikos/opower"; 54 license = licenses.asl20; 55 maintainers = with maintainers; [ fab ]; 56 };
··· 51 meta = with lib; { 52 description = "Module for getting historical and forecasted usage/cost from utilities that use opower.com"; 53 homepage = "https://github.com/tronikos/opower"; 54 + changelog = "https://github.com/tronikos/opower/releases/tag/v${version}"; 55 license = licenses.asl20; 56 maintainers = with maintainers; [ fab ]; 57 };
+2 -2
pkgs/development/python-modules/pex/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "pex"; 10 - version = "2.1.141"; 11 format = "flit"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 - hash = "sha256-EsIurZNgWslUciz5Pc2hj2F4tAJ8hQydRWnVIWdryDc="; 18 }; 19 20 nativeBuildInputs = [
··· 7 8 buildPythonPackage rec { 9 pname = "pex"; 10 + version = "2.1.142"; 11 format = "flit"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 + hash = "sha256-+2WJEOL+rtdl9dZmXqkaRRuj7TzDZn93tyZXxPWRaBM="; 18 }; 19 20 nativeBuildInputs = [
+1 -1
pkgs/development/python-modules/progressbar2/default.nix
··· 40 description = "Text progressbar library"; 41 homepage = "https://progressbar-2.readthedocs.io/"; 42 license = licenses.bsd3; 43 - maintainers = with maintainers; [ ashgillman turion ]; 44 }; 45 }
··· 40 description = "Text progressbar library"; 41 homepage = "https://progressbar-2.readthedocs.io/"; 42 license = licenses.bsd3; 43 + maintainers = with maintainers; [ ashgillman ]; 44 }; 45 }
+2 -2
pkgs/development/python-modules/types-redis/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "types-redis"; 10 - version = "4.6.0.3"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 - hash = "sha256-797zfcDAS/V4YZVlH9aU+L/daT6sCexK9G2Q9yZSVY8="; 16 }; 17 18 propagatedBuildInputs = [
··· 7 8 buildPythonPackage rec { 9 pname = "types-redis"; 10 + version = "4.6.0.4"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 + hash = "sha256-xHWp089z3WlsOIfTBkQyP8VvXgCvlhUQNbO1tSh1ybM="; 16 }; 17 18 propagatedBuildInputs = [
+29
pkgs/development/tools/eask/default.nix
···
··· 1 + { lib 2 + , buildNpmPackage 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildNpmPackage rec { 7 + pname = "eask"; 8 + version = "0.8.1"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "emacs-eask"; 12 + repo = "cli"; 13 + rev = version; 14 + hash = "sha256-NoYWRIkJEOUsHsjBYTtCNrCmAGG0pqaAHDOc9VcaRwk="; 15 + }; 16 + 17 + npmDepsHash = "sha256-ctIVBrx9fagSX3f2/wn5wWkReOYK0nldFoxTJWVsx0g="; 18 + 19 + dontBuild = true; 20 + 21 + meta = { 22 + changelog = "https://github.com/emacs-eask/cli/blob/${src.rev}/CHANGELOG.md"; 23 + description = "CLI for building, runing, testing, and managing your Emacs Lisp dependencies"; 24 + homepage = "https://emacs-eask.github.io/"; 25 + license = lib.licenses.gpl3Plus; 26 + mainProgram = "eask"; 27 + maintainers = with lib.maintainers; [ jcs090218 ]; 28 + }; 29 + }
+1
pkgs/development/tools/eslint_d/default.nix
··· 20 homepage = "github.com/mantoni/eslint_d.js"; 21 license = licenses.mit; 22 maintainers = [ maintainers.ehllie ]; 23 }; 24 }
··· 20 homepage = "github.com/mantoni/eslint_d.js"; 21 license = licenses.mit; 22 maintainers = [ maintainers.ehllie ]; 23 + mainProgram = "eslint_d"; 24 }; 25 }
+28
pkgs/development/tools/maizzle/default.nix
···
··· 1 + { lib 2 + , buildNpmPackage 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildNpmPackage rec { 7 + pname = "maizzle"; 8 + version = "1.5.6"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "maizzle"; 12 + repo = "cli"; 13 + rev = "v${version}"; 14 + hash = "sha256-HGoqwqO50Y1oZBCVXkgM3NyZu+vPz/iniEH9mm/SQ1I="; 15 + }; 16 + 17 + npmDepsHash = "sha256-vqhuoTtrZYmxameaoOfA9N5QGXzdhT1/tWx70KBk5aI="; 18 + 19 + dontNpmBuild = true; 20 + 21 + meta = { 22 + description = "CLI tool for the Maizzle Email Framework"; 23 + homepage = "https://github.com/maizzle/cli"; 24 + license = lib.licenses.mit; 25 + mainProgram = "maizzle"; 26 + maintainers = with lib.maintainers; [ happysalada ]; 27 + }; 28 + }
+14 -6
pkgs/servers/http/dufs/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, rustPlatform, Security, openssl, pkg-config }: 2 3 rustPlatform.buildRustPackage rec { 4 pname = "dufs"; 5 - version = "0.34.2"; 6 7 src = fetchFromGitHub { 8 owner = "sigoden"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-NkH7w5HEQFhnovUmjN/qW5QZwO8mVQZMbhpNFkKtLTI="; 12 }; 13 14 - cargoHash = "sha256-bUznaVyhZswLaXUgC+GUh5ZpJQW7Vkcoui6CO9ds22g="; 15 16 nativeBuildInputs = lib.optionals stdenv.isLinux [ 17 pkg-config ··· 20 buildInputs = lib.optionals stdenv.isLinux [ 21 openssl 22 ] ++ lib.optionals stdenv.isDarwin [ 23 - Security 24 ]; 25 26 # FIXME: checkPhase on darwin will leave some zombie spawn processes ··· 34 meta = with lib; { 35 description = "A file server that supports static serving, uploading, searching, accessing control, webdav"; 36 homepage = "https://github.com/sigoden/dufs"; 37 license = with licenses; [ asl20 /* or */ mit ]; 38 - maintainers = [ maintainers.holymonson ]; 39 }; 40 }
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , stdenv 5 + , pkg-config 6 + , openssl 7 + , darwin 8 + }: 9 10 rustPlatform.buildRustPackage rec { 11 pname = "dufs"; 12 + version = "0.35.0"; 13 14 src = fetchFromGitHub { 15 owner = "sigoden"; 16 repo = pname; 17 rev = "v${version}"; 18 + sha256 = "sha256-FrLvwXEnNEKi8FvPIs6A52WpSUT+pUCc61JBi9M/PPw="; 19 }; 20 21 + cargoHash = "sha256-YHFEjs8a1QJHWYVjAQxmpMIQ2aDbu6mxeuNqcvReYR0="; 22 23 nativeBuildInputs = lib.optionals stdenv.isLinux [ 24 pkg-config ··· 27 buildInputs = lib.optionals stdenv.isLinux [ 28 openssl 29 ] ++ lib.optionals stdenv.isDarwin [ 30 + darwin.apple_sdk.frameworks.Security 31 ]; 32 33 # FIXME: checkPhase on darwin will leave some zombie spawn processes ··· 41 meta = with lib; { 42 description = "A file server that supports static serving, uploading, searching, accessing control, webdav"; 43 homepage = "https://github.com/sigoden/dufs"; 44 + changelog = "https://github.com/sigoden/dufs/blob/${src.rev}/CHANGELOG.md"; 45 license = with licenses; [ asl20 /* or */ mit ]; 46 + maintainers = with maintainers; [ figsoda holymonson ]; 47 }; 48 }
+12 -12
pkgs/tools/admin/elasticsearch-curator/default.nix
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "elasticsearch-curator"; 8 - version = "8.0.4"; 9 format = "pyproject"; 10 11 src = fetchFromGitHub { 12 owner = "elastic"; 13 repo = "curator"; 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-FPp2BpfYsmNwwevYQ6EH3N1q0TjyeEsBeDM9EUbLl+Q="; 16 }; 17 18 - pythonRelaxDeps = [ 19 - "click" 20 - "ecs-logging" 21 - "elasticsearch8" 22 - "es_client" 23 - "pyyaml" 24 - ]; 25 26 nativeBuildInputs = with python3.pkgs; [ 27 hatchling 28 - pythonRelaxDepsHook 29 ]; 30 31 propagatedBuildInputs = with python3.pkgs; [ ··· 77 ]; 78 79 meta = with lib; { 80 homepage = "https://github.com/elastic/curator"; 81 - description = "Curate, or manage, your Elasticsearch indices and snapshots"; 82 license = licenses.asl20; 83 longDescription = '' 84 Elasticsearch Curator helps you curate, or manage, your Elasticsearch ··· 92 93 * Perform various actions on the items which remain in the actionable list. 94 ''; 95 - changelog = "https://github.com/elastic/curator/releases/tag/v${version}"; 96 maintainers = with maintainers; [ basvandijk ]; 97 }; 98 }
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "elasticsearch-curator"; 8 + version = "8.0.8"; 9 format = "pyproject"; 10 11 src = fetchFromGitHub { 12 owner = "elastic"; 13 repo = "curator"; 14 rev = "refs/tags/v${version}"; 15 + hash = "sha256-G8wKeEr7TuUWlqz9hJmnJW7yxn+4WPoStVC0AX5jdHI="; 16 }; 17 18 + postPatch = '' 19 + substituteInPlace pyproject.toml \ 20 + --replace "elasticsearch8==" "elasticsearch8>=" \ 21 + --replace "es_client==" "es_client>=" \ 22 + --replace "ecs-logging==" "ecs-logging>=" \ 23 + --replace "click==" "click>="\ 24 + --replace "pyyaml==" "pyyaml>=" 25 + ''; 26 27 nativeBuildInputs = with python3.pkgs; [ 28 hatchling 29 ]; 30 31 propagatedBuildInputs = with python3.pkgs; [ ··· 77 ]; 78 79 meta = with lib; { 80 + description = "Curate, or manage, your Elasticsearch indices and snapshots"; 81 homepage = "https://github.com/elastic/curator"; 82 + changelog = "https://github.com/elastic/curator/releases/tag/v${version}"; 83 license = licenses.asl20; 84 longDescription = '' 85 Elasticsearch Curator helps you curate, or manage, your Elasticsearch ··· 93 94 * Perform various actions on the items which remain in the actionable list. 95 ''; 96 maintainers = with maintainers; [ basvandijk ]; 97 }; 98 }
+1
pkgs/tools/archivers/zip/default.nix
··· 44 license = licenses.bsdOriginal; 45 platforms = platforms.all; 46 maintainers = [ ]; 47 }; 48 }
··· 44 license = licenses.bsdOriginal; 45 platforms = platforms.all; 46 maintainers = [ ]; 47 + mainProgram = "zip"; 48 }; 49 }
+1
pkgs/tools/misc/catimg/default.nix
··· 19 description = "Insanely fast image printing in your terminal"; 20 maintainers = with maintainers; [ ryantm ]; 21 platforms = platforms.unix; 22 }; 23 24 }
··· 19 description = "Insanely fast image printing in your terminal"; 20 maintainers = with maintainers; [ ryantm ]; 21 platforms = platforms.unix; 22 + mainProgram = "catimg"; 23 }; 24 25 }
+8 -6
pkgs/tools/misc/staruml/default.nix
··· 6 , atk, at-spi2-atk, dbus 7 , gdk-pixbuf, pango, cairo 8 , expat, libdrm, mesa 9 - , alsa-lib, at-spi2-core, cups }: 10 11 let 12 LD_LIBRARY_PATH = lib.makeLibraryPath [ ··· 14 xorg.libX11 xorg.libxcb xorg.libXcomposite 15 xorg.libXcursor xorg.libXext xorg.libXfixes 16 xorg.libXi xorg.libXrender xorg.libXtst 17 - nss nspr atk at-spi2-atk dbus 18 - gdk-pixbuf pango cairo 19 xorg.libXrandr expat libdrm 20 mesa alsa-lib at-spi2-core 21 cups 22 ]; 23 in 24 stdenv.mkDerivation rec { 25 - version = "4.1.6"; 26 pname = "staruml"; 27 28 src = 29 fetchurl { 30 - url = "https://staruml.io/download/releases-v4/StarUML_${version}_amd64.deb"; 31 - sha256 = "sha256-CUOdpR8RExMLeOX8469egENotMNuPU4z8S1IGqA21z0="; 32 }; 33 34 nativeBuildInputs = [ wrapGAppsHook dpkg ];
··· 6 , atk, at-spi2-atk, dbus 7 , gdk-pixbuf, pango, cairo 8 , expat, libdrm, mesa 9 + , alsa-lib, at-spi2-core, cups 10 + , libxkbcommon }: 11 12 let 13 LD_LIBRARY_PATH = lib.makeLibraryPath [ ··· 15 xorg.libX11 xorg.libxcb xorg.libXcomposite 16 xorg.libXcursor xorg.libXext xorg.libXfixes 17 xorg.libXi xorg.libXrender xorg.libXtst 18 + xorg.libxshmfence libxkbcommon nss 19 + nspr atk at-spi2-atk 20 + dbus gdk-pixbuf pango cairo 21 xorg.libXrandr expat libdrm 22 mesa alsa-lib at-spi2-core 23 cups 24 ]; 25 in 26 stdenv.mkDerivation rec { 27 + version = "5.1.0"; 28 pname = "staruml"; 29 30 src = 31 fetchurl { 32 + url = "https://staruml-7a0.kxcdn.com/releases-v5/StarUML_${version}_amd64.deb"; 33 + sha256 = "sha256-da1mY3OW24g6Ix0L57CBPbaMeSLzhOOjoBsyZszmNOc="; 34 }; 35 36 nativeBuildInputs = [ wrapGAppsHook dpkg ];
+34
pkgs/tools/misc/ulid/default.nix
···
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "ulid"; 8 + version = "2.1.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "oklog"; 12 + repo = "ulid"; 13 + rev = "v${version}"; 14 + hash = "sha256-/oQPgcO1xKbHXutxz0WPfIduShPrfH1l+7/mj8jLst8="; 15 + }; 16 + 17 + vendorHash = "sha256-s1YkEwFxE1zpUUCgwOAl8i6/9HB2rcGG+4kqnixTit0="; 18 + 19 + ldflags = [ "-s" "-w" ]; 20 + 21 + checkFlags = [ 22 + # skip flaky test 23 + "-skip=TestMonotonicSafe" 24 + ]; 25 + 26 + meta = with lib; { 27 + description = "Universally Unique Lexicographically Sortable Identifier (ULID) in Go"; 28 + homepage = "https://github.com/oklog/ulid"; 29 + changelog = "https://github.com/oklog/ulid/blob/${src.rev}/CHANGELOG.md"; 30 + license = licenses.asl20; 31 + maintainers = with maintainers; [ figsoda ]; 32 + mainProgram = "ulid"; 33 + }; 34 + }
+1
pkgs/tools/wayland/cliphist/default.nix
··· 19 license = licenses.gpl3Only; 20 platforms = platforms.linux; 21 maintainers = with maintainers; [ dit7ya ]; 22 }; 23 }
··· 19 license = licenses.gpl3Only; 20 platforms = platforms.linux; 21 maintainers = with maintainers; [ dit7ya ]; 22 + mainProgram = "cliphist"; 23 }; 24 }
+7 -3
pkgs/top-level/all-packages.nix
··· 597 598 dtv-scan-tables = callPackage ../data/misc/dtv-scan-tables { }; 599 600 - dufs = callPackage ../servers/http/dufs { 601 - inherit (darwin.apple_sdk.frameworks) Security; 602 - }; 603 604 dynein = callPackage ../development/tools/database/dynein { 605 inherit (darwin.apple_sdk.frameworks) Security; ··· 14049 14050 uivonim = callPackage ../applications/editors/uivonim { }; 14051 14052 umlet = callPackage ../tools/misc/umlet { }; 14053 14054 unetbootin = libsForQt5.callPackage ../tools/cd-dvd/unetbootin { }; ··· 19047 19048 dwz = callPackage ../development/tools/misc/dwz { }; 19049 19050 easypdkprog = callPackage ../development/embedded/easypdkprog { }; 19051 19052 eclint = callPackage ../development/tools/eclint { }; ··· 19531 }); 19532 19533 lurk = callPackage ../development/tools/lurk { }; 19534 19535 malt = callPackage ../development/tools/profiling/malt { }; 19536
··· 597 598 dtv-scan-tables = callPackage ../data/misc/dtv-scan-tables { }; 599 600 + dufs = callPackage ../servers/http/dufs { }; 601 602 dynein = callPackage ../development/tools/database/dynein { 603 inherit (darwin.apple_sdk.frameworks) Security; ··· 14047 14048 uivonim = callPackage ../applications/editors/uivonim { }; 14049 14050 + ulid = callPackage ../tools/misc/ulid { }; 14051 + 14052 umlet = callPackage ../tools/misc/umlet { }; 14053 14054 unetbootin = libsForQt5.callPackage ../tools/cd-dvd/unetbootin { }; ··· 19047 19048 dwz = callPackage ../development/tools/misc/dwz { }; 19049 19050 + eask = callPackage ../development/tools/eask { }; 19051 + 19052 easypdkprog = callPackage ../development/embedded/easypdkprog { }; 19053 19054 eclint = callPackage ../development/tools/eclint { }; ··· 19533 }); 19534 19535 lurk = callPackage ../development/tools/lurk { }; 19536 + 19537 + maizzle = callPackage ../development/tools/maizzle { }; 19538 19539 malt = callPackage ../development/tools/profiling/malt { }; 19540