aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/appindicator-sharp
diff options
context:
space:
mode:
authorKevin Cox <kevincox@kevincox.ca>2020-08-31 18:12:52 -0400
committerKevin Cox <kevincox@kevincox.ca>2020-09-01 12:09:52 -0400
commitb609ed3fb65d86955565c7c7447c10bcce3e182e (patch)
tree44cc567424ddb9c9164349d27efcca8943c93d7d /pkgs/development/libraries/appindicator-sharp
parente7da93bc9b5c3ebcb6399f3375b9ceca925a8d23 (diff)
appindicator-sharp: init at master
Diffstat (limited to 'pkgs/development/libraries/appindicator-sharp')
-rw-r--r--pkgs/development/libraries/appindicator-sharp/default.nix43
1 files changed, 43 insertions, 0 deletions
diff --git a/pkgs/development/libraries/appindicator-sharp/default.nix b/pkgs/development/libraries/appindicator-sharp/default.nix
new file mode 100644
index 000000000000..9eff4e3895ba
--- /dev/null
+++ b/pkgs/development/libraries/appindicator-sharp/default.nix
@@ -0,0 +1,43 @@
+{
+ autoreconfHook,
+ fetchFromGitHub,
+ lib,
+ libappindicator,
+ mono,
+ gtk-sharp-3_0,
+ pkg-config,
+ stdenv,
+}:
+
+stdenv.mkDerivation rec {
+ pname = "appindicator-sharp";
+ version = "5a79cde93da6d68a4b1373f1ce5796c3c5fe1b37";
+
+ src = fetchFromGitHub {
+ owner = "stsundermann";
+ repo = "appindicator-sharp";
+ rev = version;
+ sha256 = "sha256:1i0vqbp05l29f5v9ygp7flm4s05pcnn5ivl578mxmhb51s7ncw6l";
+ };
+
+ nativeBuildInputs = [
+ autoreconfHook
+ mono
+ pkg-config
+ ];
+
+ buildInputs = [
+ gtk-sharp-3_0
+ libappindicator
+ ];
+
+ ac_cv_path_MDOC = "no";
+ installFlagsArray = ["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 ];
+ };
+}