bekkalokk: package mediawiki extensions outside of module

This commit is contained in:
2024-03-28 14:24:58 +01:00
parent d39047b8cb
commit 9495682f57
8 changed files with 105 additions and 16 deletions

View File

@@ -0,0 +1,7 @@
{ pkgs, lib }:
lib.makeScope pkgs.newScope (self: {
DeleteBatch = self.callPackage ./delete-batch { };
PluggableAuth = self.callPackage ./pluggable-auth { };
SimpleSAMLphp = self.callPackage ./simple-saml-php { };
UserMerge = self.callPackage ./user-merge { };
})