about summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/core/gtksourceviewmm
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/gnome-3/core/gtksourceviewmm')
-rw-r--r--pkgs/desktops/gnome-3/core/gtksourceviewmm/default.nix16
-rw-r--r--pkgs/desktops/gnome-3/core/gtksourceviewmm/src.nix10
2 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/desktops/gnome-3/core/gtksourceviewmm/default.nix b/pkgs/desktops/gnome-3/core/gtksourceviewmm/default.nix
new file mode 100644
index 000000000000..43e27cdb4814
--- /dev/null
+++ b/pkgs/desktops/gnome-3/core/gtksourceviewmm/default.nix
@@ -0,0 +1,16 @@
+{ stdenv, fetchurl, pkgconfig, gtkmm, glibmm, gtksourceview }:
+
+stdenv.mkDerivation rec {
+  inherit (import ./src.nix fetchurl) name src;
+
+  buildInputs = [ pkgconfig glibmm gtkmm gtksourceview ];
+
+  meta = with stdenv.lib; {
+    platforms = platforms.linux;
+    homepage = https://developer.gnome.org/gtksourceviewmm/;
+    description = "C++ wrapper for gtksourceview";
+    license = licenses.lgpl2;
+    maintainers = [ maintainers.juliendehos ];
+  };
+}
+
diff --git a/pkgs/desktops/gnome-3/core/gtksourceviewmm/src.nix b/pkgs/desktops/gnome-3/core/gtksourceviewmm/src.nix
new file mode 100644
index 000000000000..21618c45e051
--- /dev/null
+++ b/pkgs/desktops/gnome-3/core/gtksourceviewmm/src.nix
@@ -0,0 +1,10 @@
+# Autogenerated by maintainers/scripts/gnome.sh update
+
+fetchurl: {
+  name = "gtksourceviewmm-3.21.2";
+
+  src = fetchurl {
+    url = mirror://gnome/sources/gtksourceviewmm/3.21/gtksourceviewmm-3.21.2.tar.xz;
+    sha256 = "d21296d8624a1046841bfec082021b7b966df0b62e19ee300828519bc54dd9c6";
+  };
+}