nixpkgs/pkgs/development/libraries/libsecret/default.nix
Robert Helgesson 6c9e41333d
libsecret: add dev output
This reduces the closure size of the secret-tool binary from 178 MiB to
38 MiB.
2017-01-11 08:32:39 +01:00

30 lines
964 B
Nix

{ stdenv, fetchurl, glib, pkgconfig, intltool, libxslt, docbook_xsl, gtk_doc
, libgcrypt, gobjectIntrospection, vala_0_32 }:
let
version = "0.18.5";
in
stdenv.mkDerivation rec {
name = "libsecret-${version}";
src = fetchurl {
url = "mirror://gnome/sources/libsecret/0.18/${name}.tar.xz";
sha256 = "1cychxc3ff8fp857iikw0n2s13s2mhw2dn1mr632f7w3sn6vvrww";
};
outputs = [ "out" "dev" ];
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
propagatedBuildInputs = [ glib ];
nativeBuildInputs = [ pkgconfig intltool libxslt docbook_xsl ];
buildInputs = [ libgcrypt gobjectIntrospection vala_0_32 ];
# optional: build docs with gtk-doc? (probably needs a flag as well)
meta = {
description = "A library for storing and retrieving passwords and other secrets";
homepage = https://wiki.gnome.org/Projects/Libsecret;
license = stdenv.lib.licenses.lgpl21Plus;
inherit (glib.meta) platforms maintainers;
};
}