nixpkgs/pkgs/development/libraries/mono-addins/default.nix
Daniel Schaefer bac4d95aa2 treewide: Change URLs to HTTPS
Lots of URLs were HTTP redirect to HTTPS. Changed those and checked them
if there's actual content. Inspired by
https://github.com/NixOS/nixpkgs/issues/60004
2019-04-22 10:19:54 +02:00

33 lines
955 B
Nix

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, mono4, gtk-sharp-2_0 }:
stdenv.mkDerivation rec {
name = "mono-addins-${version}";
version = "1.3.3";
src = fetchFromGitHub {
owner = "mono";
repo = "mono-addins";
rev = "mono-addins-${version}";
sha256 = "018g3bd8afjc39h22h2j5r6ldsdn08ynx7wg889gdvnxg3hrxgl2";
};
nativeBuildInputs = [ pkgconfig autoreconfHook ];
# Use msbuild when https://github.com/NixOS/nixpkgs/pull/43680 is merged
buildInputs = [ mono4 gtk-sharp-2_0 ];
dontStrip = true;
meta = with stdenv.lib; {
homepage = https://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;
license = licenses.mit;
};
}