mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 22:57:42 +03:00
10 lines
186 B
Nix
10 lines
186 B
Nix
|
# gnome-keyring
|
||
|
|
||
|
{input, stdenv, fetchurl, pkgconfig, glib, gtk}:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
inherit (input) name src;
|
||
|
buildInputs = [pkgconfig gtk glib];
|
||
|
CFLAGS = "-DENABLE_NLS=0";
|
||
|
}
|