forked from mirrors_public/oddlama_nix-config
feat: enable oauth in forgejo
This commit is contained in:
parent
0ec4a8ebe8
commit
fba87840c2
5 changed files with 12 additions and 49 deletions
|
@ -22,7 +22,6 @@
|
|||
doCheck = false;
|
||||
});
|
||||
kanidm-provision = prev.callPackage ./kanidm-provision.nix {};
|
||||
kanidm-secret-manipulator = prev.callPackage ./kanidm-secret-manipulator.nix {};
|
||||
segoe-ui-ttf = prev.callPackage ./segoe-ui-ttf.nix {};
|
||||
zsh-histdb-skim = prev.callPackage ./zsh-skim-histdb.nix {};
|
||||
awakened-poe-trade = prev.callPackage ./awakened-poe-trade.nix {};
|
||||
|
|
|
@ -1,30 +0,0 @@
|
|||
{
|
||||
lib,
|
||||
rustPlatform,
|
||||
fetchFromGitHub,
|
||||
pkg-config,
|
||||
sqlite,
|
||||
}:
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "kanidm-secret-manipulator";
|
||||
version = "1.0.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "oddlama";
|
||||
repo = "kanidm-secret-manipulator";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-Vv5edTBz5MWHHCWYN5z4KnqPpLZIDTzTcWXnrLBqdgM=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-x/oTiaI4RHdt8pndPhsYQn8PclM0q6RDqTaQ0ODCrh4=";
|
||||
|
||||
nativeBuildInputs = [pkg-config];
|
||||
buildInputs = [sqlite];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A helper utility that modifies the kanidm database to allow provisioning declarative secrets with NixOS";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [oddlama];
|
||||
mainProgram = "kanidm-secret-manipulator";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue