diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2015-09-30 16:30:39 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2015-09-30 16:30:39 +0200 |
commit | 11a1581979b9cc56f2c6c7bd0568c5f1502425fd (patch) | |
tree | bc7aa2b0b2c767080299c370116eb1dbce805433 /custom/prosody-auth.nix | |
parent | 98a00c76219180f5b39463a1132e5ae69fbb77a7 (diff) | |
download | nixos-11a1581979b9cc56f2c6c7bd0568c5f1502425fd.tar nixos-11a1581979b9cc56f2c6c7bd0568c5f1502425fd.tar.gz nixos-11a1581979b9cc56f2c6c7bd0568c5f1502425fd.tar.bz2 nixos-11a1581979b9cc56f2c6c7bd0568c5f1502425fd.tar.xz nixos-11a1581979b9cc56f2c6c7bd0568c5f1502425fd.zip |
first work on custom auth module
Diffstat (limited to 'custom/prosody-auth.nix')
-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 | } | ||