nixpkgs/pkgs/development/libraries/libaccounts-glib/default.nix

32 lines
809 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitLab, autoconf, automake, glib
, gtk_doc, libtool, libxml2, libxslt, pkgconfig, sqlite }:
2015-05-06 12:28:42 +00:00
2017-12-03 02:15:46 +00:00
let version = "1.23"; in
2015-05-06 12:28:42 +00:00
stdenv.mkDerivation rec {
name = "libaccounts-glib-${version}";
src = fetchFromGitLab {
2017-12-03 02:15:46 +00:00
sha256 = "11cvl3ch0y93756k90mw1swqv0ylr8qgalmvcn5yari8z4sg6cgg";
rev = "VERSION_${version}";
repo = "libaccounts-glib";
owner = "accounts-sso";
2015-05-06 12:28:42 +00:00
};
buildInputs = [ glib libxml2 libxslt sqlite ];
nativeBuildInputs = [ autoconf automake gtk_doc libtool pkgconfig ];
2015-05-06 12:28:42 +00:00
postPatch = ''
NOCONFIGURE=1 ./autogen.sh
'';
2015-05-06 12:28:42 +00:00
configurePhase = ''
HAVE_GCOV_FALSE="#" ./configure $configureFlags --prefix=$out
'';
NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations"; # since glib-2.46
meta = {
platforms = stdenv.lib.platforms.linux;
};
2015-05-06 12:28:42 +00:00
}