mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
matrix-synapse-plugins.matrix-synapse-pam: init at 0.1.2
This commit is contained in:
parent
9f0da72abc
commit
b5e9f87f82
|
@ -2,4 +2,5 @@
|
|||
|
||||
{
|
||||
matrix-synapse-ldap3 = callPackage ./ldap3.nix { };
|
||||
matrix-synapse-pam = callPackage ./pam.nix { };
|
||||
}
|
||||
|
|
15
pkgs/servers/matrix-synapse/plugins/pam.nix
Normal file
15
pkgs/servers/matrix-synapse/plugins/pam.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ buildPythonPackage, fetchFromGitHub, twisted, python-pam }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "matrix-synapse-pam";
|
||||
version = "0.1.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "14mRh4X0r";
|
||||
repo = "matrix-synapse-pam";
|
||||
rev = "v${version}";
|
||||
sha256 = "10byma9hxz3g4sirw5sa4pvljn83h9vs7zc15chhpl2n14bdx45l";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ twisted python-pam ];
|
||||
}
|
Loading…
Reference in a new issue