Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
897 B
Nix
44 lines
897 B
Nix
{
|
|
autoreconfHook,
|
|
fetchFromGitHub,
|
|
lib,
|
|
libappindicator,
|
|
mono,
|
|
gtk-sharp-3_0,
|
|
pkg-config,
|
|
stdenv,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "appindicator-sharp";
|
|
version = "0-unstable-2016-01-18";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "stsundermann";
|
|
repo = "appindicator-sharp";
|
|
rev = "5a79cde93da6d68a4b1373f1ce5796c3c5fe1b37";
|
|
sha256 = "sha256:1i0vqbp05l29f5v9ygp7flm4s05pcnn5ivl578mxmhb51s7ncw6l";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
mono
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk-sharp-3_0
|
|
libappindicator
|
|
];
|
|
|
|
ac_cv_path_MDOC = "no";
|
|
installFlags = [ "GAPIXMLDIR=/tmp/gapixml" ];
|
|
|
|
meta = {
|
|
description = "Bindings for appindicator using gobject-introspection";
|
|
homepage = "https://github.com/stsundermann/appindicator-sharp";
|
|
license = lib.licenses.lgpl3Only;
|
|
maintainers = with lib.maintainers; [ kevincox ];
|
|
};
|
|
}
|