libsignon-glib: init at 2.0
This commit is contained in:
parent
4f4e20bc79
commit
923e2af1d4
57
pkgs/development/libraries/libsignon-glib/default.nix
Normal file
57
pkgs/development/libraries/libsignon-glib/default.nix
Normal file
@ -0,0 +1,57 @@
|
||||
{ stdenv, fetchgit, pkgconfig, meson, ninja, vala, python3, gtk-doc, docbook_xsl, docbook_xml_dtd_43, docbook_xml_dtd_412, glib, check, gobjectIntrospection }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libsignon-glib";
|
||||
version = "3639a2e90447e4640a03a44972560afe8f61aa48";
|
||||
|
||||
name = "${pname}-2018-10-24";
|
||||
|
||||
outputs = [ "out" "dev" "devdoc" "py" ];
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://gitlab.com/accounts-sso/${pname}";
|
||||
rev = version;
|
||||
fetchSubmodules = true;
|
||||
sha256 = "1cq19zbsx4c57dc5gp3shp8lzcr1hw2ynylpn1nkvfyyrx80m60w";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
check
|
||||
docbook_xml_dtd_412
|
||||
docbook_xml_dtd_43
|
||||
docbook_xsl
|
||||
gobjectIntrospection
|
||||
gtk-doc
|
||||
meson
|
||||
ninja
|
||||
pkgconfig
|
||||
python3
|
||||
vala
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
glib
|
||||
python3.pkgs.pygobject3
|
||||
];
|
||||
|
||||
mesonFlags = [
|
||||
"-Dintrospection=true"
|
||||
"-Dpy-overrides-dir=${placeholder "py"}/${python3.sitePackages}/gi/overrides"
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
chmod +x build-aux/gen-error-map.py
|
||||
patchShebangs build-aux/gen-error-map.py
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = ''
|
||||
A library for managing single signon credentials which can be used from GLib applications
|
||||
'';
|
||||
homepage = https://gitlab.com/accounts-sso/libsignon-glib;
|
||||
license = licenses.lgpl21;
|
||||
maintainers = with maintainers; [ worldofpeace ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -10534,6 +10534,8 @@ with pkgs;
|
||||
|
||||
libsignal-protocol-c = callPackage ../development/libraries/libsignal-protocol-c { };
|
||||
|
||||
libsignon-glib = callPackage ../development/libraries/libsignon-glib { };
|
||||
|
||||
libsoundio = callPackage ../development/libraries/libsoundio {
|
||||
inherit (darwin.apple_sdk.frameworks) AudioUnit;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user