Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / gtk-sharp-beans / default.nix
blob69ef71f1506fda19e27eef506d263506fe10820e
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, which, pkg-config, mono, gtk-sharp-2_0, gio-sharp }:
3 stdenv.mkDerivation rec {
4   pname = "gtk-sharp-beans";
5   version = "2.14.0";
7   src = fetchFromGitHub {
8     owner = "mono";
9     repo = "gtk-sharp-beans";
11     rev = version;
12     sha256 = "04sylwdllb6gazzs2m4jjfn14mil9l3cny2q0xf0zkhczzih6ah1";
13   };
15   nativeBuildInputs = [ pkg-config autoreconfHook which ];
16   buildInputs = [ mono gtk-sharp-2_0 gio-sharp ];
18   dontStrip = true;
20   meta = with lib; {
21     description = "Binds some API from GTK that isn't in GTK# 2.12.x";
22     platforms = platforms.linux;
23     license = licenses.lgpl21;
24   };