9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
39 lines
1008 B
Nix
39 lines
1008 B
Nix
{ stdenv, fetchFromGitLab, pkg-config, meson, ninja, vala, glib, gsignond, json-glib, libsoup, gobject-introspection }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "gsignond-plugin-lastfm";
|
|
version = "2018-05-07";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "accounts-sso";
|
|
repo = "gsignond-plugin-lastfm";
|
|
rev = "0a7a5f8511282e45cfe35987b81f27f158f0648c";
|
|
sha256 = "0ay6ir9zg9l0264x5xwd7c6j8qmwlhrifkkkjd1yrjh9sqxyfj7f";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gobject-introspection
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
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 that handles Last.FM credentials";
|
|
homepage = "https://gitlab.com/accounts-sso/gsignond-plugin-lastfm";
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = with maintainers; [ worldofpeace ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|