mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
25 lines
646 B
Nix
25 lines
646 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, which, pkgconfig, mono, gtk-sharp-2_0, gio-sharp }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gtk-sharp-beans-${version}";
|
|
version = "2.14.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mono";
|
|
repo = "gtk-sharp-beans";
|
|
|
|
rev = "${version}";
|
|
sha256 = "04sylwdllb6gazzs2m4jjfn14mil9l3cny2q0xf0zkhczzih6ah1";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook which ];
|
|
buildInputs = [ mono gtk-sharp-2_0 gio-sharp ];
|
|
|
|
dontStrip = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "gtk-sharp-beans binds some API from Gtk+ that isn't in Gtk# 2.12.x";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|