diff options
Diffstat (limited to 'custom')
-rw-r--r-- | custom/prosody-auth.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/custom/prosody-auth.nix b/custom/prosody-auth.nix new file mode 100644 index 00000000..21629e4a --- /dev/null +++ b/custom/prosody-auth.nix | |||
@@ -0,0 +1,13 @@ | |||
1 | { stdenv | ||
2 | , fetchgit | ||
3 | }: | ||
4 | |||
5 | let | ||
6 | in stdenv.mkDerivation { | ||
7 | name = "prosody-auth"; | ||
8 | src = fetchgit { | ||
9 | url = "git://git.yggdrasil.li/prosody_auth"; | ||
10 | rev = "eb68d998a10b436194cc81f9a64620606b1bd216"; | ||
11 | sha256 = "e13bd6ba909ed479e85e32a11a16a1b953c643b85c0d54ec0d94be674ed31cea"; | ||
12 | }; | ||
13 | } | ||