summary refs log tree commit diff
path: root/pkgs/development/libraries/libgflow
diff options
context:
space:
mode:
authorgrindhold <grindhold@gmx.net>2022-09-30 14:13:14 +0200
committergrindhold <grindhold@gmx.net>2022-10-08 21:16:54 +0200
commitd64475464c1922e3420f70f1defc5823f5d13b46 (patch)
treedc2d0c4e202bd93924d290a8d0b66f9dc43836c9 /pkgs/development/libraries/libgflow
parent7999ad87aecdc30efae9ffac6f221dacef6b231c (diff)
libgtkflow: split into 3 separate derivations
Diffstat (limited to 'pkgs/development/libraries/libgflow')
-rw-r--r--pkgs/development/libraries/libgflow/default.nix49
1 files changed, 49 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libgflow/default.nix b/pkgs/development/libraries/libgflow/default.nix
new file mode 100644
index 0000000000000..007afa6ef5bf2
--- /dev/null
+++ b/pkgs/development/libraries/libgflow/default.nix
@@ -0,0 +1,49 @@
+{stdenv, lib, vala, meson, ninja, pkg-config, fetchFromGitea, gobject-introspection, glib, gtk3}:
+
+stdenv.mkDerivation rec {
+  pname = "libgflow";
+  version = "1.0.4";
+
+  outputs = [ "out" "dev" "devdoc" ];
+  outputBin = "devdoc"; # demo app
+
+  src = fetchFromGitea {
+    domain = "notabug.org";
+    owner = "grindhold";
+    repo = "libgtkflow";
+    rev = "gflow_${version}";
+    hash = "sha256-JoVq7U5JQ3pRxptR7igWFw7lcBTsgr3aVXxayLqhyFo=";
+  };
+
+  nativeBuildInputs = [
+    vala
+    meson
+    ninja
+    pkg-config
+    gobject-introspection
+  ];
+
+  buildInputs = [
+    gtk3
+    glib
+  ];
+
+  postFixup = ''
+    # Cannot be in postInstall, otherwise _multioutDocs hook in preFixup will move right back.
+    moveToOutput "share/doc" "$devdoc"
+  '';
+
+  mesonFlags = [
+    "-Denable_valadoc=true"
+    "-Denable_gtk3=false"
+    "-Denable_gtk4=false"
+  ];
+
+  meta = with lib; {
+    description = "Flow graph widget for GTK 3";
+    homepage = "https://notabug.org/grindhold/libgtkflow";
+    maintainers = with maintainers; [ grindhold ];
+    license = licenses.lgpl3Plus;
+    platforms = platforms.unix;
+  };
+}