ab3eeabfed
Likewise for propagatedBuildNativeInputs, etc. "buildNativeInputs" sounds like an imperative rather than a noun phrase.
19 lines
481 B
Nix
19 lines
481 B
Nix
{ stdenv, fetchurl, glib, dbus_libs, 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";
|
|
};
|
|
|
|
propagatedBuildInputs = [ glib dbus_libs libgcrypt ];
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
|
|
|
meta = {
|
|
inherit (glib.meta) platforms maintainers;
|
|
};
|
|
}
|