aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/gio-sharp
diff options
context:
space:
mode:
authorAl Zohali <zohl@fmap.me>2016-02-09 13:20:55 +0300
committerAl Zohali <zohl@fmap.me>2016-03-07 23:21:01 +0300
commit50bd9b01931ca7cc5651a2ee60bbeb0635cbeb94 (patch)
treedaff2cc8c63dda7652374fe7c73b3f907e523229 /pkgs/development/libraries/gio-sharp
parenta4a19c57ad85361bf4d7d89a6440ad54cfd68590 (diff)
gio-sharp:init at 0.3
Diffstat (limited to 'pkgs/development/libraries/gio-sharp')
-rw-r--r--pkgs/development/libraries/gio-sharp/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/libraries/gio-sharp/default.nix b/pkgs/development/libraries/gio-sharp/default.nix
new file mode 100644
index 000000000000..ad5220cac4e9
--- /dev/null
+++ b/pkgs/development/libraries/gio-sharp/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchFromGitHub, autoconf, automake, which, pkgconfig, mono, gtk-sharp }:
+
+stdenv.mkDerivation rec {
+ name = "gio-sharp-${version}";
+ version = "0.3";
+
+ src = fetchFromGitHub {
+ owner = "mono";
+ repo = "gio-sharp";
+
+ rev = "${version}";
+ sha256 = "13pc529pjabj7lq23dbndc26ssmg5wkhc7lfvwapm87j711m0zig";
+ };
+
+ nativeBuildInputs = [ pkgconfig autoconf automake which ];
+ buildInputs = [ mono gtk-sharp ];
+
+ dontStrip = true;
+
+ prePatch = ''
+ ./autogen-2.22.sh
+ '';
+
+ meta = with stdenv.lib; {
+ description = "GIO API bindings";
+ platforms = platforms.linux;
+ };
+}