git.delta.rocks / jrsonnet / refs/commits / edc907b3856e

difftreelog

build upgrade nixpkgs

Yaroslav Bolyukin2021-10-07parent: #4daa40b.patch.diff
in: trunk

4 files changed

modifiedflake.lockdiffbeforeafterboth
17 },17 },
18 "nixpkgs": {18 "nixpkgs": {
19 "locked": {19 "locked": {
20 "lastModified": 1632011270,20 "lastModified": 1633629671,
21 "narHash": "sha256-UyEYSWTKB3boKu5JX/TrQtnAgaYvfSWT61VU8ZT1juk=",21 "narHash": "sha256-1IItATjckflBBAFDm9C0v/pg9b9BvKMj0mT/NDKZkJE=",
22 "owner": "nixos",22 "owner": "nixos",
23 "repo": "nixpkgs",23 "repo": "nixpkgs",
24 "rev": "7f59b4b5295b58659064a91d0bcc8e8a11d0b351",24 "rev": "471980fd33961a6b893041774a9633811d03354f",
25 "type": "github"25 "type": "github"
26 },26 },
27 "original": {27 "original": {
41 "rust-overlay": {41 "rust-overlay": {
42 "flake": false,42 "flake": false,
43 "locked": {43 "locked": {
44 "lastModified": 1631758650,44 "lastModified": 1633573101,
45 "narHash": "sha256-7OAtO2V8omtPaoFBASTfPA5m8MzN5LX8agk0k5p8dH0=",45 "narHash": "sha256-h9NFLA4VLYfa5Cjkwkbq/8N0/wy9bJ7xiIeLE9bjh4g=",
46 "owner": "oxalica",46 "owner": "oxalica",
47 "repo": "rust-overlay",47 "repo": "rust-overlay",
48 "rev": "4e79ebf67452cca4ae938180728f9f513e828d5b",48 "rev": "3131abe7900b142eca189806f51fcc3c475ed072",
49 "type": "github"49 "type": "github"
50 },50 },
51 "original": {51 "original": {
modifiedflake.nixdiffbeforeafterboth
24 rust24 rust
25 cargo-edit25 cargo-edit
26 cargo-udeps26 cargo-udeps
27 cargo-fuzz
2728
28 pkgconfig29 pkgconfig
29 openssl30 openssl
modifiedlib/default.nixdiffbeforeafterboth
23 value = nixpkgs.lib.nixosSystem {
23 system = configuredHosts.${name}.system;24 system = configuredHosts.${name}.system;
24 modules = configuredHosts.${name}.modules;25 modules = configuredHosts.${name}.modules;
26 pkgs = import nixpkgs { system = configuredHosts.${name}.system; };
25 };27 };
26 }28 }
27 )29 )
modifiedmodules/fleet/secrets.nixdiffbeforeafterboth
78 {78 {
79 secrets = (mapAttrs cleanupSecret79 secrets = (mapAttrs cleanupSecret
80 (filterAttrs (_: v: builtins.elem host v.owners) config.sharedSecrets)80 (filterAttrs (_: v: builtins.elem host v.owners) config.sharedSecrets)
81 ) // (mapAttrs cleanupSecret (if config.hostSecrets ? host then config.hostSecrets.${host} else {}));81 ) // (mapAttrs cleanupSecret (config.hostSecrets.${host} or {}));
82 }82 }
83 ];83 ];
84 });84 });