My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/gtksourceviewmm/4.x.nix

31 lines
866 B

{ lib, stdenv, fetchurl, pkg-config, gtkmm3, glibmm, gtksourceview4, gnome }:
stdenv.mkDerivation rec {
pname = "gtksourceviewmm";
version = "3.91.1";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "088p2ch1b4fvzl9416nw3waj0pqgp31cd5zj4lx5hzzrq2afgapy";
};
passthru = {
updateScript = gnome.updateScript {
attrPath = "gtksourceviewmm4";
packageName = pname;
versionPolicy = "none";
};
};
nativeBuildInputs = [ pkg-config ];
propagatedBuildInputs = [ glibmm gtkmm3 gtksourceview4 ];
meta = with lib; {
platforms = platforms.linux;
homepage = "https://gitlab.gnome.org/GNOME/gtksourceviewmm";
description = "C++ wrapper for gtksourceview";
license = licenses.lgpl2;
maintainers = teams.gnome.members;
};
}