mirror of
https://github.com/Mic92/sops-nix.git
synced 2025-12-26 14:14:58 +08:00
also build ci for 21.11
This commit is contained in:
parent
7e5c8249e2
commit
c8e0dd83f8
2 changed files with 33 additions and 7 deletions
25
flake.lock
generated
25
flake.lock
generated
|
|
@ -2,11 +2,11 @@
|
||||||
"nodes": {
|
"nodes": {
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1652252629,
|
"lastModified": 1652541622,
|
||||||
"narHash": "sha256-SvT64apetqc8P5nYp1/fOZvUmHUPdPFUZbhSpKy+1aI=",
|
"narHash": "sha256-Z9BuUCS0IocoRahFvFDJNU5Q+xM5/lS8Ng4JJFH3+UU=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "d2fc6856824cb87742177eefc8dd534bdb6c3439",
|
"rev": "f7a22851667ac89ac1863ede0d8c386fc6eb12a0",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
@ -16,9 +16,26 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"nixpkgs-21_11": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1652559422,
|
||||||
|
"narHash": "sha256-jPVTNImBTUIFdtur+d4IVot6eXmsvtOcBm0TzxmhWPk=",
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "8b3398bc7587ebb79f93dfeea1b8c574d3c6dba1",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NixOS",
|
||||||
|
"ref": "release-21.11",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": "nixpkgs"
|
"nixpkgs": "nixpkgs",
|
||||||
|
"nixpkgs-21_11": "nixpkgs-21_11"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
||||||
15
flake.nix
15
flake.nix
|
|
@ -1,11 +1,13 @@
|
||||||
{
|
{
|
||||||
description = "Integrates sops into nixos";
|
description = "Integrates sops into nixos";
|
||||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||||||
|
inputs.nixpkgs-21_11.url = "github:NixOS/nixpkgs/release-21.11";
|
||||||
nixConfig.extra-substituters = ["https://cache.garnix.io"];
|
nixConfig.extra-substituters = ["https://cache.garnix.io"];
|
||||||
nixConfig.extra-trusted-public-keys = ["cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="];
|
nixConfig.extra-trusted-public-keys = ["cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="];
|
||||||
outputs = {
|
outputs = {
|
||||||
self,
|
self,
|
||||||
nixpkgs,
|
nixpkgs,
|
||||||
|
nixpkgs-21_11
|
||||||
}: let
|
}: let
|
||||||
systems = [
|
systems = [
|
||||||
"x86_64-linux"
|
"x86_64-linux"
|
||||||
|
|
@ -17,6 +19,7 @@
|
||||||
"armv7l-linux"
|
"armv7l-linux"
|
||||||
];
|
];
|
||||||
forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system);
|
forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system);
|
||||||
|
suffix-21_11 = attrs: nixpkgs.lib.mapAttrs' (name: value: nixpkgs.lib.nameValuePair (name + "-21_11") value) attrs;
|
||||||
in {
|
in {
|
||||||
overlay = final: prev: let
|
overlay = final: prev: let
|
||||||
localPkgs = import ./default.nix {pkgs = final;};
|
localPkgs = import ./default.nix {pkgs = final;};
|
||||||
|
|
@ -31,9 +34,15 @@
|
||||||
import ./default.nix {
|
import ./default.nix {
|
||||||
pkgs = import nixpkgs {inherit system;};
|
pkgs = import nixpkgs {inherit system;};
|
||||||
});
|
});
|
||||||
checks =
|
checks = nixpkgs.lib.genAttrs ["x86_64-linux" "aarch64-linux"]
|
||||||
nixpkgs.lib.genAttrs ["x86_64-linux" "aarch64-linux"]
|
(system: let
|
||||||
(system: self.packages.${system}.sops-install-secrets.tests);
|
tests = self.packages.${system}.sops-install-secrets.tests;
|
||||||
|
packages-21_11 = import ./default.nix {
|
||||||
|
pkgs = import nixpkgs-21_11 {inherit system;};
|
||||||
|
};
|
||||||
|
tests-21_11 = packages-21_11.sops-install-secrets.tests;
|
||||||
|
in tests // (suffix-21_11 tests-21_11) // (suffix-21_11 packages-21_11));
|
||||||
|
|
||||||
defaultPackage = forAllSystems (system: self.packages.${system}.sops-init-gpg-key);
|
defaultPackage = forAllSystems (system: self.packages.${system}.sops-init-gpg-key);
|
||||||
devShell = forAllSystems (
|
devShell = forAllSystems (
|
||||||
system:
|
system:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue