mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
a51a99c690
camelCase package name was a huge inconsistency in GNOME package set.
53 lines
1.2 KiB
Nix
53 lines
1.2 KiB
Nix
{ stdenv, fetchFromGitLab, meson, ninja, glib, check, python3, vala, gtk-doc, glibcLocales
|
|
, libxml2, libxslt, pkgconfig, sqlite, docbook_xsl, docbook_xml_dtd_43, gobject-introspection }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libaccounts-glib-${version}";
|
|
version = "1.24";
|
|
|
|
outputs = [ "out" "dev" "devdoc" "py" ];
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "accounts-sso";
|
|
repo = "libaccounts-glib";
|
|
rev = version;
|
|
sha256 = "0y8smg1rd279lrr9ad8b499i8pbkajmwd4xn41rdh9h93hs9apn7";
|
|
};
|
|
|
|
# See: https://gitlab.com/accounts-sso/libaccounts-glib/merge_requests/22
|
|
patches = [ ./py-override.patch ];
|
|
|
|
nativeBuildInputs = [
|
|
check
|
|
docbook_xml_dtd_43
|
|
docbook_xsl
|
|
glibcLocales
|
|
gobject-introspection
|
|
gtk-doc
|
|
meson
|
|
ninja
|
|
pkgconfig
|
|
vala
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
libxml2
|
|
libxslt
|
|
python3.pkgs.pygobject3
|
|
sqlite
|
|
];
|
|
|
|
LC_ALL = "en_US.UTF-8";
|
|
|
|
mesonFlags = [
|
|
"-Dpy-overrides-dir=${placeholder ''py''}/${python3.sitePackages}/gi/overrides"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Library for managing accounts which can be used from GLib applications";
|
|
platforms = platforms.linux;
|
|
license = licenses.lgpl21;
|
|
};
|
|
}
|