mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
468cb5980b
Since GNOME version is now 40, it no longer makes sense to use the old attribute name.
31 lines
827 B
Nix
31 lines
827 B
Nix
{ 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 {
|
|
packageName = pname;
|
|
versionPolicy = "none";
|
|
};
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
propagatedBuildInputs = [ glibmm gtkmm3 gtksourceview4 ];
|
|
|
|
meta = with lib; {
|
|
platforms = platforms.linux;
|
|
homepage = "https://developer.gnome.org/gtksourceviewmm/";
|
|
description = "C++ wrapper for gtksourceview";
|
|
license = licenses.lgpl2;
|
|
maintainers = teams.gnome.members;
|
|
};
|
|
}
|
|
|