1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-10 23:00:39 +02:00

feat: enable oauth in forgejo

This commit is contained in:
oddlama 2024-03-12 17:09:55 +01:00
parent 0ec4a8ebe8
commit fba87840c2
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
5 changed files with 12 additions and 49 deletions

View file

@ -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 {};

View file

@ -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";
};
}