nixpkgs/pkgs/development/libraries/mono-addins/default.nix

33 lines
955 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, mono4, gtk-sharp-2_0 }:
2016-02-02 12:38:28 +00:00
stdenv.mkDerivation rec {
name = "mono-addins-${version}";
version = "1.3.3";
2016-02-02 12:38:28 +00:00
src = fetchFromGitHub {
owner = "mono";
repo = "mono-addins";
rev = "mono-addins-${version}";
sha256 = "018g3bd8afjc39h22h2j5r6ldsdn08ynx7wg889gdvnxg3hrxgl2";
2016-02-02 12:38:28 +00:00
};
nativeBuildInputs = [ pkgconfig autoreconfHook ];
2018-09-08 08:06:58 +00:00
# Use msbuild when https://github.com/NixOS/nixpkgs/pull/43680 is merged
buildInputs = [ mono4 gtk-sharp-2_0 ];
2016-02-02 12:38:28 +00:00
dontStrip = true;
meta = with stdenv.lib; {
homepage = https://www.mono-project.com/archived/monoaddins/;
2016-02-02 12:38:28 +00:00
description = "A generic framework for creating extensible applications";
longDescription = ''
Mono.Addins is a generic framework for creating extensible applications,
and for creating libraries which extend those applications.
'';
platforms = platforms.linux;
2018-10-23 18:00:36 +00:00
license = licenses.mit;
2016-02-02 12:38:28 +00:00
};
}