~ruther/guix-local

3235bfa25a82c1dbe6a8a0ec83ae98f840d1deb4 — Sergio Pastor Pérez 2 years ago a35bfb6
gnu: Add picket.

* gnu/packages/image.scm (picket): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
1 files changed, 46 insertions(+), 0 deletions(-)

M gnu/packages/image.scm
M gnu/packages/image.scm => gnu/packages/image.scm +46 -0
@@ 1970,6 1970,52 @@ medical image data, e.g. magnetic resonance image (MRI) and functional MRI
     "This is a tiny, header-only C++ library for manipulating INI files.")
    (license license:expat)))

(define-public picket
  (package
    (name "picket")
    (version "1.3")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://github.com/rajter/picket")
                    (commit (string-append "v" version))))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "1zhpynyakjx9nc51b1j80b4y3138p3l380kp1cqmmjx2n9430144"))
              (snippet '(begin
                          ;; bundled mINI header library.
                          (delete-file "src/cfg/ini.h")))))
    (native-inputs (list pkg-config))
    (inputs (list gtkmm-3 mini))
    (arguments
     (list #:tests? #f
           #:phases #~(modify-phases %standard-phases
                        (add-after 'unpack 'fix-mini-includes
                          (lambda _
                            (substitute* '("src/cfg/config.h"
                                           "src/cfg/config.cpp")
                              (("#include \"ini.h\"")
                               "#include \"mini/ini.h\""))
                            (substitute* "src/main.cpp"
                              (("/usr")
                               #$output))))
                        (add-after 'unpack 'fix-cmake-paths
                          (lambda* (#:key inputs #:allow-other-keys)
                            (substitute* "CMakeLists.txt"
                              (("src/cfg/ini.h")
                               (search-input-file inputs
                                                  "/include/mini/ini.h"))
                              (("/usr/")
                               #$output)))))))
    (build-system cmake-build-system)
    (home-page "https://github.com/rajter/picket")
    (synopsis "Screen color picker with custom format output")
    (description
     "Picket is a screen color picker that includes a magnifier and supports
custom formats for representing color values..")
    (license license:gpl3+)))

(define-public gpick
  (package
    (name "gpick")