mirror of
https://github.com/RGBCube/agenix
synced 2025-07-29 01:37:44 +00:00
Merge pull request #80 from felixscheinost/add-aarch64-darwin-package
Add package for aarch64-darwin
This commit is contained in:
commit
25b5bcfce9
3 changed files with 20 additions and 10 deletions
|
@ -1,6 +1,10 @@
|
|||
{
|
||||
description = "Secret management with age";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-21.11";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs }:
|
||||
let
|
||||
agenix = system: nixpkgs.legacyPackages.${system}.callPackage ./pkgs/agenix.nix {};
|
||||
|
@ -20,6 +24,9 @@
|
|||
packages."x86_64-darwin".agenix = agenix "x86_64-darwin";
|
||||
defaultPackage."x86_64-darwin" = self.packages."x86_64-darwin".agenix;
|
||||
|
||||
packages."aarch64-darwin".agenix = agenix "aarch64-darwin";
|
||||
defaultPackage."aarch64-darwin" = self.packages."aarch64-darwin".agenix;
|
||||
|
||||
packages."x86_64-linux".agenix = agenix "x86_64-linux";
|
||||
defaultPackage."x86_64-linux" = self.packages."x86_64-linux".agenix;
|
||||
checks."x86_64-linux".integration = import ./test/integration.nix {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue