1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

libsecret: add vala dependency

This commit is contained in:
Ram Kromberg 2016-08-20 17:11:44 +03:00
parent ba0f9cfa49
commit dd0546bd9d

View file

@ -1,5 +1,5 @@
{ stdenv, fetchurl, glib, pkgconfig, intltool, libxslt, docbook_xsl, gtk_doc
, libgcrypt, gobjectIntrospection }:
, libgcrypt, gobjectIntrospection, vala_0_32 }:
let
version = "0.18.5";
in
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ glib ];
nativeBuildInputs = [ pkgconfig intltool libxslt docbook_xsl ];
buildInputs = [ libgcrypt gobjectIntrospection ];
buildInputs = [ libgcrypt gobjectIntrospection vala_0_32 ];
# optional: build docs with gtk-doc? (probably needs a flag as well)
meta = {