nixpkgs/pkgs/development/libraries/libsecret/default.nix

22 lines
623 B
Nix
Raw Normal View History

2015-04-09 23:20:18 +03:00
{ stdenv, fetchurl, glib, dbus_libs, unzip, docbook_xsl
, intltool, gtk_doc, gobjectIntrospection, pkgconfig, libxslt, libgcrypt
}:
stdenv.mkDerivation rec {
2015-04-09 23:20:18 +03:00
version = "0.18";
name = "libsecret-${version}";
src = fetchurl {
2015-04-09 23:20:18 +03:00
url = "mirror://gnome/sources/libsecret/${version}/${name}.tar.xz";
sha256 = "1qq29c01xxjyx5sl6y5h22w8r0ff4c73bph3gfx3h7mx5mvalwqc";
};
propagatedBuildInputs = [ glib dbus_libs ];
nativeBuildInputs = [ unzip ];
2015-04-09 23:20:18 +03:00
buildInputs = [ gtk_doc intltool gobjectIntrospection pkgconfig libxslt libgcrypt docbook_xsl ];
meta = {
inherit (glib.meta) platforms maintainers;
};
}