mirror of https://github.com/dexidp/dex.git
9 changed files with 187 additions and 319 deletions
@ -1,6 +1,5 @@
|
||||
if ! has nix_direnv_version || ! nix_direnv_version 3.0.6; then |
||||
source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/3.0.6/direnvrc" "sha256-RYcUJaRMf8oF5LznDrlCXbkOQrywm0HDv1VjYGaJGdM=" |
||||
fi |
||||
use flake . --impure |
||||
export DIRENV_WARN_TIMEOUT=20s |
||||
|
||||
dotenv_if_exists |
||||
eval "$(devenv direnvrc)" |
||||
|
||||
use devenv |
||||
|
||||
@ -1,8 +1,12 @@
|
||||
/.devenv/ |
||||
/.direnv/ |
||||
/.idea/ |
||||
/bin/ |
||||
/config.yaml |
||||
/docker-compose.override.yaml |
||||
/var/ |
||||
/vendor/ |
||||
|
||||
# Devenv |
||||
/.devenv* |
||||
/.direnv/ |
||||
devenv.local.nix |
||||
.pre-commit-config.yaml |
||||
|
||||
@ -0,0 +1,136 @@
|
||||
{ |
||||
"nodes": { |
||||
"dagger": { |
||||
"inputs": { |
||||
"nixpkgs": "nixpkgs" |
||||
}, |
||||
"locked": { |
||||
"lastModified": 1758429333, |
||||
"owner": "dagger", |
||||
"repo": "nix", |
||||
"rev": "7ae43c1f7b9a78ceb3e6662e712b412b50e6f19d", |
||||
"type": "github" |
||||
}, |
||||
"original": { |
||||
"owner": "dagger", |
||||
"repo": "nix", |
||||
"type": "github" |
||||
} |
||||
}, |
||||
"devenv": { |
||||
"locked": { |
||||
"dir": "src/modules", |
||||
"lastModified": 1758514534, |
||||
"owner": "cachix", |
||||
"repo": "devenv", |
||||
"rev": "b162818c2748c34eca873482cf677820a8cddb61", |
||||
"type": "github" |
||||
}, |
||||
"original": { |
||||
"dir": "src/modules", |
||||
"owner": "cachix", |
||||
"repo": "devenv", |
||||
"type": "github" |
||||
} |
||||
}, |
||||
"flake-compat": { |
||||
"flake": false, |
||||
"locked": { |
||||
"lastModified": 1747046372, |
||||
"owner": "edolstra", |
||||
"repo": "flake-compat", |
||||
"rev": "9100a0f413b0c601e0533d1d94ffd501ce2e7885", |
||||
"type": "github" |
||||
}, |
||||
"original": { |
||||
"owner": "edolstra", |
||||
"repo": "flake-compat", |
||||
"type": "github" |
||||
} |
||||
}, |
||||
"git-hooks": { |
||||
"inputs": { |
||||
"flake-compat": "flake-compat", |
||||
"gitignore": "gitignore", |
||||
"nixpkgs": [ |
||||
"nixpkgs" |
||||
] |
||||
}, |
||||
"locked": { |
||||
"lastModified": 1758108966, |
||||
"owner": "cachix", |
||||
"repo": "git-hooks.nix", |
||||
"rev": "54df955a695a84cd47d4a43e08e1feaf90b1fd9b", |
||||
"type": "github" |
||||
}, |
||||
"original": { |
||||
"owner": "cachix", |
||||
"repo": "git-hooks.nix", |
||||
"type": "github" |
||||
} |
||||
}, |
||||
"gitignore": { |
||||
"inputs": { |
||||
"nixpkgs": [ |
||||
"git-hooks", |
||||
"nixpkgs" |
||||
] |
||||
}, |
||||
"locked": { |
||||
"lastModified": 1709087332, |
||||
"owner": "hercules-ci", |
||||
"repo": "gitignore.nix", |
||||
"rev": "637db329424fd7e46cf4185293b9cc8c88c95394", |
||||
"type": "github" |
||||
}, |
||||
"original": { |
||||
"owner": "hercules-ci", |
||||
"repo": "gitignore.nix", |
||||
"type": "github" |
||||
} |
||||
}, |
||||
"nixpkgs": { |
||||
"locked": { |
||||
"lastModified": 1758446476, |
||||
"owner": "NixOS", |
||||
"repo": "nixpkgs", |
||||
"rev": "a1f79a1770d05af18111fbbe2a3ab2c42c0f6cd0", |
||||
"type": "github" |
||||
}, |
||||
"original": { |
||||
"owner": "NixOS", |
||||
"ref": "nixpkgs-unstable", |
||||
"repo": "nixpkgs", |
||||
"type": "github" |
||||
} |
||||
}, |
||||
"nixpkgs_2": { |
||||
"locked": { |
||||
"lastModified": 1755783167, |
||||
"owner": "cachix", |
||||
"repo": "devenv-nixpkgs", |
||||
"rev": "4a880fb247d24fbca57269af672e8f78935b0328", |
||||
"type": "github" |
||||
}, |
||||
"original": { |
||||
"owner": "cachix", |
||||
"ref": "rolling", |
||||
"repo": "devenv-nixpkgs", |
||||
"type": "github" |
||||
} |
||||
}, |
||||
"root": { |
||||
"inputs": { |
||||
"dagger": "dagger", |
||||
"devenv": "devenv", |
||||
"git-hooks": "git-hooks", |
||||
"nixpkgs": "nixpkgs_2", |
||||
"pre-commit-hooks": [ |
||||
"git-hooks" |
||||
] |
||||
} |
||||
} |
||||
}, |
||||
"root": "root", |
||||
"version": 7 |
||||
} |
||||
@ -0,0 +1,28 @@
|
||||
{ pkgs, inputs, ... }: |
||||
|
||||
{ |
||||
overlays = [ |
||||
(final: prev: { |
||||
dagger = inputs.dagger.packages.${final.system}.dagger; |
||||
}) |
||||
]; |
||||
|
||||
languages = { |
||||
go = { |
||||
enable = true; |
||||
package = pkgs.go_1_25; |
||||
}; |
||||
}; |
||||
|
||||
packages = with pkgs; [ |
||||
just |
||||
gnumake |
||||
golangci-lint |
||||
gotestsum |
||||
protobuf |
||||
protoc-gen-go |
||||
protoc-gen-go-grpc |
||||
kind |
||||
dagger |
||||
]; |
||||
} |
||||
@ -0,0 +1,6 @@
|
||||
# yaml-language-server: $schema=https://devenv.sh/devenv.schema.json |
||||
inputs: |
||||
nixpkgs: |
||||
url: github:cachix/devenv-nixpkgs/rolling |
||||
dagger: |
||||
url: github:dagger/nix |
||||
@ -1,255 +0,0 @@
|
||||
{ |
||||
"nodes": { |
||||
"cachix": { |
||||
"inputs": { |
||||
"devenv": [ |
||||
"devenv" |
||||
], |
||||
"flake-compat": [ |
||||
"devenv" |
||||
], |
||||
"git-hooks": [ |
||||
"devenv", |
||||
"git-hooks" |
||||
], |
||||
"nixpkgs": [ |
||||
"devenv", |
||||
"nixpkgs" |
||||
] |
||||
}, |
||||
"locked": { |
||||
"lastModified": 1748883665, |
||||
"narHash": "sha256-R0W7uAg+BLoHjMRMQ8+oiSbTq8nkGz5RDpQ+ZfxxP3A=", |
||||
"owner": "cachix", |
||||
"repo": "cachix", |
||||
"rev": "f707778d902af4d62d8dd92c269f8e70de09acbe", |
||||
"type": "github" |
||||
}, |
||||
"original": { |
||||
"owner": "cachix", |
||||
"ref": "latest", |
||||
"repo": "cachix", |
||||
"type": "github" |
||||
} |
||||
}, |
||||
"devenv": { |
||||
"inputs": { |
||||
"cachix": "cachix", |
||||
"flake-compat": "flake-compat", |
||||
"git-hooks": "git-hooks", |
||||
"nix": "nix", |
||||
"nixpkgs": "nixpkgs" |
||||
}, |
||||
"locked": { |
||||
"lastModified": 1755355634, |
||||
"narHash": "sha256-3UNeb5pBLHtTyYIkzF/3+2YlAKf6OuWQYUQO+qmInA4=", |
||||
"owner": "cachix", |
||||
"repo": "devenv", |
||||
"rev": "85e78cbe26467a2c23c9d34869235740132d749f", |
||||
"type": "github" |
||||
}, |
||||
"original": { |
||||
"owner": "cachix", |
||||
"repo": "devenv", |
||||
"type": "github" |
||||
} |
||||
}, |
||||
"flake-compat": { |
||||
"flake": false, |
||||
"locked": { |
||||
"lastModified": 1747046372, |
||||
"narHash": "sha256-CIVLLkVgvHYbgI2UpXvIIBJ12HWgX+fjA8Xf8PUmqCY=", |
||||
"owner": "edolstra", |
||||
"repo": "flake-compat", |
||||
"rev": "9100a0f413b0c601e0533d1d94ffd501ce2e7885", |
||||
"type": "github" |
||||
}, |
||||
"original": { |
||||
"owner": "edolstra", |
||||
"repo": "flake-compat", |
||||
"type": "github" |
||||
} |
||||
}, |
||||
"flake-parts": { |
||||
"inputs": { |
||||
"nixpkgs-lib": [ |
||||
"devenv", |
||||
"nix", |
||||
"nixpkgs" |
||||
] |
||||
}, |
||||
"locked": { |
||||
"lastModified": 1733312601, |
||||
"narHash": "sha256-4pDvzqnegAfRkPwO3wmwBhVi/Sye1mzps0zHWYnP88c=", |
||||
"owner": "hercules-ci", |
||||
"repo": "flake-parts", |
||||
"rev": "205b12d8b7cd4802fbcb8e8ef6a0f1408781a4f9", |
||||
"type": "github" |
||||
}, |
||||
"original": { |
||||
"owner": "hercules-ci", |
||||
"repo": "flake-parts", |
||||
"type": "github" |
||||
} |
||||
}, |
||||
"flake-parts_2": { |
||||
"inputs": { |
||||
"nixpkgs-lib": "nixpkgs-lib" |
||||
}, |
||||
"locked": { |
||||
"lastModified": 1754487366, |
||||
"narHash": "sha256-pHYj8gUBapuUzKV/kN/tR3Zvqc7o6gdFB9XKXIp1SQ8=", |
||||
"owner": "hercules-ci", |
||||
"repo": "flake-parts", |
||||
"rev": "af66ad14b28a127c5c0f3bbb298218fc63528a18", |
||||
"type": "github" |
||||
}, |
||||
"original": { |
||||
"owner": "hercules-ci", |
||||
"repo": "flake-parts", |
||||
"type": "github" |
||||
} |
||||
}, |
||||
"git-hooks": { |
||||
"inputs": { |
||||
"flake-compat": [ |
||||
"devenv", |
||||
"flake-compat" |
||||
], |
||||
"gitignore": "gitignore", |
||||
"nixpkgs": [ |
||||
"devenv", |
||||
"nixpkgs" |
||||
] |
||||
}, |
||||
"locked": { |
||||
"lastModified": 1750779888, |
||||
"narHash": "sha256-wibppH3g/E2lxU43ZQHC5yA/7kIKLGxVEnsnVK1BtRg=", |
||||
"owner": "cachix", |
||||
"repo": "git-hooks.nix", |
||||
"rev": "16ec914f6fb6f599ce988427d9d94efddf25fe6d", |
||||
"type": "github" |
||||
}, |
||||
"original": { |
||||
"owner": "cachix", |
||||
"repo": "git-hooks.nix", |
||||
"type": "github" |
||||
} |
||||
}, |
||||
"gitignore": { |
||||
"inputs": { |
||||
"nixpkgs": [ |
||||
"devenv", |
||||
"git-hooks", |
||||
"nixpkgs" |
||||
] |
||||
}, |
||||
"locked": { |
||||
"lastModified": 1709087332, |
||||
"narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=", |
||||
"owner": "hercules-ci", |
||||
"repo": "gitignore.nix", |
||||
"rev": "637db329424fd7e46cf4185293b9cc8c88c95394", |
||||
"type": "github" |
||||
}, |
||||
"original": { |
||||
"owner": "hercules-ci", |
||||
"repo": "gitignore.nix", |
||||
"type": "github" |
||||
} |
||||
}, |
||||
"nix": { |
||||
"inputs": { |
||||
"flake-compat": [ |
||||
"devenv", |
||||
"flake-compat" |
||||
], |
||||
"flake-parts": "flake-parts", |
||||
"git-hooks-nix": [ |
||||
"devenv", |
||||
"git-hooks" |
||||
], |
||||
"nixpkgs": [ |
||||
"devenv", |
||||
"nixpkgs" |
||||
], |
||||
"nixpkgs-23-11": [ |
||||
"devenv" |
||||
], |
||||
"nixpkgs-regression": [ |
||||
"devenv" |
||||
] |
||||
}, |
||||
"locked": { |
||||
"lastModified": 1755029779, |
||||
"narHash": "sha256-3+GHIYGg4U9XKUN4rg473frIVNn8YD06bjwxKS1IPrU=", |
||||
"owner": "cachix", |
||||
"repo": "nix", |
||||
"rev": "b0972b0eee6726081d10b1199f54de6d2917f861", |
||||
"type": "github" |
||||
}, |
||||
"original": { |
||||
"owner": "cachix", |
||||
"ref": "devenv-2.30", |
||||
"repo": "nix", |
||||
"type": "github" |
||||
} |
||||
}, |
||||
"nixpkgs": { |
||||
"locked": { |
||||
"lastModified": 1750441195, |
||||
"narHash": "sha256-yke+pm+MdgRb6c0dPt8MgDhv7fcBbdjmv1ZceNTyzKg=", |
||||
"owner": "cachix", |
||||
"repo": "devenv-nixpkgs", |
||||
"rev": "0ceffe312871b443929ff3006960d29b120dc627", |
||||
"type": "github" |
||||
}, |
||||
"original": { |
||||
"owner": "cachix", |
||||
"ref": "rolling", |
||||
"repo": "devenv-nixpkgs", |
||||
"type": "github" |
||||
} |
||||
}, |
||||
"nixpkgs-lib": { |
||||
"locked": { |
||||
"lastModified": 1753579242, |
||||
"narHash": "sha256-zvaMGVn14/Zz8hnp4VWT9xVnhc8vuL3TStRqwk22biA=", |
||||
"owner": "nix-community", |
||||
"repo": "nixpkgs.lib", |
||||
"rev": "0f36c44e01a6129be94e3ade315a5883f0228a6e", |
||||
"type": "github" |
||||
}, |
||||
"original": { |
||||
"owner": "nix-community", |
||||
"repo": "nixpkgs.lib", |
||||
"type": "github" |
||||
} |
||||
}, |
||||
"nixpkgs_2": { |
||||
"locked": { |
||||
"lastModified": 1755268003, |
||||
"narHash": "sha256-nNaeJjo861wFR0tjHDyCnHs1rbRtrMgxAKMoig9Sj/w=", |
||||
"owner": "NixOS", |
||||
"repo": "nixpkgs", |
||||
"rev": "32f313e49e42f715491e1ea7b306a87c16fe0388", |
||||
"type": "github" |
||||
}, |
||||
"original": { |
||||
"owner": "NixOS", |
||||
"ref": "nixpkgs-unstable", |
||||
"repo": "nixpkgs", |
||||
"type": "github" |
||||
} |
||||
}, |
||||
"root": { |
||||
"inputs": { |
||||
"devenv": "devenv", |
||||
"flake-parts": "flake-parts_2", |
||||
"nixpkgs": "nixpkgs_2" |
||||
} |
||||
} |
||||
}, |
||||
"root": "root", |
||||
"version": 7 |
||||
} |
||||
@ -1,56 +0,0 @@
|
||||
{ |
||||
inputs = { |
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; |
||||
flake-parts.url = "github:hercules-ci/flake-parts"; |
||||
devenv.url = "github:cachix/devenv"; |
||||
}; |
||||
|
||||
outputs = |
||||
inputs@{ flake-parts, ... }: |
||||
flake-parts.lib.mkFlake { inherit inputs; } { |
||||
imports = [ |
||||
inputs.devenv.flakeModule |
||||
]; |
||||
|
||||
systems = [ |
||||
"x86_64-linux" |
||||
"x86_64-darwin" |
||||
"aarch64-darwin" |
||||
"aarch64-linux" |
||||
]; |
||||
|
||||
perSystem = |
||||
{ pkgs, ... }: |
||||
rec { |
||||
devenv.shells = { |
||||
default = { |
||||
languages = { |
||||
go = { |
||||
enable = true; |
||||
package = pkgs.go_1_25; |
||||
}; |
||||
}; |
||||
|
||||
packages = with pkgs; [ |
||||
gnumake |
||||
|
||||
# golangci-lint |
||||
(golangci-lint.override (o: { |
||||
buildGoModule = pkgs.buildGo125Module; |
||||
})) |
||||
gotestsum |
||||
protobuf |
||||
protoc-gen-go |
||||
protoc-gen-go-grpc |
||||
kind |
||||
]; |
||||
|
||||
# https://github.com/cachix/devenv/issues/528#issuecomment-1556108767 |
||||
containers = pkgs.lib.mkForce { }; |
||||
}; |
||||
|
||||
ci = devenv.shells.default; |
||||
}; |
||||
}; |
||||
}; |
||||
} |
||||
Loading…
Reference in new issue