Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
23 lines
598 B
Nix
23 lines
598 B
Nix
{
|
|
lib,
|
|
mkDiscoursePlugin,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
mkDiscoursePlugin {
|
|
name = "discourse-migratepassword";
|
|
bundlerEnvArgs.gemdir = ./.;
|
|
src = fetchFromGitHub {
|
|
owner = "communiteq";
|
|
repo = "discourse-migratepassword";
|
|
rev = "a732ae244cd4125561fd225a67bae95ef5f738d0";
|
|
sha256 = "sha256-EO+QnFTy3PgxZ92DZBm9sP8sFAny3ZpFw+faTX32j7Q=";
|
|
};
|
|
meta = with lib; {
|
|
homepage = "https://github.com/communiteq/discourse-migratepassword";
|
|
maintainers = with maintainers; [ ryantm ];
|
|
license = licenses.gpl2Only;
|
|
description = "Support migrated password hashes";
|
|
};
|
|
}
|