about summary refs log tree commit diff
path: root/pkgs/development/libraries/gio-sharp/default.nix
blob: d7df4ab72127971f1e3930b58c646576a99d394b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, fetchFromGitHub, autoconf, automake, which, pkgconfig, mono, gtk-sharp-2_0 }:

stdenv.mkDerivation rec {
  pname = "gio-sharp";
  version = "0.3";

  src = fetchFromGitHub {
    owner = "mono";
    repo = "gio-sharp";

    rev = version;
    sha256 = "13pc529pjabj7lq23dbndc26ssmg5wkhc7lfvwapm87j711m0zig";
  };

  nativeBuildInputs = [ pkgconfig autoconf automake which ];
  buildInputs = [ mono gtk-sharp-2_0 ];

  dontStrip = true;

  prePatch = ''
    ./autogen-2.22.sh
  '';

  meta = with stdenv.lib; {
    description = "GIO API bindings";
    homepage = "https://github.com/mono/gio-sharp";
    license = licenses.mit;
    platforms = platforms.linux;
  };
}