at 22.05-pre 25 lines 645 B view raw
1{ lib, stdenv, fetchFromGitHub, autoreconfHook, which, pkg-config, mono, gtk-sharp-2_0, gio-sharp }: 2 3stdenv.mkDerivation rec { 4 pname = "gtk-sharp-beans"; 5 version = "2.14.0"; 6 7 src = fetchFromGitHub { 8 owner = "mono"; 9 repo = "gtk-sharp-beans"; 10 11 rev = version; 12 sha256 = "04sylwdllb6gazzs2m4jjfn14mil9l3cny2q0xf0zkhczzih6ah1"; 13 }; 14 15 nativeBuildInputs = [ pkg-config autoreconfHook which ]; 16 buildInputs = [ mono gtk-sharp-2_0 gio-sharp ]; 17 18 dontStrip = true; 19 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 }; 25}