summary refs log tree commit diff
path: root/pkgs/development/libraries/dbus-sharp
diff options
context:
space:
mode:
authorAl Zohali <zohl@fmap.me>2016-01-24 13:42:07 +0300
committerAl Zohali <zohl@fmap.me>2016-03-07 23:21:01 +0300
commit826c716ea30744d15c905b428c641ae0901e318a (patch)
treeccd11e19c18d25f62abd09bf294de0eb87765823 /pkgs/development/libraries/dbus-sharp
parentd9a7918055ddfc11164af72f41d1807f162816f7 (diff)
downloadnixpkgs-826c716ea30744d15c905b428c641ae0901e318a.tar
nixpkgs-826c716ea30744d15c905b428c641ae0901e318a.tar.gz
nixpkgs-826c716ea30744d15c905b428c641ae0901e318a.tar.bz2
nixpkgs-826c716ea30744d15c905b428c641ae0901e318a.tar.lz
nixpkgs-826c716ea30744d15c905b428c641ae0901e318a.tar.xz
nixpkgs-826c716ea30744d15c905b428c641ae0901e318a.tar.zst
nixpkgs-826c716ea30744d15c905b428c641ae0901e318a.zip
dbus-sharp-1_0: init at 0.7
Diffstat (limited to 'pkgs/development/libraries/dbus-sharp')
-rw-r--r--pkgs/development/libraries/dbus-sharp/dbus-sharp-1.0.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/libraries/dbus-sharp/dbus-sharp-1.0.nix b/pkgs/development/libraries/dbus-sharp/dbus-sharp-1.0.nix
new file mode 100644
index 00000000000..c17a140b9c5
--- /dev/null
+++ b/pkgs/development/libraries/dbus-sharp/dbus-sharp-1.0.nix
@@ -0,0 +1,24 @@
+{stdenv, fetchFromGitHub, pkgconfig, dbus, mono, autoreconfHook }:
+
+stdenv.mkDerivation rec {
+  name = "dbus-sharp-${version}";
+  version = "0.7";
+
+  src = fetchFromGitHub {
+    owner = "mono";
+    repo = "dbus-sharp";
+
+    rev = "v${version}";
+    sha256 = "13qlqx9wqahfpzzl59157cjxprqcx2bd40w5gb2bs3vdx058p562";
+  };
+
+  nativeBuildInputs = [ pkgconfig autoreconfHook ];
+  buildInputs = [ mono ];
+
+  dontStrip = true;
+
+  meta = with stdenv.lib; {
+    description = "D-Bus for .NET";
+    platforms = platforms.linux;
+  };
+}