6aab02a1de
previous homepage no longer exists
31 lines
866 B
Nix
31 lines
866 B
Nix
{ lib, stdenv, fetchurl, pkg-config, gtkmm3, glibmm, gtksourceview3, gnome }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gtksourceviewmm";
|
|
version = "3.21.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gtksourceviewmm/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "1danc9mp5mnb65j01qxkwj92z8jf1gns41wbgp17qh7050f0pc6v";
|
|
};
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = "gtksourceviewmm";
|
|
versionPolicy = "none";
|
|
freeze = true;
|
|
};
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ glibmm gtkmm3 gtksourceview3 ];
|
|
|
|
meta = with lib; {
|
|
platforms = platforms.unix;
|
|
homepage = "https://gitlab.gnome.org/GNOME/gtksourceviewmm";
|
|
description = "C++ wrapper for gtksourceview";
|
|
license = licenses.lgpl2;
|
|
maintainers = [ maintainers.juliendehos ];
|
|
};
|
|
}
|
|
|