summaryrefslogtreecommitdiff
path: root/gnu/packages/cpp.scm
diff options
context:
space:
mode:
authorSergio Pastor Pérez <sergio.pastorperez@outlook.es>2025-03-19 18:00:01 +0100
committerLiliana Marie Prikler <liliana.prikler@gmail.com>2025-03-26 21:47:28 +0100
commit40c93eda32fb118c4edb98aa13747b7159428bc7 (patch)
tree4be17bb89720f3f511266579e02df8f63c7e44b8 /gnu/packages/cpp.scm
parent51f0c29f9e1783075c07ff1190e09c688c24da1d (diff)
gnu: Add nativefiledialog-extended.
* gnu/packages/cpp.scm (nativefiledialog-extended): New variable. Change-Id: I89ed4554db3ec8075bbb7d50bbfb4b99cae81a27 Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu/packages/cpp.scm')
-rw-r--r--gnu/packages/cpp.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index a0f65e19a37..188c4364894 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -3692,6 +3692,33 @@ std::variant (formerly boost::variant) for C++11/14.")
3692based on the implementation of std::variant in libc++.") 3692based on the implementation of std::variant in libc++.")
3693 (license license:boost1.0))) 3693 (license license:boost1.0)))
3694 3694
3695(define-public nativefiledialog-extended
3696 (package
3697 (name "nativefiledialog-extended")
3698 (version "1.2.1")
3699 (source
3700 (origin
3701 (method git-fetch)
3702 (uri (git-reference
3703 (url "https://github.com/btzy/nativefiledialog-extended")
3704 (commit (string-append "v" version))))
3705 (file-name (git-file-name name version))
3706 (sha256
3707 (base32 "15l0jy3v4p6rgg9dk8zr80lqp51s32ii62cm4s90400ragdgh10v"))))
3708 (build-system cmake-build-system)
3709 (arguments
3710 '(#:configure-flags '("-DBUILD_SHARED_LIBS=ON")))
3711 (native-inputs (list pkg-config))
3712 (inputs (list gtk+))
3713 (home-page "https://github.com/btzy/nativefiledialog-extended")
3714 (synopsis "Native file dialog library with C and C++ bindings")
3715 (description
3716 "This package provides a library that portably invokes native file open,
3717folder select and file save dialogs. It allows the specification of a default
3718file name and location, as well as filters with friendly names (such as
3719\"source files\" or \"image files\") where supported.")
3720 (license license:zlib)))
3721
3695(define-public tsl-hopscotch-map 3722(define-public tsl-hopscotch-map
3696 (package 3723 (package
3697 (name "tsl-hopscotch-map") 3724 (name "tsl-hopscotch-map")