mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
mono-addins: init at 1.2
This commit is contained in:
parent
d778ab0cb0
commit
3576a2d549
2 changed files with 31 additions and 0 deletions
29
pkgs/development/libraries/mono-addins/default.nix
Normal file
29
pkgs/development/libraries/mono-addins/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, mono, gtk-sharp-2_0 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mono-addins-${version}";
|
||||
version = "1.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mono";
|
||||
repo = "mono-addins";
|
||||
|
||||
rev = "mono-addins-${version}";
|
||||
sha256 = "1hnn0a2qsjcjprsxas424bzvhsdwy0yc2jj5xbp698c0m9kfk24y";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
||||
buildInputs = [ mono gtk-sharp-2_0 ];
|
||||
|
||||
dontStrip = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.mono-project.com/archived/monoaddins/;
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -8171,6 +8171,8 @@ let
|
|||
qt = qt4;
|
||||
};
|
||||
|
||||
mono-addins = callPackage ../development/libraries/mono-addins { };
|
||||
|
||||
movit = callPackage ../development/libraries/movit { };
|
||||
|
||||
mosquitto = callPackage ../servers/mqtt/mosquitto { };
|
||||
|
|
Loading…
Reference in a new issue