76999cc40e
This makes the command ‘nix-env -qa -f. --arg config '{skipAliases = true;}'’ work in Nixpkgs. Misc... - qtikz: use libsForQt5.callPackage This ensures we get the right poppler. - rewrites: docbook5_xsl -> docbook_xsl_ns docbook_xml_xslt -> docbook_xsl diffpdf: fixup
21 lines
501 B
Nix
21 lines
501 B
Nix
{ stdenv, fetchurl, glib, dbus, libgcrypt, pkgconfig,
|
|
intltool }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libgnome-keyring-2.32.0";
|
|
|
|
src = fetchurl {
|
|
url = mirror://gnome/sources/libgnome-keyring/2.32/libgnome-keyring-2.32.0.tar.bz2;
|
|
sha256 = "030gka96kzqg1r19b4xrmac89hf1xj1kr5p461yvbzfxh46qqf2n";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
propagatedBuildInputs = [ glib dbus libgcrypt ];
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
|
|
|
meta = {
|
|
inherit (glib.meta) platforms maintainers;
|
|
};
|
|
}
|