1 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, mono4, gtk-sharp-2_0 }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 rev = "mono-addins-${version}";
12 sha256 = "018g3bd8afjc39h22h2j5r6ldsdn08ynx7wg889gdvnxg3hrxgl2";
15 nativeBuildInputs = [ pkg-config autoreconfHook ];
17 # Use msbuild when https://github.com/NixOS/nixpkgs/pull/43680 is merged
18 buildInputs = [ mono4 gtk-sharp-2_0 ];
23 homepage = "https://www.mono-project.com/archived/monoaddins/";
24 description = "A generic framework for creating extensible applications";
26 Mono.Addins is a generic framework for creating extensible applications,
27 and for creating libraries which extend those applications.
29 platforms = platforms.linux;
30 license = licenses.mit;