Merge master into staging-next

authored by github-actions[bot] and committed by GitHub fe2479b1 6620dd57

+604 -423
+1
.gitignore
··· 11 11 result-* 12 12 result 13 13 repl-result-* 14 + tags 14 15 !pkgs/development/python-modules/result 15 16 /doc/NEWS.html 16 17 /doc/NEWS.txt
+1 -1
maintainers/maintainer-list.nix
··· 681 681 }; 682 682 ajs124 = { 683 683 email = "nix@ajs124.de"; 684 - matrix = "@andreas.schraegle:helsinki-systems.de"; 684 + matrix = "@ajs124:ajs124.de"; 685 685 github = "ajs124"; 686 686 githubId = 1229027; 687 687 name = "Andreas Schrägle";
-1
maintainers/team-list.nix
··· 429 429 helsinki-systems = { 430 430 # Verify additions to this team with at least one already existing member of the team. 431 431 members = [ 432 - ajs124 433 432 das_j 434 433 ]; 435 434 scope = "Group registration for packages maintained by Helsinki Systems";
+20 -8
nixos/modules/services/web-apps/miniflux.nix
··· 16 16 { 17 17 options = { 18 18 services.miniflux = { 19 - enable = mkEnableOption (lib.mdDoc "miniflux and creates a local postgres database for it"); 19 + enable = mkEnableOption (lib.mdDoc "miniflux"); 20 20 21 21 package = mkPackageOption pkgs "miniflux" { }; 22 + 23 + createDatabaseLocally = lib.mkOption { 24 + type = lib.types.bool; 25 + default = true; 26 + description = '' 27 + Whether a PostgreSQL database should be automatically created and 28 + configured on the local host. If set to `false`, you need provision a 29 + database yourself and make sure to create the hstore extension in it. 30 + ''; 31 + }; 22 32 23 33 config = mkOption { 24 34 type = with types; attrsOf (oneOf [ str int ]); ··· 38 48 ''; 39 49 }; 40 50 41 - adminCredentialsFile = mkOption { 51 + adminCredentialsFile = mkOption { 42 52 type = types.path; 43 53 description = lib.mdDoc '' 44 54 File containing the ADMIN_USERNAME and ··· 51 61 }; 52 62 53 63 config = mkIf cfg.enable { 54 - services.miniflux.config = { 64 + services.miniflux.config = { 55 65 LISTEN_ADDR = mkDefault defaultAddress; 56 - DATABASE_URL = "user=miniflux host=/run/postgresql dbname=miniflux"; 66 + DATABASE_URL = lib.mkIf cfg.createDatabaseLocally "user=miniflux host=/run/postgresql dbname=miniflux"; 57 67 RUN_MIGRATIONS = 1; 58 68 CREATE_ADMIN = 1; 59 69 }; 60 70 61 - services.postgresql = { 71 + services.postgresql = lib.mkIf cfg.createDatabaseLocally { 62 72 enable = true; 63 73 ensureUsers = [ { 64 74 name = "miniflux"; ··· 67 77 ensureDatabases = [ "miniflux" ]; 68 78 }; 69 79 70 - systemd.services.miniflux-dbsetup = { 80 + systemd.services.miniflux-dbsetup = lib.mkIf cfg.createDatabaseLocally { 71 81 description = "Miniflux database setup"; 72 82 requires = [ "postgresql.service" ]; 73 83 after = [ "network.target" "postgresql.service" ]; ··· 81 91 systemd.services.miniflux = { 82 92 description = "Miniflux service"; 83 93 wantedBy = [ "multi-user.target" ]; 84 - requires = [ "miniflux-dbsetup.service" ]; 85 - after = [ "network.target" "postgresql.service" "miniflux-dbsetup.service" ]; 94 + requires = lib.optional cfg.createDatabaseLocally "miniflux-dbsetup.service"; 95 + after = [ "network.target" ] 96 + ++ lib.optionals cfg.createDatabaseLocally [ "postgresql.service" "miniflux-dbsetup.service" ]; 86 97 87 98 serviceConfig = { 88 99 ExecStart = "${cfg.package}/bin/miniflux"; ··· 129 140 include "${pkgs.apparmorRulesFromClosure { name = "miniflux"; } cfg.package}" 130 141 r ${cfg.package}/bin/miniflux, 131 142 r @{sys}/kernel/mm/transparent_hugepage/hpage_pmd_size, 143 + rw /run/miniflux/**, 132 144 } 133 145 ''; 134 146 };
+56 -22
nixos/tests/miniflux.nix
··· 15 15 ADMIN_USERNAME=${username} 16 16 ADMIN_PASSWORD=${password} 17 17 ''; 18 + postgresPassword = "correcthorsebatterystaple"; 19 + postgresPasswordFile = pkgs.writeText "pgpass" '' 20 + *:*:*:*:${postgresPassword} 21 + ''; 18 22 19 23 in 20 24 { ··· 56 60 adminCredentialsFile = customAdminCredentialsFile; 57 61 }; 58 62 }; 63 + 64 + postgresTcp = { config, pkgs, lib, ... }: { 65 + services.postgresql = { 66 + enable = true; 67 + initialScript = pkgs.writeText "init-postgres" '' 68 + CREATE USER miniflux WITH PASSWORD '${postgresPassword}'; 69 + CREATE DATABASE miniflux WITH OWNER miniflux; 70 + ''; 71 + enableTCPIP = true; 72 + authentication = '' 73 + host sameuser miniflux samenet scram-sha-256 74 + ''; 75 + }; 76 + systemd.services.postgresql.postStart = lib.mkAfter '' 77 + $PSQL -tAd miniflux -c 'CREATE EXTENSION hstore;' 78 + ''; 79 + networking.firewall.allowedTCPPorts = [ config.services.postgresql.port ]; 80 + }; 81 + externalDb = { ... }: { 82 + security.apparmor.enable = true; 83 + services.miniflux = { 84 + enable = true; 85 + createDatabaseLocally = false; 86 + inherit adminCredentialsFile; 87 + config = { 88 + DATABASE_URL = "user=miniflux host=postgresTcp dbname=miniflux sslmode=disable"; 89 + PGPASSFILE = "/run/miniflux/pgpass"; 90 + }; 91 + }; 92 + systemd.services.miniflux.preStart = '' 93 + cp ${postgresPasswordFile} /run/miniflux/pgpass 94 + chmod 600 /run/miniflux/pgpass 95 + ''; 96 + }; 59 97 }; 60 98 testScript = '' 61 - start_all() 99 + def runTest(machine, port, user): 100 + machine.wait_for_unit("miniflux.service") 101 + machine.wait_for_open_port(port) 102 + machine.succeed(f"curl --fail 'http://localhost:{port}/healthcheck' | grep OK") 103 + machine.succeed( 104 + f"curl 'http://localhost:{port}/v1/me' -u '{user}' -H Content-Type:application/json | grep '\"is_admin\":true'" 105 + ) 106 + machine.fail('journalctl -b --no-pager --grep "^audit: .*apparmor=\\"DENIED\\""') 62 107 63 - default.wait_for_unit("miniflux.service") 64 - default.wait_for_open_port(${toString defaultPort}) 65 - default.succeed("curl --fail 'http://localhost:${toString defaultPort}/healthcheck' | grep OK") 66 - default.succeed( 67 - "curl 'http://localhost:${toString defaultPort}/v1/me' -u '${defaultUsername}:${defaultPassword}' -H Content-Type:application/json | grep '\"is_admin\":true'" 68 - ) 69 - default.fail('journalctl -b --no-pager --grep "^audit: .*apparmor=\\"DENIED\\""') 108 + default.start() 109 + withoutSudo.start() 110 + customized.start() 111 + postgresTcp.start() 70 112 71 - withoutSudo.wait_for_unit("miniflux.service") 72 - withoutSudo.wait_for_open_port(${toString defaultPort}) 73 - withoutSudo.succeed("curl --fail 'http://localhost:${toString defaultPort}/healthcheck' | grep OK") 74 - withoutSudo.succeed( 75 - "curl 'http://localhost:${toString defaultPort}/v1/me' -u '${defaultUsername}:${defaultPassword}' -H Content-Type:application/json | grep '\"is_admin\":true'" 76 - ) 77 - withoutSudo.fail('journalctl -b --no-pager --grep "^audit: .*apparmor=\\"DENIED\\""') 113 + runTest(default, ${toString defaultPort}, "${defaultUsername}:${defaultPassword}") 114 + runTest(withoutSudo, ${toString defaultPort}, "${defaultUsername}:${defaultPassword}") 115 + runTest(customized, ${toString port}, "${username}:${password}") 78 116 79 - customized.wait_for_unit("miniflux.service") 80 - customized.wait_for_open_port(${toString port}) 81 - customized.succeed("curl --fail 'http://localhost:${toString port}/healthcheck' | grep OK") 82 - customized.succeed( 83 - "curl 'http://localhost:${toString port}/v1/me' -u '${username}:${password}' -H Content-Type:application/json | grep '\"is_admin\":true'" 84 - ) 85 - customized.fail('journalctl -b --no-pager --grep "^audit: .*apparmor=\\"DENIED\\""') 117 + postgresTcp.wait_for_unit("postgresql.service") 118 + externalDb.start() 119 + runTest(externalDb, ${toString defaultPort}, "${defaultUsername}:${defaultPassword}") 86 120 ''; 87 121 })
+2 -2
pkgs/applications/audio/mympd/default.nix
··· 16 16 17 17 stdenv.mkDerivation (finalAttrs: { 18 18 pname = "mympd"; 19 - version = "14.0.3"; 19 + version = "14.0.4"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "jcorporation"; 23 23 repo = "myMPD"; 24 24 rev = "v${finalAttrs.version}"; 25 - sha256 = "sha256-lVGQc33bntvvMMNn8DCYwWGbbRGYvDi6Gxs41t3uLXs="; 25 + sha256 = "sha256-kPh3u6mjTxoqGlhei8kPOyrjU9m7zpv16y5PaGHBsIA="; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+2 -2
pkgs/applications/audio/noson/default.nix
··· 13 13 14 14 stdenv.mkDerivation (finalAttrs: { 15 15 pname = "noson"; 16 - version = "5.6.5"; 16 + version = "5.6.6"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "janbar"; 20 20 repo = "noson-app"; 21 21 rev = finalAttrs.version; 22 - hash = "sha256-UAhaTfj2lCBmHoVEK5IvJfJ9d1OSuZZ+3f5HaTx8hhA="; 22 + hash = "sha256-aBrp+mfY/c6K3dLbDGnEKoUbQC7TlFRQJZCjXPeDZ6s="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+4 -4
pkgs/applications/emulators/pcsx2/default.nix
··· 36 36 pcsx2_patches = fetchFromGitHub { 37 37 owner = "PCSX2"; 38 38 repo = "pcsx2_patches"; 39 - rev = "189f79d73f8cd9fd85c7394a14ee4419ddfa267b"; 40 - sha256 = "sha256-gxwAxR7N7QU4sTGHTdd656dmsW8MrcfroYPvv2UoeRc="; 39 + rev = "e3b354f144de71d2b87471166cca8911867c1dfd"; 40 + sha256 = "sha256-H7cFyBYZumcCZ0/FFOFZoChoi0XPs4siA4dHcFt9U7k="; 41 41 }; 42 42 in 43 43 llvmPackages_17.stdenv.mkDerivation rec { 44 44 pname = "pcsx2"; 45 - version = "1.7.5497"; 45 + version = "1.7.5587"; 46 46 47 47 src = fetchFromGitHub { 48 48 owner = "PCSX2"; 49 49 repo = "pcsx2"; 50 50 fetchSubmodules = true; 51 51 rev = "v${version}"; 52 - sha256 = "sha256-gbJkeelSyEHwD4DH/hbzPNNv47hmdgc4kyvX38txYhc="; 52 + sha256 = "sha256-PCZ1r6x28Z5FEVMXWm4oxpTknz/XEiwo0rRGhn4B33g="; 53 53 }; 54 54 55 55 patches = [
+3 -3
pkgs/applications/misc/diebahn/default.nix
··· 21 21 22 22 stdenv.mkDerivation rec { 23 23 pname = "diebahn"; 24 - version = "2.3.0"; 24 + version = "2.4.0"; 25 25 26 26 src = fetchFromGitLab { 27 27 owner = "schmiddi-on-mobile"; 28 28 repo = "railway"; 29 29 rev = version; 30 - hash = "sha256-o1WJJslZLg3UlMLmHDeEozsP8CmMU9e7MqONpIKuq80="; 30 + hash = "sha256-2iLxErEP0OG+BcG7fvJBzNjh95EkNoC3NC7rKxPLhYk="; 31 31 }; 32 32 33 33 cargoDeps = rustPlatform.fetchCargoTarball { 34 34 name = "${pname}-${src}"; 35 35 inherit src; 36 - hash = "sha256-/DSbkZev9A7TqRgnCop3PDd8vzSvyOevvl+pBCk1ri0="; 36 + hash = "sha256-TyafdFWCaZgLEW2yVfm9+9kXRKoiyCAbRndcb7XCVdI="; 37 37 }; 38 38 39 39 nativeBuildInputs = [
+3 -3
pkgs/applications/misc/gimoji/default.nix
··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "gimoji"; 10 - version = "0.7.6"; 10 + version = "1.0.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "zeenix"; 14 14 repo = "gimoji"; 15 15 rev = version; 16 - hash = "sha256-ipsEFZGC3JYOeNVI4AUb2c/9tt+TTIbeXuJ15ShEH6U="; 16 + hash = "sha256-O4rIla/vpei+N2TXB2eIrFAkOyguE9gCQgVptl2mn0w="; 17 17 }; 18 18 19 - cargoHash = "sha256-786OPEaIHQtgUHlkjLprKfJ7VoeSW+IzHto3XXZ6Fu8="; 19 + cargoHash = "sha256-ne7b95snaoji3mF3yN6ZvTSnQxJvLT7jOMbh5U10YgU="; 20 20 21 21 buildInputs = lib.optionals stdenv.isDarwin [ 22 22 darwin.apple_sdk.frameworks.AppKit
+1 -1
pkgs/applications/misc/kiwix/default.nix
··· 42 42 homepage = "https://kiwix.org"; 43 43 license = licenses.gpl3Plus; 44 44 platforms = platforms.linux; 45 - maintainers = with maintainers; [ ajs124 ]; 45 + maintainers = with maintainers; [ ]; 46 46 }; 47 47 }
+2 -2
pkgs/applications/misc/nwg-displays/default.nix
··· 14 14 15 15 python310Packages.buildPythonApplication rec { 16 16 pname = "nwg-displays"; 17 - version = "0.3.13"; 17 + version = "0.3.14"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "nwg-piotr"; 21 21 repo = "nwg-displays"; 22 22 rev = "refs/tags/v${version}"; 23 - hash = "sha256-ZXEnlcifwJTnpSKVET/ThIA0NHLP9fQTIM2bQbJ7qZ8="; 23 + hash = "sha256-jSL+ig1mNJrnHli8B+BqvEG8jcC0gnxzbukiYgt3nP0="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+3 -3
pkgs/applications/networking/cluster/argocd/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "argocd"; 5 - version = "2.10.1"; 5 + version = "2.10.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "argoproj"; 9 9 repo = "argo-cd"; 10 10 rev = "v${version}"; 11 - hash = "sha256-sQbRrNTeLUSal9gBAnqx+x0glPykjw0DN+j7xHoZcLY="; 11 + hash = "sha256-eFa2AXFVymi7et+fHTLgdiBUq6D8zK5DRg9Dqhxe4TE="; 12 12 }; 13 13 14 14 proxyVendor = true; # darwin/linux hash mismatch 15 - vendorHash = "sha256-WVufVd8E2rVBA59qEYdRq38W70lApMGZV/26jhn5HGw="; 15 + vendorHash = "sha256-O13zMtrXgW3SiJmAn64/QW/CJN0+d0h0MMyEWKsy9WE="; 16 16 17 17 # Set target as ./cmd per cli-local 18 18 # https://github.com/argoproj/argo-cd/blob/master/Makefile#L227
+2 -2
pkgs/applications/networking/cluster/kubevpn/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kubevpn"; 5 - version = "2.2.1"; 5 + version = "2.2.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "KubeNetworks"; 9 9 repo = "kubevpn"; 10 10 rev = "v${version}"; 11 - hash = "sha256-inGqkkzXPjg2VHtPZEPWDTuioPchrf/kiLGjvgXpcI4="; 11 + hash = "sha256-C1Fw7E7lXy9BRj8bTVUMzPK6wBiL6A3VGDYUqdD2Rjs="; 12 12 }; 13 13 14 14 vendorHash = null;
+3 -3
pkgs/applications/networking/discordo/default.nix
··· 3 3 4 4 buildGoModule rec { 5 5 pname = "discordo"; 6 - version = "unstable-2024-02-25"; 6 + version = "unstable-2024-03-03"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "ayn2op"; 10 10 repo = pname; 11 - rev = "6e683a6526279a8c0f9f8a03be776d62214a4d13"; 12 - hash = "sha256-sPNJkzVulgbm3OdJWSj6i2YOKin9VO0L3aS2c0alwBE="; 11 + rev = "ce2091d566f2d999d83b3c9463860b73f1d163ae"; 12 + hash = "sha256-71i/8t768RtD0Gk2cpSdznERSNf1gErQrrOGYiZz05g="; 13 13 }; 14 14 15 15 vendorHash = "sha256-dBJYTe8aZtNuBwmcpXb3OEHoLVCa/GbGExLIRc8cVbo=";
+3 -3
pkgs/applications/networking/instant-messengers/beeper/default.nix
··· 11 11 }: 12 12 let 13 13 pname = "beeper"; 14 - version = "3.97.44"; 14 + version = "3.98.16"; 15 15 name = "${pname}-${version}"; 16 16 src = fetchurl { 17 - url = "https://download.todesktop.com/2003241lzgn20jd/beeper-3.97.44-build-2402237nrc018ws-x86_64.AppImage"; 18 - hash = "sha256-z7SKs3ID8tnBwhhd6Z1khR+qjMQ7ivbkCAB49XYxnSs="; 17 + url = "https://download.todesktop.com/2003241lzgn20jd/beeper-3.98.16-build-240228llcputn9l-x86_64.AppImage"; 18 + hash = "sha256-CjtlE/owx7emzGDdOAw6pSlAuNbUspm1YP+kxm6Jrt8="; 19 19 }; 20 20 appimage = appimageTools.wrapType2 { 21 21 inherit version pname src;
+2 -2
pkgs/applications/science/logic/lean4/default.nix
··· 10 10 11 11 stdenv.mkDerivation (finalAttrs: { 12 12 pname = "lean4"; 13 - version = "4.6.0"; 13 + version = "4.6.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "leanprover"; 17 17 repo = "lean4"; 18 18 rev = "v${finalAttrs.version}"; 19 - hash = "sha256-Anf6uaTFG/c94N7b7HgT5riyOL5xbHeeoYTrrOl2vDA="; 19 + hash = "sha256-wUqGADwSocg2ciycCxg9qp+vJLJ2otA/5JpTrkFrDoQ="; 20 20 }; 21 21 22 22 postPatch = ''
+3 -3
pkgs/applications/version-management/git-cliff/default.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "git-cliff"; 11 - version = "2.0.4"; 11 + version = "2.1.2"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "orhun"; 15 15 repo = "git-cliff"; 16 16 rev = "v${version}"; 17 - hash = "sha256-0ReMn37sYpS5uX9Nem7M9LthAvGNdJaAob+tEnjIrMw="; 17 + hash = "sha256-5NWMpdrOWQcA3cxd5WNtnamnSMuZU3BGEMlRZ8NR+NE="; 18 18 }; 19 19 20 - cargoHash = "sha256-xDIXXHoykEtRzWm5NDE1rcFgC4iFxhUPgwlvaoHmV6Y="; 20 + cargoHash = "sha256-kIO3mD4SdQqlZYty8QWOBVvmaXujcEijeRONGYNZSng="; 21 21 22 22 # attempts to run the program on .git in src which is not deterministic 23 23 doCheck = false;
+3 -3
pkgs/applications/version-management/git-mit/default.nix
··· 10 10 }: 11 11 12 12 let 13 - version = "5.12.186"; 13 + version = "5.12.191"; 14 14 in 15 15 rustPlatform.buildRustPackage { 16 16 pname = "git-mit"; ··· 20 20 owner = "PurpleBooth"; 21 21 repo = "git-mit"; 22 22 rev = "v${version}"; 23 - hash = "sha256-895QAtKUzqiWffw5IgovXBiARncelrmz1FUEbeHYoW0="; 23 + hash = "sha256-aSEoAs0s7zyALf3s77eVlrjkCrn7ihW/4OW5hN8YL8k="; 24 24 }; 25 25 26 - cargoHash = "sha256-E3xwZ9oB7oe5gVLAasvo1MWPjDPLKZgSX98VZAq2O3k="; 26 + cargoHash = "sha256-pm+XreLGxZJKRcrmU1ooMjN7MTRJqgKOy2J1OqdodxE="; 27 27 28 28 nativeBuildInputs = [ pkg-config ]; 29 29
+2 -2
pkgs/by-name/ao/aocl-utils/package.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "aocl-utils"; 5 - version = "4.1"; 5 + version = "4.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "amd"; 9 9 repo = "aocl-utils"; 10 10 rev = version; 11 - hash = "sha256-7Vc3kE+YfqIt6VfvSamsVQRemolzs1sNJUVUZFKk/O8="; 11 + hash = "sha256-tjmCgVSU4XjBhbKMUY3hsvj3bvuXvVdf5Bqva5nr1tc="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/by-name/bm/bmake/package.nix
··· 11 11 12 12 stdenv.mkDerivation (finalAttrs: { 13 13 pname = "bmake"; 14 - version = "20240212"; 14 + version = "20240301"; 15 15 16 16 src = fetchurl { 17 17 url = "http://www.crufty.net/ftp/pub/sjg/bmake-${finalAttrs.version}.tar.gz"; 18 - hash = "sha256-lx1aNkA1NJ6YTYLCpI1Uagxz5S87jyqimjvj0kCP+qg="; 18 + hash = "sha256-JM4L46z8i5PHWgeWxi7swWN246fAVXCzAtIEgOOOn1k="; 19 19 }; 20 20 21 21 patches = [
+71
pkgs/by-name/ga/galaxis/package.nix
··· 1 + { lib 2 + , asciidoctor 3 + , fetchFromGitLab 4 + , ncurses 5 + , stdenv 6 + }: 7 + 8 + stdenv.mkDerivation (finalAttrs: { 9 + pname = "galaxis"; 10 + version = "1.11"; 11 + 12 + src = fetchFromGitLab { 13 + owner = "esr"; 14 + repo = "galaxis"; 15 + rev = finalAttrs.version; 16 + hash = "sha256-fSzifGoSdWyFGt99slzAsqCMDoeLbBqQGXujX8QAfGc="; 17 + }; 18 + 19 + outputs = [ "out" "man" ]; 20 + 21 + nativeBuildInputs = [ 22 + asciidoctor 23 + ]; 24 + 25 + buildInputs = [ 26 + ncurses 27 + ]; 28 + 29 + strictDeps = true; 30 + 31 + makeFlags = [ 32 + "CC=${stdenv.cc.targetPrefix}cc" 33 + "galaxis" 34 + "galaxis.6" 35 + ]; 36 + 37 + postPatch = '' 38 + sed -i -E '/[[:space:]]*xmlto/ s|xmlto|xmlto --skip-validation|' Makefile 39 + ''; 40 + 41 + # This is better than sed-patch the Makefile 42 + installPhase = '' 43 + runHook preInstall 44 + mkdir -p $out/bin $man/share/man/man6 45 + install -Dm755 galaxis -t $out/bin/ 46 + install -Dm644 galaxis.6 -t $man/share/man/man6 47 + runHook postInstall 48 + ''; 49 + 50 + meta = { 51 + description = "Rescue lifeboats lost in interstellar space"; 52 + longDescription = '' 53 + Lifeboats from a crippled interstellar liner are adrift in a starfield. To 54 + find them, you can place probes that look in all eight compass directions 55 + and tell you how many lifeboats they see. If you drop a probe directly on 56 + a lifeboat it will be revealed immediately. Your objective: find the 57 + lifeboats as quickly as possible, before the stranded passengers run out 58 + of oxygen! 59 + 60 + This is a UNIX-hosted, curses-based clone of the nifty little Macintosh 61 + freeware game Galaxis. It doesn't have the super-simple, point-and-click 62 + interface of the original, but compensates by automating away some of the 63 + game's simpler deductions. 64 + ''; 65 + homepage = "http://catb.org/~esr/galaxis/"; 66 + license = with lib.licenses; [ gpl2Plus ]; 67 + mainProgram = "galaxis"; 68 + maintainers = with lib.maintainers; [ AndersonTorres ]; 69 + platforms = lib.platforms.linux; 70 + }; 71 + })
+19
pkgs/by-name/io/ioq3-scion/package.nix
··· 1 + { ioquake3, fetchFromGitHub, pan-bindings, libsodium, lib }: 2 + ioquake3.overrideAttrs (old: { 3 + pname = "ioq3-scion"; 4 + version = "unstable-2024-03-03"; 5 + buildInputs = old.buildInputs ++ [ 6 + pan-bindings 7 + libsodium 8 + ]; 9 + src = fetchFromGitHub { 10 + owner = "lschulz"; 11 + repo = "ioq3-scion"; 12 + rev = "9f06abd5030c51cd4582ba3d24ba87531e3eadbc"; 13 + hash = "sha256-+zoSlNT+oqozQFnhA26PiMo1NnzJJY/r4tcm2wOCBP0="; 14 + }; 15 + meta = { 16 + description = "ioquake3 with support for path aware networking"; 17 + maintainers = with lib.maintainers; [ matthewcroughan ]; 18 + }; 19 + })
+2 -2
pkgs/by-name/ko/kor/package.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kor"; 5 - version = "0.3.5"; 5 + version = "0.3.6"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "yonahd"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-Y8k7tpKqs/X5ePa2kFkKxrYb1E4Z5h8+o229eD6YQ/M="; 11 + hash = "sha256-Q2VUc91ecBRr/m9DGYWwuSsH2prB+EKmBoQrekgPvTE="; 12 12 }; 13 13 14 14 vendorHash = "sha256-DRbwM6fKTIlefD0rUmNLlUXrK+t3vNCl4rxHF7m8W10=";
+3 -3
pkgs/by-name/me/mev-boost/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "mev-boost"; 9 - version = "1.6"; 9 + version = "1.7"; 10 10 src = fetchFromGitHub { 11 11 owner = "flashbots"; 12 12 repo = "mev-boost"; 13 13 rev = "v${version}"; 14 - hash = "sha256-vzgX9irpI5i85bohppyL5KWQuf71SryRu1gkhWSCVKk="; 14 + hash = "sha256-Z5B+PRYb6eWssgyaXpXoHOVRoMZoSAwun7s6Fh1DrfM="; 15 15 }; 16 16 17 - vendorHash = "sha256-xw3xVbgKUIDXu4UQD5CGftON8E4o1u2FcrPo3n6APBE="; 17 + vendorHash = "sha256-yfWDGVfgCfsmzI5oxEmhHXKCUAHe6wWTkaMkBN5kQMw="; 18 18 19 19 meta = with lib; { 20 20 description = "Ethereum block-building middleware";
+27
pkgs/by-name/nc/nc4nix/package.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule { 7 + pname = "nc4nix"; 8 + version = "0-unstable-2024-03-01"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "helsinki-systems"; 12 + repo = "nc4nix"; 13 + rev = "ba37674c0dddf93e0a011dace92ec7f0ec834765"; 14 + hash = "sha256-k12eeP2gojLCsJH1GGuiTmxz3ViPc0+oFBuptyh42Bw="; 15 + }; 16 + 17 + vendorHash = "sha256-ZXl4kMDY9ADkHUcLsl3uNpyErMzbgS+J65+uUeIXpSE="; 18 + 19 + meta = with lib; { 20 + description = "Packaging helper for Nextcloud apps"; 21 + homepage = "https://github.com/helsinki-systems/nc4nix"; 22 + license = licenses.mit; 23 + maintainers = with maintainers; [ onny ]; 24 + platforms = platforms.linux; 25 + }; 26 + } 27 +
+61
pkgs/by-name/pa/pan-bindings/package.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , buildGo122Module 5 + , cmake 6 + , ncurses 7 + , asio 8 + }: 9 + 10 + let 11 + version = "unstable-2024-03-03"; 12 + src = fetchFromGitHub { 13 + owner = "lschulz"; 14 + repo = "pan-bindings"; 15 + rev = "4361d30f1c5145a70651c259f2d56369725b0d15"; 16 + hash = "sha256-0WxrgXTCM+BwGcjjWBBKiZawje2yxB5RRac6Sk5t3qc="; 17 + }; 18 + goDeps = (buildGo122Module { 19 + name = "pan-bindings-goDeps"; 20 + inherit src version; 21 + modRoot = "go"; 22 + vendorHash = "sha256-7EitdEJTRtiM29qmVnZUM6w68vCBI8mxZhCA7SnAxLA="; 23 + }); 24 + in 25 + 26 + stdenv.mkDerivation { 27 + name = "pan-bindings"; 28 + 29 + inherit src version; 30 + 31 + cmakeFlags = [ 32 + "-DBUILD_SHARED_LIBS=1" 33 + "-DBUILD_EXAMPLES=0" 34 + ]; 35 + 36 + patchPhase = '' 37 + runHook prePatch 38 + export HOME=$TMP 39 + cp -r --reflink=auto ${goDeps.goModules} go/vendor 40 + runHook postPatch 41 + ''; 42 + 43 + buildInputs = [ 44 + ncurses 45 + asio 46 + ]; 47 + 48 + nativeBuildInputs = [ 49 + cmake 50 + goDeps.go 51 + ]; 52 + 53 + meta = with lib; { 54 + description = "SCION PAN Bindings for C, C++, and Python"; 55 + homepage = "https://github.com/lschulz/pan-bindings"; 56 + license = licenses.asl20; 57 + maintainers = with maintainers; [ matthewcroughan ]; 58 + mainProgram = "pan-bindings"; 59 + platforms = platforms.all; 60 + }; 61 + }
+3 -3
pkgs/by-name/re/renode-dts2repl/package.nix
··· 6 6 7 7 python3.pkgs.buildPythonApplication { 8 8 pname = "renode-dts2repl"; 9 - version = "unstable-2024-02-26"; 9 + version = "unstable-2024-02-29"; 10 10 pyproject = true; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "antmicro"; 14 14 repo = "dts2repl"; 15 - rev = "de8d8b276ceaae79ea90ed67065e9616e06b2558"; 16 - hash = "sha256-uiS/zzAf4lCg/yUAoci2JXrmwb3xsObuzSi1U08lSjo="; 15 + rev = "a53f2f01039a462bdd7322d1fb315edd95033b6d"; 16 + hash = "sha256-DsHNS9pZu3ZWM3teG3pUi0EM+8znmCPTSGuzGmJ4IgU="; 17 17 }; 18 18 19 19 nativeBuildInputs = [
+3 -3
pkgs/by-name/td/tdl/package.nix
··· 4 4 }: 5 5 buildGoModule rec { 6 6 pname = "tdl"; 7 - version = "0.16.0"; 7 + version = "0.16.1"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "iyear"; 11 11 repo = "tdl"; 12 12 rev = "v${version}"; 13 - hash = "sha256-Myf10+Y7lyJFhiRpJFkXe5Rng0ChzOm0EGvPEuFMYp4="; 13 + hash = "sha256-xSnACm7LrsyhtQevDtP36bKeExSFd4Xsn7xLSLi7i+I="; 14 14 }; 15 15 16 - vendorHash = "sha256-n3AISS4/yujTNqgGjeEK2eWw0YI1XUafZP36yD+axN4="; 16 + vendorHash = "sha256-VYxTSon2U9qj9sbMSlXrDFeOTOZXQVX2PyS+EDBG+YM="; 17 17 18 18 ldflags = [ 19 19 "-s"
+9 -9
pkgs/by-name/un/universal-android-debloater/package.nix
··· 14 14 }: 15 15 rustPlatform.buildRustPackage rec { 16 16 pname = "universal-android-debloater"; 17 - version = "0.6.2"; 17 + version = "1.0.2"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "Universal-Debloater-Alliance"; 21 - repo = pname; 22 - rev = version; 23 - hash = "sha256-yCtdCg2mEAz4b/ev32x+RbjCtHTu20mOKFgtckXk1Fo="; 21 + repo = "universal-android-debloater-next-generation"; 22 + rev = "v${version}"; 23 + hash = "sha256-v2svWAurYoUZzOHypM+Pk0FCnfSi1NH80jIafYxwLPQ="; 24 24 }; 25 25 26 - cargoHash = "sha256-70dX5fqORdGG2q3YeXJHABCHy0dvtA/Cptk8aLGNgV4="; 26 + cargoHash = "sha256-gO1tvY565T+361JNVkFH4pC1ky2oxJqp/OCbS9sNeMI="; 27 27 28 28 buildInputs = [ 29 29 expat ··· 46 46 ''; 47 47 48 48 postInstall = '' 49 - wrapProgram $out/bin/uad_gui \ 49 + wrapProgram $out/bin/uad-ng \ 50 50 --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ fontconfig freetype libglvnd xorg.libX11 xorg.libXcursor xorg.libXi xorg.libXrandr ]} \ 51 51 --suffix PATH : ${lib.makeBinPath [ android-tools ]} 52 52 ''; 53 53 54 54 meta = with lib; { 55 55 description = "A tool to debloat non-rooted Android devices"; 56 - changelog = "https://github.com/Universal-Debloater-Alliance/universal-android-debloater/blob/${src.rev}/CHANGELOG.md"; 57 - homepage = "https://github.com/Universal-Debloater-Alliance/universal-android-debloater"; 56 + changelog = "https://github.com/Universal-Debloater-Alliance/universal-android-debloater-next-generation/blob/${src.rev}/CHANGELOG.md"; 57 + homepage = "https://github.com/Universal-Debloater-Alliance/universal-android-debloater-next-generation"; 58 58 license = licenses.gpl3Only; 59 - mainProgram = "uad_gui"; 59 + mainProgram = "uad-ng"; 60 60 maintainers = with maintainers; [ xfix ]; 61 61 platforms = platforms.linux; 62 62 };
+2 -2
pkgs/by-name/un/unrar-free/package.nix
··· 8 8 9 9 stdenv.mkDerivation (finalAttrs: { 10 10 pname = "unrar-free"; 11 - version = "0.1.3"; 11 + version = "0.2.0"; 12 12 13 13 src = fetchFromGitLab { 14 14 owner = "bgermann"; 15 15 repo = "unrar-free"; 16 16 rev = finalAttrs.version; 17 - hash = "sha256-pNcbbHFcEzXKGKUg9nLM3NuUCgZFmFjFa4dXmUuuLYo"; 17 + hash = "sha256-ONLc/mJt13Lfd61qraCAB9jOPzdPxoYLzq69llRf+BU="; 18 18 }; 19 19 20 20 nativeBuildInputs = [ autoreconfHook pkg-config ];
+2 -2
pkgs/data/fonts/unifont_upper/default.nix
··· 2 2 3 3 stdenvNoCC.mkDerivation rec { 4 4 pname = "unifont_upper"; 5 - version = "15.1.04"; 5 + version = "15.1.05"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://gnu/unifont/unifont-${version}/${pname}-${version}.otf"; 9 - hash = "sha256-SUsG2xhrn47zrGpNzRn1g76qyt2vQyH/UBmYtzCD0UA="; 9 + hash = "sha256-A/Z/+IMNUH/3Ir3ewf/U2xqkkpZDUDKO+dlnRYt+7U0="; 10 10 }; 11 11 12 12 dontUnpack = true;
+2 -2
pkgs/data/misc/ddccontrol-db/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "ddccontrol-db"; 9 - version = "20240209"; 9 + version = "20240304"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "ddccontrol"; 13 13 repo = pname; 14 14 rev = version; 15 - sha256 = "sha256-Jmq8W9LHL+B4mY0meI9CtKvJw6NnF83kDaUG8Hbsj4Q="; 15 + sha256 = "sha256-vXG9aa6Zdv5R7q62tpFaUIw4MVnT/jWwZ+jw1S9K7MM="; 16 16 }; 17 17 18 18 nativeBuildInputs = [ autoreconfHook intltool ];
+2 -2
pkgs/development/compilers/circt/default.nix
··· 17 17 in 18 18 stdenv.mkDerivation rec { 19 19 pname = "circt"; 20 - version = "1.66.0"; 20 + version = "1.67.0"; 21 21 src = fetchFromGitHub { 22 22 owner = "llvm"; 23 23 repo = "circt"; 24 24 rev = "firtool-${version}"; 25 - sha256 = "sha256-7O2YUZq0GBS2xvsXg0v55XZXAzqsbHjeKNgqMbNRT8E="; 25 + hash = "sha256-ftKtqKIgGVqiETTsirhydjmFiozqHoMRdu+IBZc8iMI="; 26 26 fetchSubmodules = true; 27 27 }; 28 28
+2 -2
pkgs/development/compilers/osl/default.nix
··· 24 24 25 25 in stdenv.mkDerivation rec { 26 26 pname = "openshadinglanguage"; 27 - version = "1.13.6.1"; 27 + version = "1.13.7.0"; 28 28 29 29 src = fetchFromGitHub { 30 30 owner = "AcademySoftwareFoundation"; 31 31 repo = "OpenShadingLanguage"; 32 32 rev = "v${version}"; 33 - hash = "sha256-NSnM5/SyVkfZ4SyzRzVJc5O1t4/s2ax0koevRZsQ9q8="; 33 + hash = "sha256-M8B5lnLEnWu0PQx4BKidFHXm4+Xs26EaD2caOA+bZ1k="; 34 34 }; 35 35 36 36 cmakeFlags = [
+1 -1
pkgs/development/libraries/py3c/default.nix
··· 34 34 homepage = "https://github.com/encukou/py3c"; 35 35 description = "Python 2/3 compatibility layer for C extensions"; 36 36 license = licenses.mit; 37 - maintainers = with maintainers; [ ajs124 dotlambda ]; 37 + maintainers = with maintainers; [ dotlambda ]; 38 38 }; 39 39 }
+2 -2
pkgs/development/libraries/science/math/amd-blis/default.nix
··· 21 21 22 22 in stdenv.mkDerivation rec { 23 23 pname = "amd-blis"; 24 - version = "4.1"; 24 + version = "4.2"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "amd"; 28 28 repo = "blis"; 29 29 rev = version; 30 - hash = "sha256-1vd4uBg/+Vufqsr+MnAWSUW/THkribHNSMeq1/is8K4="; 30 + hash = "sha256-mLigzaA2S7qFCQT8UWC6bHWAvBjgpqvtgabPyFWBYT0="; 31 31 }; 32 32 33 33 inherit blas64;
+2 -2
pkgs/development/libraries/science/math/amd-libflame/default.nix
··· 14 14 15 15 stdenv.mkDerivation rec { 16 16 pname = "amd-libflame"; 17 - version = "4.1"; 17 + version = "4.2"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "amd"; 21 21 repo = "libflame"; 22 22 rev = version; 23 - hash = "sha256-SZk11oOAnvn1vb7ucX6U9b0YtAJNxl3tQu4ExHpwwoo="; 23 + hash = "sha256-eiH2eq+nKUjlB1bZTZNRW1+efCHZ68UOSFy0NpcY1FI="; 24 24 }; 25 25 26 26 postPatch = ''
+2 -2
pkgs/development/libraries/science/math/suitesparse-graphblas/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "suitesparse-graphblas"; 10 - version = "9.0.2"; 10 + version = "9.0.3"; 11 11 12 12 outputs = [ "out" "dev" ]; 13 13 ··· 15 15 owner = "DrTimothyAldenDavis"; 16 16 repo = "GraphBLAS"; 17 17 rev = "v${version}"; 18 - hash = "sha256-wPg5A1lwtRPDO5gPbllEFkRJFRIhkqqaVd4CBdPavKE="; 18 + hash = "sha256-qRRrxMshLLEltCzXFv/j6NgRi6x1SHlAuKG5NfLiBFs="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+34 -6
pkgs/development/ocaml-modules/magic-trace/default.nix
··· 1 - { lib, fetchFromGitHub, buildDunePackage, async, cohttp_static_handler ? null 2 - , core_unix ? null, owee, ppx_jane, shell ? null }: 1 + { lib 2 + , fetchFromGitHub 3 + , buildDunePackage 4 + , ocaml-crunch 5 + , angstrom 6 + , async 7 + , cohttp 8 + , cohttp_static_handler ? null 9 + , core 10 + , core_unix ? null 11 + , fzf 12 + , owee 13 + , ppx_jane 14 + , re 15 + , shell ? null 16 + }: 3 17 4 18 buildDunePackage rec { 5 19 pname = "magic-trace"; 6 - version = "1.1.0"; 20 + version = "1.2.1"; 7 21 8 22 minimalOCamlVersion = "4.12"; 9 - duneVersion = "3"; 10 23 11 24 src = fetchFromGitHub { 12 25 owner = "janestreet"; 13 26 repo = "magic-trace"; 14 27 rev = "v${version}"; 15 - sha256 = "sha256-615AOkrbQI6vRosA5Kz3Epipe9f9+Gs9+g3bVl5gzBY="; 28 + hash = "sha256-/9TDjCG/06mhGyqbjAdUmk6fcaq9fNDqVSw51w5EEy4="; 16 29 }; 17 30 18 - buildInputs = [ async cohttp_static_handler core_unix owee ppx_jane shell ]; 31 + nativeBuildInputs = [ 32 + ocaml-crunch 33 + ]; 34 + buildInputs = [ 35 + angstrom 36 + async 37 + cohttp 38 + cohttp_static_handler 39 + core 40 + core_unix 41 + fzf 42 + owee 43 + ppx_jane 44 + re 45 + shell 46 + ]; 19 47 20 48 meta = with lib; { 21 49 description =
+2 -2
pkgs/development/python-modules/cement/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "cement"; 9 - version = "3.0.8"; 9 + version = "3.0.10"; 10 10 format = "setuptools"; 11 11 12 12 disabled = pythonOlder "3.5"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - hash = "sha256-rRGmlGZeKtKEV8VgSU9PjDaiX8WOUA1gip2R4E4dMJM="; 16 + hash = "sha256-c9EBXr+bjfE+a8mH7fDUvj8ci0Q4kh7qjWbLtVBK7hU="; 17 17 }; 18 18 19 19 # Disable test tests since they depend on a memcached server running on
+2 -2
pkgs/development/python-modules/cloup/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "cloup"; 13 - version = "3.0.4"; 13 + version = "3.0.5"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.7"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - hash = "sha256-ZYER4vSbglaoItrF+gIFv2QQn978Q185kjSQoysT7Ak="; 20 + hash = "sha256-ySsmHHu34TAEkw8/tLPtrY3i0fEplNzdvgW8IZkEQ8U="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/django/5.nix
··· 43 43 44 44 buildPythonPackage rec { 45 45 pname = "Django"; 46 - version = "5.0.2"; 46 + version = "5.0.3"; 47 47 pyproject = true; 48 48 49 49 disabled = pythonOlder "3.10"; 50 50 51 51 src = fetchPypi { 52 52 inherit pname version; 53 - hash = "sha256-tbsdEbJRil+RNyooLyRmL1j2Z0lmawooarBXAp9ygIA="; 53 + hash = "sha256-X7N1gNz0omL5JYwfQ3OBmqzKkGQx9QXkaI4386mRld8="; 54 54 }; 55 55 56 56 patches = [
+1 -1
pkgs/development/python-modules/expiring-dict/default.nix
··· 26 26 description = "Python dict with TTL support for auto-expiring caches"; 27 27 homepage = "https://github.com/dparker2/py-expiring-dict"; 28 28 license = licenses.mit; 29 - maintainers = with maintainers; [ ajs124 ]; 29 + maintainers = with maintainers; [ ]; 30 30 }; 31 31 }
+9 -3
pkgs/development/python-modules/krakenex/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , setuptools 4 5 , requests 5 6 }: 6 7 7 8 buildPythonPackage rec { 8 9 pname = "krakenex"; 9 - version = "2.1.0"; 10 - format = "setuptools"; 10 + version = "2.2.1"; 11 + pyproject = true; 11 12 12 13 src = fetchFromGitHub { 13 14 owner = "veox"; 14 15 repo = "python3-krakenex"; 15 16 rev = "v${version}"; 16 - sha256 = "0j8qmpk6lm57h80i5njhgvm1qnxllm18dlqxfd4kyxdb93si4z2p"; 17 + hash = "sha256-aWALkM79VOm2/EQdp2rD1sm0NxhLKZOXzAs8m+t7M0s="; 17 18 }; 19 + 20 + nativeBuildInputs = [ 21 + setuptools 22 + ]; 18 23 19 24 propagatedBuildInputs = [ 20 25 requests ··· 26 31 pythonImportsCheck = [ "krakenex" ]; 27 32 28 33 meta = with lib; { 34 + changelog = "https://github.com/veox/python3-krakenex/blob/${src.rev}/CHANGELOG.rst"; 29 35 description = "Kraken.com cryptocurrency exchange API"; 30 36 homepage = "https://github.com/veox/python3-krakenex"; 31 37 license = licenses.lgpl3Plus;
+2 -2
pkgs/development/python-modules/litellm/default.nix
··· 33 33 34 34 buildPythonPackage rec { 35 35 pname = "litellm"; 36 - version = "1.28.0"; 36 + version = "1.28.11"; 37 37 pyproject = true; 38 38 39 39 disabled = pythonOlder "3.8"; ··· 42 42 owner = "BerriAI"; 43 43 repo = "litellm"; 44 44 rev = "refs/tags/v${version}"; 45 - hash = "sha256-rmgKitWY2YFa+L9vpjXCsx5rCS2UrrobyKoleP5taG0="; 45 + hash = "sha256-6RhJjrPS62f+qoNFQ8qRelZmA8Er9Myz8CF1c/fhBTc="; 46 46 }; 47 47 48 48 postPatch = ''
+23 -11
pkgs/development/python-modules/mockito/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, isPy3k, funcsigs, pytest, numpy }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , hatchling 5 + , numpy 6 + , pytestCheckHook 7 + , pythonOlder 8 + }: 2 9 3 10 buildPythonPackage rec { 4 - version = "1.4.0"; 5 - format = "setuptools"; 6 11 pname = "mockito"; 12 + version = "1.5.0"; 13 + pyproject = true; 14 + 15 + disabled = pythonOlder "3.7"; 7 16 8 17 src = fetchPypi { 9 18 inherit pname version; 10 - hash = "sha256-QJq2BMnr4bt9wY7GsO2YqK1RJ7CCc/WASyL00bUeUiI="; 19 + hash = "sha256-A2Eo2n2vLaiaC2N71zMh6ZL/ZbqKOYdsojPuwX63fo8="; 11 20 }; 12 21 13 - propagatedBuildInputs = lib.optionals (!isPy3k) [ funcsigs ]; 14 - nativeCheckInputs = [ pytest numpy ]; 22 + nativeBuildInputs = [ 23 + hatchling 24 + ]; 25 + 26 + nativeCheckInputs = [ 27 + numpy 28 + pytestCheckHook 29 + ]; 15 30 16 - # tests are no longer packaged in pypi tarball 17 - doCheck = false; 18 - checkPhase = '' 19 - pytest 20 - ''; 31 + pythonImportsCheck = [ "mockito" ]; 21 32 22 33 meta = with lib; { 23 34 description = "Spying framework"; 24 35 homepage = "https://github.com/kaste/mockito-python"; 36 + changelog = "https://github.com/kaste/mockito-python/blob/${version}/CHANGES.txt"; 25 37 license = licenses.mit; 26 38 maintainers = [ maintainers.marsam ]; 27 39 };
+2 -2
pkgs/development/python-modules/pex/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "pex"; 10 - version = "2.2.1"; 10 + version = "2.2.2"; 11 11 pyproject = true; 12 12 13 13 disabled = pythonOlder "3.7"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - hash = "sha256-I63eX9BDn9RGitEFZiulsjEYVAsmYyvSNi3+2tIrGv8="; 17 + hash = "sha256-g5D9v1CZ70viP0C/9lWwJvterJ2KH3oUCKRsxEr9Neg="; 18 18 }; 19 19 20 20 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/pipdeptree/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "pipdeptree"; 17 - version = "2.15.1"; 17 + version = "2.16.0"; 18 18 format = "pyproject"; 19 19 20 20 disabled = pythonOlder "3.8"; ··· 23 23 owner = "tox-dev"; 24 24 repo = "pipdeptree"; 25 25 rev = "refs/tags/${version}"; 26 - hash = "sha256-25KcmBHoKfJoTE/GSa//QlKCNrYGSAFzTuASRIv0b+w="; 26 + hash = "sha256-KxjsT8hf+IbQVL+mzjrOkGCEJ0m5IqxdnDVWzbQbAhU="; 27 27 }; 28 28 29 29 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/pontos/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "pontos"; 21 - version = "24.2.2"; 21 + version = "24.3.0"; 22 22 pyproject = true; 23 23 24 24 disabled = pythonOlder "3.9"; ··· 27 27 owner = "greenbone"; 28 28 repo = "pontos"; 29 29 rev = "refs/tags/v${version}"; 30 - hash = "sha256-xg5/UDAnT6kvDfYnQn/LCHlAgpRrt19pDC8NB5RzCnc="; 30 + hash = "sha256-FU0GQ+jpx3Th3397F4jJhiopaKHgdWMxy0bff2hfAa4="; 31 31 }; 32 32 33 33 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/sentry-sdk/default.nix
··· 38 38 39 39 buildPythonPackage rec { 40 40 pname = "sentry-sdk"; 41 - version = "1.40.5"; 41 + version = "1.40.6"; 42 42 pyproject = true; 43 43 44 44 disabled = pythonOlder "3.7"; ··· 47 47 owner = "getsentry"; 48 48 repo = "sentry-python"; 49 49 rev = "refs/tags/${version}"; 50 - hash = "sha256-WlOMYMgQSV7pZ+EA5HeS3HXJgEg+qhT6lAzLKknZiLk="; 50 + hash = "sha256-cGAPSF+kjGsY9IeRxRZUiAEiDR2uNBheet5Z+fok/eY="; 51 51 }; 52 52 53 53 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/std-uritemplate/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "std-uritemplate"; 10 - version = "0.0.53"; 10 + version = "0.0.54"; 11 11 pyproject = true; 12 12 13 13 disabled = pythonOlder "3.8"; ··· 15 15 src = fetchPypi { 16 16 pname = "std_uritemplate"; 17 17 inherit version; 18 - hash = "sha256-AQjfDMU7XVsu2rInwmDOwy6qeVtbXNIq+wiKff4j4BY="; 18 + hash = "sha256-FVKnB3v/T7eV6IQkaKQ8CFumIMc3PPlAgNOFNohQf9Q="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+2 -2
pkgs/development/tools/database/pg_activity/default.nix
··· 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 pname = "pg_activity"; 5 - version = "3.4.2"; 5 + version = "3.5.0"; 6 6 disabled = python3Packages.pythonOlder "3.6"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "dalibo"; 10 10 repo = pname; 11 11 rev = "refs/tags/v${version}"; 12 - sha256 = "sha256-7ML/xI1rQUqD9gm+1+yOdIesivAnl7fA8fgk67ru3Kc="; 12 + sha256 = "sha256-raEQbpADSkJZu+ULxzJg9GqFQ4/qmONDHGqoc7quMjI="; 13 13 }; 14 14 15 15 propagatedBuildInputs = with python3Packages; [
+1 -1
pkgs/development/tools/infisical/default.nix
··· 15 15 buildHashes = builtins.fromJSON (builtins.readFile ./hashes.json); 16 16 17 17 # the version of infisical 18 - version = "0.16.10"; 18 + version = "0.17.1"; 19 19 20 20 # the platform-specific, statically linked binary 21 21 src =
+4 -4
pkgs/development/tools/infisical/hashes.json
··· 1 1 { "_comment": "@generated by pkgs/development/tools/infisical/update.sh" 2 - , "x86_64-linux": "sha256-EjAm8toawTRKlnVr/dXXvfZ7IubKgjJh5qkR5lwBga8=" 3 - , "x86_64-darwin": "sha256-W2enmLucQpDLaUzsbSmQ2wq1nU5k5a93iqlAERJ/b/g=" 4 - , "aarch64-linux": "sha256-i5irWQmZVqKuzgAmL1wvo/3V7czEiIG8yANDhdb0tPk=" 5 - , "aarch64-darwin": "sha256-GjG8FBT3eulRYLyy4iiuXuQjiL+Au8Dd/h7buXDNlyQ=" 2 + , "x86_64-linux": "sha256-RfZP7au3F9GN7W8ksbqE167y28GhLMvX6Xy5qI920Vs=" 3 + , "x86_64-darwin": "sha256-Ye0hdk5m/LX7uAMdysSZmJihhV6+J35cn02M7PQziSk=" 4 + , "aarch64-linux": "sha256-6bcli2zJW6Y5zx860WFLqg0iPnvDKdq9RqnA5r8nv5E=" 5 + , "aarch64-darwin": "sha256-QaqYt0aPhPOuq4TY/kjSejnL5c3TrrYAVrLmYX6btuM=" 6 6 }
+2 -2
pkgs/development/tools/kubedock/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kubedock"; 5 - version = "0.15.4"; 5 + version = "0.15.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "joyrex2001"; 9 9 repo = "kubedock"; 10 10 rev = version; 11 - hash = "sha256-fL92NDf1fUHKUjYO4ctKt6tjMn6iTw0rzx3MVQT8g0s="; 11 + hash = "sha256-XnHCAv+l52EWw8MvTlmQ+wyhoddtXn920roB+y/ARWQ="; 12 12 }; 13 13 14 14 vendorHash = "sha256-me56QyJi77dP3geNecfO19SxFyuM2CqwmJRkwomsG1o=";
+2 -2
pkgs/development/tools/misc/coreboot-toolchain/default.nix
··· 19 19 20 20 stdenvNoCC.mkDerivation (finalAttrs: { 21 21 pname = "coreboot-toolchain-${arch}"; 22 - version = "4.22"; 22 + version = "24.02"; 23 23 24 24 src = fetchgit { 25 25 url = "https://review.coreboot.org/coreboot"; 26 26 rev = finalAttrs.version; 27 - hash = "sha256-OCEBt3YYyfXpnskFojBn/JoWTkNJ4XAI58BG4pyscGc="; 27 + hash = "sha256-fHulr7w5I9LzBwGt/ZVaN7A3XEd7uQ2eJJifxII7rtk="; 28 28 fetchSubmodules = false; 29 29 leaveDotGit = true; 30 30 postFetch = ''
+3 -3
pkgs/development/tools/misc/coreboot-toolchain/stable.nix
··· 21 21 }; 22 22 } 23 23 { 24 - name = "gcc-11.4.0.tar.xz"; 24 + name = "gcc-13.2.0.tar.xz"; 25 25 archive = fetchurl { 26 - sha256 = "1ncd7akww0hl5kkmw1dj3qgqp3phdrr5dfnm7jia9s07n0ib4b9z"; 27 - url = "mirror://gnu/gcc/gcc-11.4.0/gcc-11.4.0.tar.xz"; 26 + sha256 = "1nj3qyswcgc650sl3h0480a171ixp33ca13zl90p61m689jffxg2"; 27 + url = "mirror://gnu/gcc/gcc-13.2.0/gcc-13.2.0.tar.xz"; 28 28 }; 29 29 } 30 30 {
-50
pkgs/development/tools/nc4nix/default.nix
··· 1 - { lib 2 - , buildGoModule 3 - , fetchFromGitHub 4 - , nix 5 - , makeWrapper 6 - , fetchpatch 7 - }: 8 - 9 - buildGoModule { 10 - pname = "nc4nix"; 11 - version = "unstable-2023-11-06"; 12 - 13 - src = fetchFromGitHub { 14 - owner = "helsinki-systems"; 15 - repo = "nc4nix"; 16 - rev = "47666b418a71c609f8d2b2c2679956c2ac9818e5"; 17 - hash = "sha256-cXg0emFFAYI1Jtiz+Xilmct3JNiO9cSWUbghyIRQBnY="; 18 - }; 19 - 20 - patches = [ 21 - # Switch hash calculation method 22 - # https://github.com/helsinki-systems/nc4nix/pull/3 23 - (fetchpatch { 24 - url = "https://github.com/helsinki-systems/nc4nix/commit/a7bca4793cc12e87d381f12f6f8c00ae2ca02893.patch"; 25 - sha256 = "sha256-0JxyhSQLtlgLtsMv82wMjQHGdmOoQ2dcPPNAw2cFByE="; 26 - name = "switch_hash_calculation_method.patch"; 27 - }) 28 - ]; 29 - 30 - vendorHash = "sha256-uhINWxFny/OY7M2vV3ehFzP90J6Z8cn5IZHWOuEg91M="; 31 - 32 - nativeBuildInputs = [ 33 - makeWrapper 34 - ]; 35 - 36 - postInstall = '' 37 - # Depends on nix-prefetch-url 38 - wrapProgram $out/bin/nc4nix \ 39 - --prefix PATH : ${lib.makeBinPath [ nix ]} 40 - ''; 41 - 42 - meta = with lib; { 43 - description = "Packaging helper for Nextcloud apps"; 44 - homepage = "https://github.com/helsinki-systems/nc4nix"; 45 - license = licenses.mit; 46 - maintainers = with maintainers; [ onny ]; 47 - platforms = platforms.linux; 48 - }; 49 - } 50 -
+8 -4
pkgs/development/tools/phpactor/default.nix
··· 1 - { lib, fetchFromGitHub, php }: 1 + { lib 2 + , fetchFromGitHub 3 + , php 4 + }: 2 5 3 6 php.buildComposerProject (finalAttrs: { 4 7 pname = "phpactor"; 5 - version = "2023.08.06-1"; 8 + version = "2023.12.03.0"; 6 9 7 10 src = fetchFromGitHub { 8 11 owner = "phpactor"; 9 12 repo = "phpactor"; 10 13 rev = finalAttrs.version; 11 - hash = "sha256-NI+CLXlflQ8zQ+0AbjhJFdV6Y2+JGy7XDj0RBJ4YRRg="; 14 + hash = "sha256-zLSGzaUzroWkvFNCj3uA9KdZ3K/EIQOZ7HzV6Ms5/BE="; 12 15 }; 13 16 14 - vendorHash = "sha256-XGVZw6t8CHcv39YHkn/mW6fdl65kFakADLOEWbXfh/g="; 17 + vendorHash = "sha256-0jvWbQubPXDhsXqEp8q5R0Y7rQX3UiccGDF3HDBeh7o="; 15 18 16 19 meta = { 20 + changelog = "https://github.com/phpactor/phpactor/releases/tag/${finalAttrs.version}"; 17 21 description = "Mainly a PHP Language Server"; 18 22 homepage = "https://github.com/phpactor/phpactor"; 19 23 license = lib.licenses.mit;
+3 -3
pkgs/development/tools/templ/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "templ"; 8 - version = "0.2.543"; 8 + version = "0.2.598"; 9 9 10 10 subPackages = [ "cmd/templ" ]; 11 11 ··· 21 21 owner = "a-h"; 22 22 repo = "templ"; 23 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-A99GBzxmrAhjPzo5qj6V3YWkQJavs9j9beMtNYqGnqo="; 24 + hash = "sha256-jMoAocMDq8U1JsYoH3PFzZbnjSAzhifLwNZoKY+ambA="; 25 25 }; 26 26 27 - vendorHash = "sha256-4tHofTnSNI/MBmrGdGsLNoXjxUC0+Gwp3PzzUwfUkQU="; 27 + vendorHash = "sha256-Upd5Wq4ajsyOMDiAWS2g2iNO1sm1XJc43AFQLIo5eDM="; 28 28 29 29 meta = with lib; { 30 30 description = "A language for writing HTML user interfaces in Go";
+2 -2
pkgs/games/fallout-ce/fallout-ce.nix
··· 4 4 5 5 callPackage ./build.nix rec { 6 6 pname = "fallout-ce"; 7 - version = "1.0.0"; 7 + version = "1.1.0"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "alexbatalov"; 11 11 repo = "fallout1-ce"; 12 12 rev = "v${version}"; 13 - hash = "sha256-EvRkOlvtiVao63S0WRKKuHlhfkdTgc0m6GTyv4EfJFU="; 13 + hash = "sha256-ZiBoF3SL00sN0QrD3fkWG9SAknumOvzRB1oQJff6ITA="; 14 14 }; 15 15 16 16 extraMeta = {
-47
pkgs/games/galaxis/default.nix
··· 1 - { lib, stdenv, fetchurl, ncurses, xmlto }: 2 - 3 - with lib; 4 - stdenv.mkDerivation rec { 5 - 6 - pname = "galaxis"; 7 - version = "1.10"; 8 - 9 - src = fetchurl{ 10 - url = "http://www.catb.org/~esr/galaxis/${pname}-${version}.tar.gz"; 11 - sha256 = "1181x3z4r0794v2bkpigb5fablw1nayj42wvhy2am79p7j1iqq5r"; 12 - }; 13 - 14 - buildInputs = [ ncurses xmlto ]; 15 - 16 - patchPhase = '' 17 - sed -i\ 18 - -e 's|^install: galaxis\.6 uninstall|install: galaxis.6|'\ 19 - -e 's|usr/||g' -e 's|ROOT|DESTDIR|g'\ 20 - -e 's|install -m 755 -o 0 -g 0|install -m 755|' Makefile 21 - ''; 22 - 23 - dontConfigure = true; 24 - 25 - makeFlags = [ "DESTDIR=$(out)" ]; 26 - 27 - meta = { 28 - description = "Rescue lifeboats lost in interstellar space"; 29 - longDescription = '' 30 - Lifeboats from a crippled interstellar liner are adrift in a starfield. To 31 - find them, you can place probes that look in all eight compass directions 32 - and tell you how many lifeboats they see. If you drop a probe directly on 33 - a lifeboat it will be revealed immediately. Your objective: find the 34 - lifeboats as quickly as possible, before the stranded passengers run out 35 - of oxygen! 36 - 37 - This is a UNIX-hosted, curses-based clone of the nifty little Macintosh 38 - freeware game Galaxis. It doesn't have the super-simple, point-and-click 39 - interface of the original, but compensates by automating away some of the 40 - game's simpler deductions. 41 - ''; 42 - homepage = "http://catb.org/~esr/galaxis/"; 43 - license = licenses.gpl2; 44 - maintainers = [ maintainers.AndersonTorres ]; 45 - platforms = platforms.linux; 46 - }; 47 - }
+2 -2
pkgs/games/prismlauncher/default.nix
··· 31 31 32 32 stdenv.mkDerivation (finalAttrs: { 33 33 pname = "prismlauncher-unwrapped"; 34 - version = "8.0"; 34 + version = "8.2"; 35 35 36 36 src = fetchFromGitHub { 37 37 owner = "PrismLauncher"; 38 38 repo = "PrismLauncher"; 39 39 rev = finalAttrs.version; 40 - hash = "sha256-WBajtfj3qAMq8zd2S53CQyHiyqtvffLOHOjmOpdALAA="; 40 + hash = "sha256-4VsoxZzi/EfEsnDvvwzg2xhj7j5B+k3gvaSqwJFDweE="; 41 41 }; 42 42 43 43 nativeBuildInputs = [ extra-cmake-modules cmake jdk17 ninja canonicalize-jars-hook ];
+2 -2
pkgs/games/stone-kingdoms/default.nix
··· 11 11 12 12 stdenvNoCC.mkDerivation rec { 13 13 pname = "stone-kingdoms"; 14 - version = "0.6.0"; 14 + version = "0.6.1"; 15 15 16 16 src = fetchFromGitLab { 17 17 owner = "stone-kingdoms"; 18 18 repo = pname; 19 19 rev = version; 20 - hash = "sha256-qdaGowzAmMSCJrXzWLPDmyICsmvs0w+tfTsqKQewzJ8="; 20 + hash = "sha256-W2hzJg22O857Kh7CJVVHV5qu8QKjXCwW3hmgKBc0n2g="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+1 -1
pkgs/os-specific/linux/lvm2/common.nix
··· 156 156 description = "Tools to support Logical Volume Management (LVM) on Linux"; 157 157 platforms = platforms.linux; 158 158 license = with licenses; [ gpl2 bsd2 lgpl21 ]; 159 - maintainers = with maintainers; [ raskin ] ++ teams.helsinki-systems.members; 159 + maintainers = with maintainers; [ raskin ajs124 ] ++ teams.helsinki-systems.members; 160 160 }; 161 161 }
+2 -2
pkgs/servers/nosql/aerospike/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "aerospike-server"; 5 - version = "7.0.0.3"; 5 + version = "7.0.0.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "aerospike"; 9 9 repo = "aerospike-server"; 10 10 rev = version; 11 - hash = "sha256-qyVfoOnWIUY1np58HtpVrKNsgiXlvdgffyMGjk+G5qI="; 11 + hash = "sha256-CyDGJ0fM9mDNOG1CV/noaSDIh8x/duM3NhgLTnANNKA="; 12 12 fetchSubmodules = true; 13 13 }; 14 14
+2 -2
pkgs/servers/pocketbase/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "pocketbase"; 9 - version = "0.22.0"; 9 + version = "0.22.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "pocketbase"; 13 13 repo = "pocketbase"; 14 14 rev = "v${version}"; 15 - hash = "sha256-CVGxjAgVsGTtUTkowghIh831riKfaTp4cjUjDO+oFG4="; 15 + hash = "sha256-y+8mBfMZI6FF8nzmlN0NaAP4Jbr69DYQnvle0TWt2kY="; 16 16 }; 17 17 18 18 vendorHash = "sha256-Q3DlOKaE3fUlRMSfi8Ta9ZyyOE+viiONVUO8x4JACDg=";
+3 -3
pkgs/servers/simple-http-server/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "simple-http-server"; 12 - version = "0.6.8"; 12 + version = "0.6.9"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "TheWaWaR"; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 - sha256 = "sha256-QVNHomav8k1HflrOoQ7Ub5ZSCExpikbe0iAaVlAJEEs="; 18 + sha256 = "sha256-JY3j/SCBm485w4x3EDTjDQw/N+t+3FvQyY9b7SQKhak="; 19 19 }; 20 20 21 - cargoHash = "sha256-uDdzv0uPITE4DySoHPMFkJ0/wrPNZOao43Z7tOhRboI="; 21 + cargoHash = "sha256-6Gg4CDqlMtiOHJSeMfg9rP0CgP57GGfnuoqAXFuL8jo="; 22 22 23 23 nativeBuildInputs = [ pkg-config ]; 24 24
+3 -3
pkgs/servers/sql/dolt/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "dolt"; 5 - version = "1.34.3"; 5 + version = "1.35.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "dolthub"; 9 9 repo = "dolt"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-/H3jOEMrmhpcuPorv7hebs7LdNftJNXh9aRzxlpmOEY="; 11 + sha256 = "sha256-h1ypyhslsqGrYFXzAdhoviXQwy8ub31+CNQaXMjKSB0="; 12 12 }; 13 13 14 14 modRoot = "./go"; 15 15 subPackages = [ "cmd/dolt" ]; 16 - vendorHash = "sha256-xkqpdY/8zvRT09WQ5RajXtHIoe8MeQaJ8kQie9EFoZE="; 16 + vendorHash = "sha256-kC/+zCuIVUZ7Fpq2WfjYa3tG0vYGkUibK926yh3DCp4="; 17 17 proxyVendor = true; 18 18 doCheck = false; 19 19
+2 -2
pkgs/servers/sql/pgbouncer/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pgbouncer"; 5 - version = "1.22.0"; 5 + version = "1.22.1"; 6 6 7 7 src = fetchurl { 8 8 url = "https://www.pgbouncer.org/downloads/files/${version}/${pname}-${version}.tar.gz"; 9 - hash = "sha256-xu43qNfdvrv4RC2PCOwHw9pGr7Kq45ZziMFIFpineFg="; 9 + hash = "sha256-KwGKps5/WSyYkrueD9kCYkhOtzk3/Sr5KXcKRTc7ohU="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ pkg-config ];
+4 -1
pkgs/stdenv/linux/make-bootstrap-tools-cross.nix
··· 12 12 pkgs = releaseLib.pkgsForCross crossSystem system; 13 13 }; 14 14 in lib.mapAttrs (n: make) (with lib.systems.examples; { 15 - # NOTE: Only add platforms for which there are files in `./bootstrap-files`. 15 + # NOTE: Only add platforms for which there are files in `./bootstrap-files` 16 + # or for which you plan to request the tarball upload soon. See the 17 + # maintainers/scripts/bootstrap-files/README.md 18 + # on how to request an upload. 16 19 # Sort following the sorting in `./default.nix` `bootstrapFiles` argument. 17 20 18 21 armv5tel-unknown-linux-gnueabi = sheevaplug;
+105 -105
pkgs/tools/admin/pulumi-bin/data.nix
··· 1 1 # DO NOT EDIT! This file is generated automatically by update.sh 2 2 { }: 3 3 { 4 - version = "3.107.0"; 4 + version = "3.108.1"; 5 5 pulumiPkgs = { 6 6 x86_64-linux = [ 7 7 { 8 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.107.0-linux-x64.tar.gz"; 9 - sha256 = "14hkk04jkfld8y051dxpigqhgx7s7n9d2sa4walkrz85vw928v2k"; 8 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.108.1-linux-x64.tar.gz"; 9 + sha256 = "179hffqii76pc1ir8819af5vy6iiyygx5k33zpff0pg5bc6xm4w0"; 10 10 } 11 11 { 12 12 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.12.0-linux-amd64.tar.gz"; ··· 17 17 sha256 = "17c5960kcjzz3hl4nwh41qkpj67072cfs2bxbqin9b2b33x9bfvy"; 18 18 } 19 19 { 20 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-alicloud-v3.49.0-linux-amd64.tar.gz"; 21 - sha256 = "07wyxig26ss9a4jcdwwrpy615ii17gky9s0ncz1nlrwrgiazmah0"; 20 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-alicloud-v3.49.1-linux-amd64.tar.gz"; 21 + sha256 = "17isifx3ysxdi4lrl8blkpzvcxn2yzxvyx3xsr22mqna57lzvh3l"; 22 22 } 23 23 { 24 24 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v6.1.4-linux-amd64.tar.gz"; ··· 29 29 sha256 = "06gz2xqmwms01r4p59l9yvv3w3jvmlyaqr8y2z91hn0im4l8df2b"; 30 30 } 31 31 { 32 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.23.0-linux-amd64.tar.gz"; 33 - sha256 = "12bcq08my84h6pk736s4hswpvqxkrnw855jc6hqiiaskk3yk5a2i"; 32 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.24.0-linux-amd64.tar.gz"; 33 + sha256 = "1rimqplyil0r84n7yw9nzjx8y4r9k6fnyp7my1qb1wqy6w8sx5y4"; 34 34 } 35 35 { 36 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v5.47.1-linux-amd64.tar.gz"; 37 - sha256 = "068hi7f8jyia6rsmlzyc2vc7qgyl7b7ll05kx5czjrq132mv56d6"; 36 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v5.47.2-linux-amd64.tar.gz"; 37 + sha256 = "0d2swa7irx1xr18gs4p3can1bp1pckk5cggfl5cdfkrz966rv8cb"; 38 38 } 39 39 { 40 40 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuredevops-v2.15.0-linux-amd64.tar.gz"; 41 41 sha256 = "0jaqkf7ibp0vxrvz6imaal9iyf60p6hhay7vmh62vmm0jgdv1ply"; 42 42 } 43 43 { 44 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v5.67.0-linux-amd64.tar.gz"; 45 - sha256 = "0q801z0gvdp5kwxd2n59kl45lil78mgxwi22zcwnwh28bf48303n"; 44 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v5.67.1-linux-amd64.tar.gz"; 45 + sha256 = "01yh8cz2nq27ir6smv6j9rhnv796id961grd2ayjyjcrpin6b0pd"; 46 46 } 47 47 { 48 48 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.21.0-linux-amd64.tar.gz"; ··· 73 73 sha256 = "0f4czs3hjibmwvswm2zgjq3nys2sp4lr7xy2rpm4k7msdcsxk5kb"; 74 74 } 75 75 { 76 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v7.11.0-linux-amd64.tar.gz"; 77 - sha256 = "181753mpnph9zgzc90rd9v00iqw1sjblbh4i6y7ybschmi2vcvwa"; 76 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v7.11.2-linux-amd64.tar.gz"; 77 + sha256 = "0hnhgiss847s7znii3fd3c0w1i7f582khrcvb4a422ws89nrf070"; 78 78 } 79 79 { 80 80 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.0.0-linux-amd64.tar.gz"; ··· 93 93 sha256 = "0pz7jga19pwwx7ba5364b6sv1zsmxvnldakdh6641fqp9wl6smxp"; 94 94 } 95 95 { 96 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.8.0-linux-amd64.tar.gz"; 97 - sha256 = "1z6nh7piwa54l81c32i25dx079m26a89q894m63hyjg3z47wqlci"; 96 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.8.1-linux-amd64.tar.gz"; 97 + sha256 = "0fsif489vj0cnag7q1ap7hb2lhfrhihbpnjygghwlqdf9nrcr54i"; 98 98 } 99 99 { 100 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.14.0-linux-amd64.tar.gz"; 101 - sha256 = "0rzhdhb4lgjfzfhnmvs875axqivjwwfq6d62v7j6ksnxynlfzqmj"; 100 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.15.0-linux-amd64.tar.gz"; 101 + sha256 = "10p4gsz6qj93fd0f9d1pvql501gpyrl684465b51xxrh29506nwk"; 102 102 } 103 103 { 104 104 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.5.1-linux-amd64.tar.gz"; 105 105 sha256 = "1k2pa1wbh49qkg99khdyzj1qfjld74ijzn4y94c27vjsm9wmn7ka"; 106 106 } 107 107 { 108 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.1-linux-amd64.tar.gz"; 109 - sha256 = "068zzad887pqsdyx93xdj5vnkr7pvsx7i4sqzm536g53k79xq54l"; 108 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.3-linux-amd64.tar.gz"; 109 + sha256 = "010x3wa1c3cjccli0b1y25xd6jkvhdcxahfwda8jv31b5ilsv3zx"; 110 110 } 111 111 { 112 112 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v3.15.1-linux-amd64.tar.gz"; 113 113 sha256 = "135br9q8f1ic0xvrhx9yii5giq1h5qzlyb5kyvnyb3hwx49f1ik6"; 114 114 } 115 115 { 116 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.10.1-linux-amd64.tar.gz"; 117 - sha256 = "1vi1mhkrxrl5ajaa93vfziii12w0wwlrxd6hyvvxwfkkxn0n3ivm"; 116 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.11.0-linux-amd64.tar.gz"; 117 + sha256 = "14blk6gfdxjr1l3gxfj3f1ljz66yi8z35lva3fy75fs5gy6z1wnb"; 118 118 } 119 119 { 120 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.15.1-linux-amd64.tar.gz"; 121 - sha256 = "1za2d3cad1grcnkkqmyn9b7wlz9ayimsv17ygg638wh7v34w0yjq"; 120 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.16.0-linux-amd64.tar.gz"; 121 + sha256 = "1wvdncw149ch6hi3fw7fibk78j2clbxlwmf4hivai7zhh8ikg1nq"; 122 122 } 123 123 { 124 124 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v0.49.0-linux-amd64.tar.gz"; ··· 133 133 sha256 = "0jiny0s6hvzzcgv7zkdmc4d0rdcwpq49dz7fqsaz81maz7kck8a5"; 134 134 } 135 135 { 136 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.14.0-linux-amd64.tar.gz"; 137 - sha256 = "0q23ck7ifs42cfd1iadcn1djhmpg203z1r7nxlfhnp3h0f7z1p5h"; 136 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.15.0-linux-amd64.tar.gz"; 137 + sha256 = "19z0adq7dy7cvfkbi8xl3wq1shm4rjswjslnfq5fflyky8pgjyy3"; 138 138 } 139 139 { 140 140 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v5.0.1-linux-amd64.tar.gz"; ··· 145 145 sha256 = "1nc72m6d0kixs0mih83f6bad2dwwmwz89r6w8dkhi0071bg28lgc"; 146 146 } 147 147 { 148 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-venafi-v1.6.3-linux-amd64.tar.gz"; 149 - sha256 = "0jfp8wqb6gkq7ndihi4bpcm2s0vz1xkc2m4i58hy80zfvdiq3ipz"; 148 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-venafi-v1.7.0-linux-amd64.tar.gz"; 149 + sha256 = "0w7cgafkz1r55bz8n51v2rqhmmxzrf7ma60awzlfd2apyihghxyp"; 150 150 } 151 151 { 152 152 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.9.2-linux-amd64.tar.gz"; ··· 163 163 ]; 164 164 x86_64-darwin = [ 165 165 { 166 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.107.0-darwin-x64.tar.gz"; 167 - sha256 = "0x05cbvwvmwrfdrnwr4ca9g0d0rs2pjyqgw5bqvrh0k7ll5z10dz"; 166 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.108.1-darwin-x64.tar.gz"; 167 + sha256 = "1993jk9wraxxds7phlpp2kwhn80k6hvf54nb5nj9883nsm5n4syz"; 168 168 } 169 169 { 170 170 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.12.0-darwin-amd64.tar.gz"; ··· 175 175 sha256 = "05x8allllb6spjkjf9lchk1pyprj356s0kgy2rdz24knvr2rxr3r"; 176 176 } 177 177 { 178 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-alicloud-v3.49.0-darwin-amd64.tar.gz"; 179 - sha256 = "1yd1s42lnjmz02i5kplxa0x6qk80m20f0x1dypxnbrjnghj05fcq"; 178 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-alicloud-v3.49.1-darwin-amd64.tar.gz"; 179 + sha256 = "08ji9qkl1njci37a2hsvi5gj28x986a4xlkc7z9y2n0vzr9cy3rl"; 180 180 } 181 181 { 182 182 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v6.1.4-darwin-amd64.tar.gz"; ··· 187 187 sha256 = "1wlw4lvdy63fw2vpv0cg3g5ffy1frr8dfbvnr1avashw1bvmh6yd"; 188 188 } 189 189 { 190 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.23.0-darwin-amd64.tar.gz"; 191 - sha256 = "1wv0m7lbrpiwn5a9d96kh37zf8vp23sf25kyx3gxd2khx3g2s0ww"; 190 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.24.0-darwin-amd64.tar.gz"; 191 + sha256 = "0zbappmx8za45nn0pn2vwab5z7zbx0yw2bfrlnpnmq6bflgv9mg2"; 192 192 } 193 193 { 194 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v5.47.1-darwin-amd64.tar.gz"; 195 - sha256 = "1hkkjqm5b8mnzvgkjzz3zkq86wzbi89n1i19l9jy57pbr6mr2kkk"; 194 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v5.47.2-darwin-amd64.tar.gz"; 195 + sha256 = "1bjvbqdhd49ayxcv60rii4y3ngafjfzz0w9flra9wkh8hv8z1xxz"; 196 196 } 197 197 { 198 198 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuredevops-v2.15.0-darwin-amd64.tar.gz"; 199 199 sha256 = "11whky196lqgj8bgzxixd1m39jqw3fs9if8knmwcr7zmd3jyf80w"; 200 200 } 201 201 { 202 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v5.67.0-darwin-amd64.tar.gz"; 203 - sha256 = "1v3bqv5yf8ixfag8bshhhyq9wi1viys6r2c6hg26nw56i6g5i951"; 202 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v5.67.1-darwin-amd64.tar.gz"; 203 + sha256 = "05ll4cbmvc61jx15y37n79bslqkxc5879kjg4i86l3cldgmazjdi"; 204 204 } 205 205 { 206 206 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.21.0-darwin-amd64.tar.gz"; ··· 231 231 sha256 = "03xk7hkcs0f8684ll7f7z7z14zwj66qnps0pcsd7r34s7qyhy33g"; 232 232 } 233 233 { 234 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v7.11.0-darwin-amd64.tar.gz"; 235 - sha256 = "1j0fkc2g8jbd07cc2s1v88psg01pgiqmdf3hph0zv67qsymfi5w8"; 234 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v7.11.2-darwin-amd64.tar.gz"; 235 + sha256 = "1s08pdqba2i81ijm4bm6qm4a1biy53hrxv964l9gv5gf45jm3md7"; 236 236 } 237 237 { 238 238 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.0.0-darwin-amd64.tar.gz"; ··· 251 251 sha256 = "18w9x6ym08ljr71kl82qb017cxzfbpkhbvljb1ki8nrk32s7rljy"; 252 252 } 253 253 { 254 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.8.0-darwin-amd64.tar.gz"; 255 - sha256 = "0rylnwf2500iw2dkigs3jrxpjvvxs1b0vh6z2kv4l8xlfb47r2rn"; 254 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.8.1-darwin-amd64.tar.gz"; 255 + sha256 = "0r76x8339mdlmi7d4sxfnz3lisj5gsscdckv7ca8i5zs288yifhv"; 256 256 } 257 257 { 258 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.14.0-darwin-amd64.tar.gz"; 259 - sha256 = "1ij1j34321pa7x7cxb2lpcdakqgwnfvfh9jpbr1zgs5fqvi7ya1c"; 258 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.15.0-darwin-amd64.tar.gz"; 259 + sha256 = "1zn2wz1adypy2cr8wl60rsry7m923zyyl2kkf19j5326rbxhki37"; 260 260 } 261 261 { 262 262 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.5.1-darwin-amd64.tar.gz"; 263 263 sha256 = "063jm09bpshlc86svwacafjbc6iv09n81jx4hmcwwgcic6pwb1ic"; 264 264 } 265 265 { 266 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.1-darwin-amd64.tar.gz"; 267 - sha256 = "0457whyfc8vkq4jpd2z1sfwxsbdlbx6dzcr1kqf799xb1k049bwj"; 266 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.3-darwin-amd64.tar.gz"; 267 + sha256 = "1hrc3lrn7ry6p44f0d287z5nw754rwk0xlhr8zj5vx3xyx8jws34"; 268 268 } 269 269 { 270 270 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v3.15.1-darwin-amd64.tar.gz"; 271 271 sha256 = "1wcripnsgxwlj7s6mv726kxrf689xlc7zxqmra5a1zdmfqskmq4k"; 272 272 } 273 273 { 274 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.10.1-darwin-amd64.tar.gz"; 275 - sha256 = "1ndpj3mpxbhpvj29x1a61jj2hqk6v9ysmrb87gd6a30rafs9r7fc"; 274 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.11.0-darwin-amd64.tar.gz"; 275 + sha256 = "1lp9ga9yzz52dnpw3im32d5g8pai42wnj3c3r7acb48ndy2xw9g7"; 276 276 } 277 277 { 278 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.15.1-darwin-amd64.tar.gz"; 279 - sha256 = "00m5f757fk01wkqf3ji4d0yjmk7i4b3sglgws3mgr5j1waswy4jw"; 278 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.16.0-darwin-amd64.tar.gz"; 279 + sha256 = "0xgcvika75bbyaabjxi1jzmv0w86i0nzixfc50x4crz0969qncz4"; 280 280 } 281 281 { 282 282 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v0.49.0-darwin-amd64.tar.gz"; ··· 291 291 sha256 = "01f6c3zgmlmips4b5ysdp2vyflykq9bi1r1pbmqh05b6j35r90km"; 292 292 } 293 293 { 294 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.14.0-darwin-amd64.tar.gz"; 295 - sha256 = "01f9lq4javm9fw87xclz44yq8iwa47fxz23fws694a0lsl0ki33m"; 294 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.15.0-darwin-amd64.tar.gz"; 295 + sha256 = "10skdrdb9dsd4pkamwihf73laaif90dkfl8ixi6irf30rqihc2nf"; 296 296 } 297 297 { 298 298 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v5.0.1-darwin-amd64.tar.gz"; ··· 303 303 sha256 = "1wgdn8zv3q4fn6730jfyb5x7rmb460plc4iddlsibnwnx0w5c3s5"; 304 304 } 305 305 { 306 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-venafi-v1.6.3-darwin-amd64.tar.gz"; 307 - sha256 = "04w6xmnqivc34grfgh3hqi9zp7ibsrrc2v0v102zh0sxn7lbksc6"; 306 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-venafi-v1.7.0-darwin-amd64.tar.gz"; 307 + sha256 = "1pvbcyw1l2b27hn48klc2fj3is2y3z1dj90ac4kkqi2ag4xj45vx"; 308 308 } 309 309 { 310 310 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.9.2-darwin-amd64.tar.gz"; ··· 321 321 ]; 322 322 aarch64-linux = [ 323 323 { 324 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.107.0-linux-arm64.tar.gz"; 325 - sha256 = "14n3i99vyqnbab7glaa80f3irlw0x5di2fawbbqan3fzc2j46z9c"; 324 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.108.1-linux-arm64.tar.gz"; 325 + sha256 = "0qf4lbldkc04jx13a4fdn6i2s1wfsa8x9c74fzplk75mwkv3fk1z"; 326 326 } 327 327 { 328 328 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.12.0-linux-arm64.tar.gz"; ··· 333 333 sha256 = "0kb7hdciy8i91kmfndriav7sm05r1jkam7i634b5r6d7agdlvr2h"; 334 334 } 335 335 { 336 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-alicloud-v3.49.0-linux-arm64.tar.gz"; 337 - sha256 = "14x57ja726wb0kiwqdva6fk3jjd974apjqsq8i3nwkx6rrr91hvy"; 336 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-alicloud-v3.49.1-linux-arm64.tar.gz"; 337 + sha256 = "0r69ar70k0zyglyxh9v2ilv5xiks9dqfqi0fvy8lc8zkgrcwfb19"; 338 338 } 339 339 { 340 340 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v6.1.4-linux-arm64.tar.gz"; ··· 345 345 sha256 = "14wplnr5axic2a9skx0y6rjq8si02qwpadpcl978vchll0f4g1pz"; 346 346 } 347 347 { 348 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.23.0-linux-arm64.tar.gz"; 349 - sha256 = "04px1q2s7y97aw09j7s8n6yr6ysbhrly839vg6mag98g1b2ikz9p"; 348 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.24.0-linux-arm64.tar.gz"; 349 + sha256 = "15q20as4nmrcxf5dg4ahz3x4ffsnmzi6fcaiv9qn8ln30r5cvf98"; 350 350 } 351 351 { 352 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v5.47.1-linux-arm64.tar.gz"; 353 - sha256 = "1rn6w2740zjcazrxy8h5f2g7mz17wvmnbyld7qm3zadn6rx4dipr"; 352 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v5.47.2-linux-arm64.tar.gz"; 353 + sha256 = "0pzbsz7c6q9x3xfpcc8yb6d14hk514yr03p3nfsvmp2nb7224r6s"; 354 354 } 355 355 { 356 356 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuredevops-v2.15.0-linux-arm64.tar.gz"; 357 357 sha256 = "1fcpf2x9dlxk2s06pgvqwsmjpwlv47q666xpj6cmx9cybmnhgjn4"; 358 358 } 359 359 { 360 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v5.67.0-linux-arm64.tar.gz"; 361 - sha256 = "0zn6n92yf3kbp3z788db8gq1gnwsmrmnqijq9d1a4wn6a5fwdy04"; 360 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v5.67.1-linux-arm64.tar.gz"; 361 + sha256 = "1vzfdagcqm5im4zn7dlqhmz0wjk8aq59yplzqfif411g09zhnr6j"; 362 362 } 363 363 { 364 364 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.21.0-linux-arm64.tar.gz"; ··· 389 389 sha256 = "1kf88g5jm3xr5b35is8h0rqxzy79az3s90givsnr7x6xmm6favqc"; 390 390 } 391 391 { 392 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v7.11.0-linux-arm64.tar.gz"; 393 - sha256 = "06mbbzb4c999r7x3vvngqsm58h7g6r8sq4w1aqbb8brkhhfg3wfj"; 392 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v7.11.2-linux-arm64.tar.gz"; 393 + sha256 = "0dp11yirgfr45pqbqva5zapcgzb7gsf53al389dnr00cizfihn1r"; 394 394 } 395 395 { 396 396 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.0.0-linux-arm64.tar.gz"; ··· 409 409 sha256 = "1shra5wq8zx4l9b3sp6yklhi8hbd8r2ypay9nf4jgwnc6ppql102"; 410 410 } 411 411 { 412 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.8.0-linux-arm64.tar.gz"; 413 - sha256 = "11i44aiqypn4x74m0x3w9h37k55dfdys2il9asxbfmkh4slmqc62"; 412 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.8.1-linux-arm64.tar.gz"; 413 + sha256 = "10kk7m7nisd75nb0f689ldfprx56asxfsc785gsnssjjjhy40vvr"; 414 414 } 415 415 { 416 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.14.0-linux-arm64.tar.gz"; 417 - sha256 = "18mdgj637h4qrlsz3ryr5nf2dy59lji1mxfcy6cfrsapwdig9w3n"; 416 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.15.0-linux-arm64.tar.gz"; 417 + sha256 = "1alll2yq4h7qb2zc4n9pj9rvqv8mv5v9jrxgnrsw7mha3cnjysa4"; 418 418 } 419 419 { 420 420 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.5.1-linux-arm64.tar.gz"; 421 421 sha256 = "1cz4xvvdj0kr63a2x21zbjm4viw92k2920ljnqsfv2wr2f03yk6s"; 422 422 } 423 423 { 424 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.1-linux-arm64.tar.gz"; 425 - sha256 = "12smmvbqcdbnqr7r4vx1w3k77hn8l0z7lvb5i1f34fnybq1k3b81"; 424 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.3-linux-arm64.tar.gz"; 425 + sha256 = "1czrp700a4sdlxij8xgsl595fzg1s0k3pwnrwa2bl41xws9p65zy"; 426 426 } 427 427 { 428 428 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v3.15.1-linux-arm64.tar.gz"; 429 429 sha256 = "17gbazfqs1f2m0h9awwqw14amxlxvl3zwhx3nbzh86my7gn3kjmv"; 430 430 } 431 431 { 432 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.10.1-linux-arm64.tar.gz"; 433 - sha256 = "0vkgdc0b76ngrd9vdsqx5rmlijxvdrkr1vkyisl81z73bgjyh9zp"; 432 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.11.0-linux-arm64.tar.gz"; 433 + sha256 = "0mrfh9mr825gj0gizviwihym8gisnx49lq1sff4128jgsfaq2snv"; 434 434 } 435 435 { 436 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.15.1-linux-arm64.tar.gz"; 437 - sha256 = "10k9v7v9krjsk095cmk84w875bllkbjl19syiqiq19am66k9n8jj"; 436 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.16.0-linux-arm64.tar.gz"; 437 + sha256 = "0fp9z7mfpprs4680s350wyys6a0jwx4s455jqr938zxnx8s3rhfg"; 438 438 } 439 439 { 440 440 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v0.49.0-linux-arm64.tar.gz"; ··· 449 449 sha256 = "0m07iydqlampsx2zdgliyqa5h1zwj42p865anak37i59j1cx7ash"; 450 450 } 451 451 { 452 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.14.0-linux-arm64.tar.gz"; 453 - sha256 = "1n4ywh7l77w4zjk8vpdhrp44f0hzpr5pbmnh89c5q5j5w0p5wwck"; 452 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.15.0-linux-arm64.tar.gz"; 453 + sha256 = "12b7k1d3jl2s6lg5izr38yaf8n1k7hd76pdy1d09wrv5l2hbn8zh"; 454 454 } 455 455 { 456 456 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v5.0.1-linux-arm64.tar.gz"; ··· 461 461 sha256 = "0irp9vqikmmgcgzkca2z9nnak8ih73bbhs5576sf7y4132f4wvjj"; 462 462 } 463 463 { 464 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-venafi-v1.6.3-linux-arm64.tar.gz"; 465 - sha256 = "19xsgfb302nx6mcq4pninq66i7926r0dl2qdcvmsj6qbm83bdih4"; 464 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-venafi-v1.7.0-linux-arm64.tar.gz"; 465 + sha256 = "017ff9x7s4yvsrf4ypsyaz934r9jm954080gn5535w1694k96wbn"; 466 466 } 467 467 { 468 468 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.9.2-linux-arm64.tar.gz"; ··· 479 479 ]; 480 480 aarch64-darwin = [ 481 481 { 482 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.107.0-darwin-arm64.tar.gz"; 483 - sha256 = "1bm1mnzi9xlh5yqqvfixb18c1pqajs6x7r96wafxj5097476cam1"; 482 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.108.1-darwin-arm64.tar.gz"; 483 + sha256 = "13qyf4cg3ksflx1ax5pzn1a75r9zk89a41ywp08s7vfacmmvm6ym"; 484 484 } 485 485 { 486 486 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aiven-v6.12.0-darwin-arm64.tar.gz"; ··· 491 491 sha256 = "1b47n69nc5nicagwdxq793a6nmbrg15690i8q40nixcf7k48krai"; 492 492 } 493 493 { 494 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-alicloud-v3.49.0-darwin-arm64.tar.gz"; 495 - sha256 = "0vl8a1vf0n2xjk7k39b0w4plj0lj3rxqys2wjycxvkkp6kxfb6s9"; 494 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-alicloud-v3.49.1-darwin-arm64.tar.gz"; 495 + sha256 = "0vwpr8fawr8gag8nrsi0dl4vw0dczqa4rm5dflgf2v5gfdhclsd6"; 496 496 } 497 497 { 498 498 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-artifactory-v6.1.4-darwin-arm64.tar.gz"; ··· 503 503 sha256 = "17d3p29w4hd5lrpgmf9j17fwy4vx1cr84nlfci3rvfzzih1x62yl"; 504 504 } 505 505 { 506 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.23.0-darwin-arm64.tar.gz"; 507 - sha256 = "0r3kv95dmfr04iy7ha7x2akbj4mwjdqd3fzld0ysnlbnm37mkfg8"; 506 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v6.24.0-darwin-arm64.tar.gz"; 507 + sha256 = "1i9z6ifhz0han1wmjm6f3ywm6jqbfgaq1xrwf8vq9yph54is0ysq"; 508 508 } 509 509 { 510 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v5.47.1-darwin-arm64.tar.gz"; 511 - sha256 = "1n2kvcd68hya0i8bkiciigrv621n9f0xc5y5wji09advh8cx8a4w"; 510 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuread-v5.47.2-darwin-arm64.tar.gz"; 511 + sha256 = "1zj37idg91anzx0hd6y2mshgl0bxc9ysfd4prgvj4drf92gwrx4g"; 512 512 } 513 513 { 514 514 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azuredevops-v2.15.0-darwin-arm64.tar.gz"; 515 515 sha256 = "1c7ycicwszn9fsaw81rn88kgm7b5i0hp9sxp92qxfn649x742c45"; 516 516 } 517 517 { 518 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v5.67.0-darwin-arm64.tar.gz"; 519 - sha256 = "1mdmrf663fys5g0haxsyqp725aba6kim1hws6jympcchnqpp0l7k"; 518 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v5.67.1-darwin-arm64.tar.gz"; 519 + sha256 = "0id3w5wsapr5jh879qmglymbjzhl2r0w6kjahm1zzwvlqc3vg66w"; 520 520 } 521 521 { 522 522 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v5.21.0-darwin-arm64.tar.gz"; ··· 547 547 sha256 = "1pd2x157ljb8rgm1mawqvqb39n0101450syr43z1qjmhgws7gz74"; 548 548 } 549 549 { 550 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v7.11.0-darwin-arm64.tar.gz"; 551 - sha256 = "1rvxpzjy6q8flly4vb8248gyf0bh4f25az9m1bk13pil20xadsmx"; 550 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v7.11.2-darwin-arm64.tar.gz"; 551 + sha256 = "03njrkmia42i0sg6qp76n8ymch4jaql4lkx0ixiscdwzgbx4v03m"; 552 552 } 553 553 { 554 554 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v6.0.0-darwin-arm64.tar.gz"; ··· 567 567 sha256 = "19zhkq9lppjj41ddhbk2fi5xrmmbgyk38mlzvkqfly9lwgbc18v3"; 568 568 } 569 569 { 570 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.8.0-darwin-arm64.tar.gz"; 571 - sha256 = "0c0d5b2wn73wmf5gmslkzg6hxkj97abhlwx5ipdqnd591d6zfw3a"; 570 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v4.8.1-darwin-arm64.tar.gz"; 571 + sha256 = "0sq72v8hshx4kwbzsp9dyg26p21cwz8y7dh5msaqlxwsqmsw62pc"; 572 572 } 573 573 { 574 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.14.0-darwin-arm64.tar.gz"; 575 - sha256 = "03bicis1q94jqhy4h3wyrqy059dx010fafmxnpmizxcn565hhpcs"; 574 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v4.15.0-darwin-arm64.tar.gz"; 575 + sha256 = "07wf92lhbjzxifdvzjss6hmphdllclzj3b7k7nda03pv90awsh79"; 576 576 } 577 577 { 578 578 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.5.1-darwin-arm64.tar.gz"; 579 579 sha256 = "1d90jmcm98nlagaqlnjk8kz5dn35yp682rxkps5w0m2x2k48hqxm"; 580 580 } 581 581 { 582 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.1-darwin-arm64.tar.gz"; 583 - sha256 = "1li9qyzqknpjlj2z3pfghji47xvhsl268p48pl2i1g99d4qkpbsc"; 582 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.2.3-darwin-arm64.tar.gz"; 583 + sha256 = "1ss909lscg6diphzpgxkm2gylvj0nkyf4jzp422m94g6xcinfwhy"; 584 584 } 585 585 { 586 586 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v3.15.1-darwin-arm64.tar.gz"; 587 587 sha256 = "0dqvgmcpvv3h86licnmlswlj2dklj2sqr02wyc10srw8gddvysx5"; 588 588 } 589 589 { 590 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.10.1-darwin-arm64.tar.gz"; 591 - sha256 = "14dc917y4ddd35ib5d0c3swlm6vcsjs57g8zd5gx74vnfgvkbc3h"; 590 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.11.0-darwin-arm64.tar.gz"; 591 + sha256 = "0xx8mphabl1vvmmyb5ramlf6zvd32lx46f6hlmihh76zfajhc5ci"; 592 592 } 593 593 { 594 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.15.1-darwin-arm64.tar.gz"; 595 - sha256 = "1gri8is4man0zgp3yg0dmfnk9fjhrg02zahlravscxpd4baycb6p"; 594 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.16.0-darwin-arm64.tar.gz"; 595 + sha256 = "15zxfi82jqja0xzryb74pvcxnrbn6axrs98j463z248b5fbwc7b8"; 596 596 } 597 597 { 598 598 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-snowflake-v0.49.0-darwin-arm64.tar.gz"; ··· 607 607 sha256 = "041zjnywmpxa302igaszj0hd6k4qb455i2c0452rlfh9kj7k2sa5"; 608 608 } 609 609 { 610 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.14.0-darwin-arm64.tar.gz"; 611 - sha256 = "1c63r0mr4q51b7bsc60idbinz6f0irgcg4wl72qhinbrl8wgdwd9"; 610 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tailscale-v0.15.0-darwin-arm64.tar.gz"; 611 + sha256 = "1mrjn3g55h77rjni6v2v0hz4csclfiy2wdx7gllnwbpgfcchlqr2"; 612 612 } 613 613 { 614 614 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-tls-v5.0.1-darwin-arm64.tar.gz"; ··· 619 619 sha256 = "0aidg913j23b7i018yqwgz1pcssgyrvyfhlwh0jbdxay66v8cdi9"; 620 620 } 621 621 { 622 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-venafi-v1.6.3-darwin-arm64.tar.gz"; 623 - sha256 = "16kaha5i49sr7m60c3ql9j0amp051z3yxrfpw18ksygshinii8cb"; 622 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-venafi-v1.7.0-darwin-arm64.tar.gz"; 623 + sha256 = "00qq53wirdjm8zqqisad34fzx70m96dwg0dqysz6nqikq620h7dp"; 624 624 } 625 625 { 626 626 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.9.2-darwin-arm64.tar.gz";
+1 -1
pkgs/tools/filesystems/xfsprogs/default.nix
··· 58 58 description = "SGI XFS utilities"; 59 59 license = with licenses; [ gpl2Only lgpl21 gpl3Plus ]; # see https://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git/tree/debian/copyright 60 60 platforms = platforms.linux; 61 - maintainers = with maintainers; [ dezgeg ] ++ teams.helsinki-systems.members; 61 + maintainers = with maintainers; [ dezgeg ajs124 ] ++ teams.helsinki-systems.members; 62 62 }; 63 63 }
+3 -3
pkgs/tools/misc/broot/default.nix
··· 18 18 19 19 rustPlatform.buildRustPackage rec { 20 20 pname = "broot"; 21 - version = "1.34.0"; 21 + version = "1.35.0"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "Canop"; 25 25 repo = pname; 26 26 rev = "v${version}"; 27 - hash = "sha256-5CWcc55OunZwCTqODQnvPUnn5cJET83PfIyDyzmpOkA="; 27 + hash = "sha256-L9a1fQZkCHSHseZtQYwqIt1CokPGBqLcqY0jccHYqGw="; 28 28 }; 29 29 30 - cargoHash = "sha256-kNZPAU8QSR9hDwalvsRqRL4gaKTyvUA2gZ/bBB6/YDU="; 30 + cargoHash = "sha256-DRW1gv5lqdXWcRLD2yf7+u6J/xIUWmELmb/l729Sqo4="; 31 31 32 32 nativeBuildInputs = [ 33 33 installShellFiles
+3 -3
pkgs/tools/misc/gotify-desktop/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "gotify-desktop"; 5 - version = "1.3.4"; 5 + version = "1.3.6"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "desbma"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-TuqzwmKB48xcdzrAr7MvDA9JChobraESQZPKoy24mPE="; 11 + sha256 = "sha256-epolESdf9+2lI+AJ8hMpVPakS1f8fYam+JniiPLIHCs="; 12 12 }; 13 13 14 - cargoHash = "sha256-vg3al+eH9Q4D/T56jwWBlBT4IhuggiEVBl8WoZmUS2Y="; 14 + cargoHash = "sha256-VJ/k6sfBCuokXGpfZ9zGQ7ucbHLweUSgBhlChwko69g="; 15 15 16 16 nativeBuildInputs = [ pkg-config ]; 17 17
+3 -2
pkgs/tools/misc/nbqa/default.nix
··· 7 7 }: 8 8 python3.pkgs.buildPythonApplication rec { 9 9 pname = "nbqa"; 10 - version = "1.7.1"; 10 + version = "1.8.3"; 11 11 pyproject = true; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "nbQA-dev"; 15 15 repo = "nbQA"; 16 16 rev = "refs/tags/${version}"; 17 - hash = "sha256-a/FuhJyf8BmZekUibzEiGgkHL51A+75R4a6S+h5i28s="; 17 + hash = "sha256-RucDwXXEOTInhV/hk6gYXUmxUu660/pSTrBtHLrLkQ8="; 18 18 }; 19 19 20 20 nativeBuildInputs = with python3.pkgs; [ ··· 81 81 "test_running_in_different_dir_works" 82 82 "test_unable_to_reconstruct_message_pythonpath" 83 83 "test_with_subcommand" 84 + "test_pylint_works" 84 85 ]; 85 86 86 87 disabledTestPaths = [
+2 -2
pkgs/tools/misc/panoply/default.nix
··· 2 2 3 3 stdenvNoCC.mkDerivation rec { 4 4 pname = "panoply"; 5 - version = "5.3.2"; 5 + version = "5.3.3"; 6 6 7 7 src = fetchurl { 8 8 url = "https://www.giss.nasa.gov/tools/panoply/download/PanoplyJ-${version}.tgz"; 9 - sha256 = "sha256-+B/k3MqoefD3AVSYuR006eYyNe+njsfiqwBtQ+1YIHA="; 9 + sha256 = "sha256-h2MJqbouPSciOdChLNIskYm3YLpJYK9gjTDB8StmBqg="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/tools/misc/pipectl/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "pipectl"; 10 - version = "0.4.1"; 10 + version = "0.4.2"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "Ferdi265"; 14 14 repo = pname; 15 15 rev = "v${version}"; 16 - hash = "sha256-dWRem9VHzMwVo+ahUagZB2r4Ag8PyBef5X41vVpZcAc="; 16 + hash = "sha256-Ixch5iyeIjx+hSvln8L0N8pXG7ordpsFVroqZPUzAG0="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ cmake scdoc ];
+3 -3
pkgs/tools/package-management/poetry/unwrapped.nix
··· 38 38 39 39 buildPythonPackage rec { 40 40 pname = "poetry"; 41 - version = "1.8.1"; 42 - format = "pyproject"; 41 + version = "1.8.2"; 42 + pyproject = true; 43 43 44 44 disabled = pythonOlder "3.8"; 45 45 ··· 47 47 owner = "python-poetry"; 48 48 repo = "poetry"; 49 49 rev = "refs/tags/${version}"; 50 - hash = "sha256-tHtd5vO3TMjO0gqyECuS0FUAcE90nkKZwOm3ne6poFQ="; 50 + hash = "sha256-MBWVeS/UHpzeeNUeiHMoXnLA3enRO/6yGIbg4Vf2GxU="; 51 51 }; 52 52 53 53 nativeBuildInputs = [
+1
pkgs/tools/security/vaultwarden/webvault.nix
··· 4 4 , git 5 5 , nixosTests 6 6 , python3 7 + , vaultwarden 7 8 }: 8 9 9 10 let
+3 -3
pkgs/tools/text/csview/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "csview"; 5 - version = "1.2.3"; 5 + version = "1.2.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "wfxr"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-O6IJGfJwGdtxLyUTFNHp9rGy05gVLlQTS8bTRsSYIuY="; 11 + sha256 = "sha256-7AppXnU9VQx1CMyK2evWtRFVb8qvgSzKp+oFKoIGR9w="; 12 12 }; 13 13 14 - cargoHash = "sha256-jwkoyvelxl2lJoOHznZDmd39GJMye/+vi7PjrzjlLk4="; 14 + cargoHash = "sha256-npbvKwxf6OxNw340yZ9vrQkXrZxD4G8yhZZEdDLwLs8="; 15 15 16 16 meta = with lib; { 17 17 description = "A high performance csv viewer with cjk/emoji support";
+2 -2
pkgs/tools/wayland/wl-mirror/default.nix
··· 28 28 29 29 stdenv.mkDerivation rec { 30 30 pname = "wl-mirror"; 31 - version = "0.16.1"; 31 + version = "0.16.2"; 32 32 33 33 src = fetchFromGitHub { 34 34 owner = "Ferdi265"; 35 35 repo = "wl-mirror"; 36 36 rev = "v${version}"; 37 - hash = "sha256-VUdmHJfbY1bA1/CeC8PJc+Xtupaz5a/15u4u3YGpxBA="; 37 + hash = "sha256-srGqMqkkdJzcxN2sNToqDw/6B4OirlmKW1MXt1Nmvsk="; 38 38 }; 39 39 40 40 strictDeps = true;
-4
pkgs/top-level/all-packages.nix
··· 33977 33977 33978 33978 nanorc = callPackage ../applications/editors/nano/nanorc { }; 33979 33979 33980 - nc4nix = callPackage ../development/tools/nc4nix { }; 33981 - 33982 33980 netbeans = callPackage ../applications/editors/netbeans { 33983 33981 jdk = jdk17; 33984 33982 }; ··· 37423 37421 frozen-bubble = callPackage ../games/frozen-bubble { }; 37424 37422 37425 37423 fsg = callPackage ../games/fsg { }; 37426 - 37427 - galaxis = callPackage ../games/galaxis { }; 37428 37424 37429 37425 gambit-chess = callPackage ../games/gambit { }; 37430 37426
+1 -3
pkgs/top-level/ocaml-packages.nix
··· 824 824 cfstream = self.cfstream.override { inherit core_kernel; }; 825 825 }; 826 826 827 - magic-trace = callPackage ../development/ocaml-modules/magic-trace { }; 828 - 829 827 phylogenetics = let 830 828 angstrom = self.angstrom.override { inherit ppx_let; }; 831 829 in callPackage ../development/ocaml-modules/phylogenetics { ··· 1022 1020 1023 1021 magic-mime = callPackage ../development/ocaml-modules/magic-mime { }; 1024 1022 1025 - magic-trace = janeStreet_0_15.magic-trace; 1023 + magic-trace = callPackage ../development/ocaml-modules/magic-trace { }; 1026 1024 1027 1025 mariadb = callPackage ../development/ocaml-modules/mariadb { 1028 1026 inherit (pkgs) mariadb;
+1 -1
pkgs/top-level/perl-packages.nix
··· 9835 9835 meta = { 9836 9836 description = "File locking with fcntl(2)"; 9837 9837 license = with lib.licenses; [ artistic1 ]; 9838 - maintainers = with maintainers; [ ajs124 das_j ]; 9838 + maintainers = with maintainers; [ das_j ]; 9839 9839 }; 9840 9840 }; 9841 9841