all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob d6d03bf568c8fd99774edee93c1e356b495ed4bd 3049 bytes (raw)
name: gnu/packages/wdl.scm 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2022 Sughosha <sughosha@proton.me>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages wdl)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix git-download)
  #:use-module (guix build-system gnu)
  #:use-module (gnu packages)
  #:use-module (gnu packages gtk)
  #:use-module (gnu packages pkg-config))

(define %wdl-commit "60ef0b41d520813c63303046531c78ec95e64d5c")

(define %wdl-origin
  (origin
    (method git-fetch)
      (uri (git-reference (url "https://github.com/justinfrankel/WDL.git")
                          (commit %wdl-commit)))
      (sha256 (base32 "0br0b4d230vhib5qm39ggf6m5pfipkjs4xqxkjxjnba7g0bdz7iv"))
      (modules '((guix build utils)))
      ;; Unbundle third party libraries which are not needed.
      (snippet '(for-each (lambda (dir) (delete-file-recursively
                                         (string-append "WDL/" dir)))
                          (list "jnetlib"
                                "libpng"
                                "giflib"
                                "jpeglib"
                                "zlib")))))

(define-public libswell
  (package
    (name "libswell")
    (version (git-version "0" "0" %wdl-commit))
    (source %wdl-origin)
    (build-system gnu-build-system)
    (arguments
     `(#:tests? #f
       #:phases (modify-phases %standard-phases
                  (delete 'configure) ;no configure script
                  (replace 'build
                    (lambda _
                      (chdir "WDL")
                      (invoke "make" "-Cswell")))
                  (replace 'install
                    (lambda* (#:key outputs #:allow-other-keys)
                      (install-file "swell/libSwell.so"
                                    (string-append (assoc-ref outputs
                                                              "out")
                                                   "/lib")))))))
    (native-inputs (list pkg-config))
    (inputs (list gtk+))
    (home-page "http://www.cockos.com/wdl")
    (synopsis "Reasonable subset of the win32 API")
    (description
     "SWELL is Simple Windows Emulation Layer with support for automatic
(PHP-based) dialog and menu resource conversion and SWELL-specific win32-style
extensions.")
    (license license:zlib)))

debug log:

solving d6d03bf568 ...
found d6d03bf568 in https://yhetil.org/guix/MjVRgtpD9K15mTi_wqLOGBriHXo3UpQR9-dPa5D722WAcJUITaQVEj8QkY0dcHb-e99O9yxWkHicJJbQEy5sqB84PPFHzUpqnJ19sMFq9uw=@proton.me/
found 8cdea46103 in https://yhetil.org/guix/ksIz80tJQEl3kOX8H2zbbi0V-PE6OjRU2feipV2IcNqe9pbk18719uLuPOg8dVSzcHg-aCf8xAiCB7Kq4zpheEvRWjW_pDJqxgEQ2d8gtVc=@proton.me/
found e0a7ea8fac in https://yhetil.org/guix/ChXlp6YIa5eQPVrAFeG2FC6o26Dc5gy7wqxPRhNRHBYQbA9_bSFj5eVJ54SNCY-PGGkKddEU6il-w16cEoGvT2mV_B3pyxlGo6yMrwzy0H8=@proton.me/

applying [1/3] https://yhetil.org/guix/ChXlp6YIa5eQPVrAFeG2FC6o26Dc5gy7wqxPRhNRHBYQbA9_bSFj5eVJ54SNCY-PGGkKddEU6il-w16cEoGvT2mV_B3pyxlGo6yMrwzy0H8=@proton.me/
diff --git a/gnu/packages/wdl.scm b/gnu/packages/wdl.scm
new file mode 100644
index 0000000000..e0a7ea8fac


applying [2/3] https://yhetil.org/guix/ksIz80tJQEl3kOX8H2zbbi0V-PE6OjRU2feipV2IcNqe9pbk18719uLuPOg8dVSzcHg-aCf8xAiCB7Kq4zpheEvRWjW_pDJqxgEQ2d8gtVc=@proton.me/
diff --git a/gnu/packages/wdl.scm b/gnu/packages/wdl.scm
index e0a7ea8fac..8cdea46103 100644


applying [3/3] https://yhetil.org/guix/MjVRgtpD9K15mTi_wqLOGBriHXo3UpQR9-dPa5D722WAcJUITaQVEj8QkY0dcHb-e99O9yxWkHicJJbQEy5sqB84PPFHzUpqnJ19sMFq9uw=@proton.me/
diff --git a/gnu/packages/wdl.scm b/gnu/packages/wdl.scm
index 8cdea46103..d6d03bf568 100644

Checking patch gnu/packages/wdl.scm...
Applied patch gnu/packages/wdl.scm cleanly.
Checking patch gnu/packages/wdl.scm...
Applied patch gnu/packages/wdl.scm cleanly.
Checking patch gnu/packages/wdl.scm...
Applied patch gnu/packages/wdl.scm cleanly.

index at:
100644 d6d03bf568c8fd99774edee93c1e356b495ed4bd	gnu/packages/wdl.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.