gsignondPlugins.lastfm: init at 2018-05-07
This commit is contained in:
parent
0bcd20e3d8
commit
95210447ee
2 changed files with 39 additions and 0 deletions
38
pkgs/development/libraries/gsignond/plugins/lastfm.nix
Normal file
38
pkgs/development/libraries/gsignond/plugins/lastfm.nix
Normal file
|
@ -0,0 +1,38 @@
|
|||
{ stdenv, fetchFromGitLab, pkgconfig, meson, ninja, vala, glib, gsignond, json-glib, libsoup, gobjectIntrospection }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gsignond-plugin-lastfm-${version}";
|
||||
version = "2018-05-07";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "accounts-sso";
|
||||
repo = "gsignond-plugin-lastfm";
|
||||
rev = "0a7a5f8511282e45cfe35987b81f27f158f0648c";
|
||||
sha256 = "0ay6ir9zg9l0264x5xwd7c6j8qmwlhrifkkkjd1yrjh9sqxyfj7f";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
gobjectIntrospection
|
||||
meson
|
||||
ninja
|
||||
pkgconfig
|
||||
vala
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
glib
|
||||
gsignond
|
||||
json-glib
|
||||
libsoup
|
||||
];
|
||||
|
||||
PKG_CONFIG_GSIGNOND_GPLUGINSDIR = "${placeholder "out"}/lib/gsignond/gplugins";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Plugin for the Accounts-SSO gSignOn daemon handles the Last.FM credentials.";
|
||||
homepage = https://gitlab.com/accounts-sso/gsignond-plugin-lastfm;
|
||||
license = licenses.lgpl21Plus;
|
||||
maintainers = with maintainers; [ worldofpeace ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -12773,6 +12773,7 @@ with pkgs;
|
|||
gsignondPlugins = {
|
||||
sasl = callPackage ../development/libraries/gsignond/plugins/sasl.nix { };
|
||||
oauth = callPackage ../development/libraries/gsignond/plugins/oauth.nix { };
|
||||
lastfm = callPackage ../development/libraries/gsignond/plugins/lastfm.nix { };
|
||||
};
|
||||
|
||||
### DEVELOPMENT / LIBRARIES / AGDA
|
||||
|
|
Loading…
Reference in a new issue