notify-sharp: init at 3.0.3
This commit is contained in:
parent
1018e0497a
commit
ec0ffd9078
35
pkgs/development/libraries/notify-sharp/default.nix
Normal file
35
pkgs/development/libraries/notify-sharp/default.nix
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook
|
||||||
|
, mono, gtk-sharp-3_0, dbus-sharp-1_0, dbus-sharp-glib-1_0 }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "notify-sharp-${version}";
|
||||||
|
version = "3.0.3";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "GNOME";
|
||||||
|
repo = "notify-sharp";
|
||||||
|
|
||||||
|
rev = "${version}";
|
||||||
|
sha256 = "1vm7mnmxdwrgy4mr07lfva8sa6a32f2ah5x7w8yzcmahaks3sj5m";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
pkgconfig autoreconfHook
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
mono gtk-sharp-3_0
|
||||||
|
dbus-sharp-1_0 dbus-sharp-glib-1_0
|
||||||
|
];
|
||||||
|
|
||||||
|
dontStrip = true;
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
sed -i 's#^[ \t]*DOCDIR=.*$#DOCDIR=$out/lib/monodoc#' ./configure.ac
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "D-Bus for .NET";
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -8205,6 +8205,8 @@ let
|
|||||||
|
|
||||||
nanomsg = callPackage ../development/libraries/nanomsg { };
|
nanomsg = callPackage ../development/libraries/nanomsg { };
|
||||||
|
|
||||||
|
notify-sharp = callPackage ../development/libraries/notify-sharp { };
|
||||||
|
|
||||||
ncurses = callPackage ../development/libraries/ncurses { };
|
ncurses = callPackage ../development/libraries/ncurses { };
|
||||||
|
|
||||||
neardal = callPackage ../development/libraries/neardal { };
|
neardal = callPackage ../development/libraries/neardal { };
|
||||||
|
Loading…
Reference in New Issue
Block a user