unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* How to fix Git information file contains no revision
@ 2024-06-27 17:43 Tobias Alexandra Platen
  0 siblings, 0 replies; only message in thread
From: Tobias Alexandra Platen @ 2024-06-27 17:43 UTC (permalink / raw)
  To: guix-devel

I'm trying to package wxformbuilder, the lastest stable
version. The programs seems do depend on version information
from git, so it does not build on the guix system.

CMake Warning at /tmp/guix-build-wxformbuilder-4.2.1.drv-
0/source/cmake/revision-git-properties.cmake:57 (message):
  Git information file contents unknown:
git.commit.id.abbrev=$Format:%h$

CMake Error at /tmp/guix-build-wxformbuilder-4.2.1.drv-
0/source/cmake/revision-git-properties.cmake:60 (message):
  Git information file contains no revision


(define-public wxformbuilder
  (package
    (name "wxformbuilder")
    (version "4.2.1")
    (source
      (origin
        (method git-fetch)
        (uri (git-reference
              (url "https://github.com/wxFormBuilder/wxFormBuilder/")
              (commit "v4.2.1")
              (recursive? #t)))
        (file-name (git-file-name name version))
        (sha256 (base32
"0rax8hxfrvl3dl76p8a16ypidf7548vj5iw1yyk9c356ph6r2psn"))))
    (build-system cmake-build-system)
    ;;; guessed
    (inputs
     (list wxwidgets boost))
    (native-inputs
     (list pkg-config))
     ;;;; end of block
    (arguments (list #:configure-flags #~(list "")
                     #:tests? #f
                     #:build-type "Release"))
    (home-page "https://github.com/wxFormBuilder/wxFormBuilder/")
    (synopsis "GUI builder for the wxWidgets framework")
    (description "Code generation is supported for C++, Python, Lua and
PHP. Additionally, the import and export of XRC code is possible. To
support additional widgets, custom plugins can be used.")
    (license l:gpl2+)))





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2024-06-27 17:44 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-27 17:43 How to fix Git information file contains no revision Tobias Alexandra Platen

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).