Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 mkDiscoursePlugin, 4 fetchFromGitHub, 5}: 6 7mkDiscoursePlugin { 8 name = "discourse-migratepassword"; 9 bundlerEnvArgs.gemdir = ./.; 10 src = fetchFromGitHub { 11 owner = "communiteq"; 12 repo = "discourse-migratepassword"; 13 rev = "a732ae244cd4125561fd225a67bae95ef5f738d0"; 14 sha256 = "sha256-EO+QnFTy3PgxZ92DZBm9sP8sFAny3ZpFw+faTX32j7Q="; 15 }; 16 meta = with lib; { 17 homepage = "https://github.com/communiteq/discourse-migratepassword"; 18 maintainers = with maintainers; [ ryantm ]; 19 license = licenses.gpl2Only; 20 description = "Support migrated password hashes"; 21 }; 22}