sqlite_orm: 1.9 -> 1.9.1 (#379250)
[NixPkgs.git] / pkgs / by-name / gt / gtk-sharp-beans / package.nix
blobc01f39ef028ca7676f56094c33ddbb609e9f094c
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   autoreconfHook,
6   which,
7   pkg-config,
8   mono,
9   gtk-sharp-2_0,
10   gio-sharp,
13 stdenv.mkDerivation rec {
14   pname = "gtk-sharp-beans";
15   version = "2.14.0";
17   src = fetchFromGitHub {
18     owner = "mono";
19     repo = "gtk-sharp-beans";
21     rev = version;
22     sha256 = "04sylwdllb6gazzs2m4jjfn14mil9l3cny2q0xf0zkhczzih6ah1";
23   };
25   nativeBuildInputs = [
26     pkg-config
27     autoreconfHook
28     which
29   ];
30   buildInputs = [
31     mono
32     gtk-sharp-2_0
33     gio-sharp
34   ];
36   dontStrip = true;
38   meta = with lib; {
39     description = "Binds some API from GTK that isn't in GTK# 2.12.x";
40     platforms = platforms.linux;
41     license = licenses.lgpl21;
42   };