mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 19:16:11 +00:00
gsignondPlugins.mail: init at 2018-10-04
This commit is contained in:
parent
95210447ee
commit
518e7eb8c2
36
pkgs/development/libraries/gsignond/plugins/mail.nix
Normal file
36
pkgs/development/libraries/gsignond/plugins/mail.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ stdenv, fetchFromGitLab, pkgconfig, meson, ninja, vala, glib, gsignond, gobjectIntrospection }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gsignond-plugin-mail-${version}";
|
||||
version = "2018-10-04";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "accounts-sso";
|
||||
repo = "gsignond-plugin-mail";
|
||||
rev = "fbc6f34b246fec4ad2b37c696f8de7fdb9bde346";
|
||||
sha256 = "1wvwz7qiwvj8iixprip3qd8lplzfnwcjfrbg2vd8xfsvid2zbviw";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
gobjectIntrospection
|
||||
meson
|
||||
ninja
|
||||
pkgconfig
|
||||
vala
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
glib
|
||||
gsignond
|
||||
];
|
||||
|
||||
PKG_CONFIG_GSIGNOND_GPLUGINSDIR = "${placeholder "out"}/lib/gsignond/gplugins";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Plugin for the Accounts-SSO gSignOn daemon that handles the E-Mail credentials.";
|
||||
homepage = https://gitlab.com/accounts-sso/gsignond-plugin-mail;
|
||||
license = licenses.lgpl21Plus;
|
||||
maintainers = with maintainers; [ worldofpeace ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -12774,6 +12774,7 @@ with pkgs;
|
||||
sasl = callPackage ../development/libraries/gsignond/plugins/sasl.nix { };
|
||||
oauth = callPackage ../development/libraries/gsignond/plugins/oauth.nix { };
|
||||
lastfm = callPackage ../development/libraries/gsignond/plugins/lastfm.nix { };
|
||||
mail = callPackages ../development/libraries/gsignond/plugins/mail.nix { };
|
||||
};
|
||||
|
||||
### DEVELOPMENT / LIBRARIES / AGDA
|
||||
|
Loading…
Reference in New Issue
Block a user