nixpkgs/pkgs/development/libraries/notify-sharp/default.nix

37 lines
754 B
Nix
Raw Normal View History

2016-01-24 12:16:21 +00:00
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook
, mono, gtk-sharp-3_0, dbus-sharp-1_0, dbus-sharp-glib-1_0 }:
stdenv.mkDerivation rec {
pname = "notify-sharp";
2016-01-24 12:16:21 +00:00
version = "3.0.3";
src = fetchFromGitHub {
owner = "GNOME";
repo = "notify-sharp";
2019-09-08 23:38:31 +00:00
rev = version;
2016-01-24 12:16:21 +00:00
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;
2018-10-25 19:42:49 +00:00
license = licenses.mit;
2016-01-24 12:16:21 +00:00
};
}