gnu: xorg: Comment applewmproto and libapplewm, compile only on macos.
* gnu/packages/xorg.scm (applewmproto,libapplewm): Remove variables.
This commit is contained in:
parent
6eb126c5f2
commit
d92083ad99
|
@ -47,26 +47,27 @@
|
||||||
;; be defined first, the split makes book-keeping easier.)
|
;; be defined first, the split makes book-keeping easier.)
|
||||||
|
|
||||||
|
|
||||||
(define-public applewmproto
|
;; compiles only on macos
|
||||||
(package
|
;; (define-public applewmproto
|
||||||
(name "applewmproto")
|
;; (package
|
||||||
(version "1.4.2")
|
;; (name "applewmproto")
|
||||||
(source
|
;; (version "1.4.2")
|
||||||
(origin
|
;; (source
|
||||||
(method url-fetch)
|
;; (origin
|
||||||
(uri (string-append
|
;; (method url-fetch)
|
||||||
"mirror://xorg/X11R7.7/src/everything/applewmproto-"
|
;; (uri (string-append
|
||||||
version
|
;; "mirror://xorg/X11R7.7/src/everything/applewmproto-"
|
||||||
".tar.bz2"))
|
;; version
|
||||||
(sha256
|
;; ".tar.bz2"))
|
||||||
(base32
|
;; (sha256
|
||||||
"1zi4p07mp6jmk030p4gmglwxcwp0lzs5mi31y1b4rp8lsqxdxizw"))))
|
;; (base32
|
||||||
(build-system gnu-build-system)
|
;; "1zi4p07mp6jmk030p4gmglwxcwp0lzs5mi31y1b4rp8lsqxdxizw"))))
|
||||||
(inputs `(("pkg-config" ,pkg-config)))
|
;; (build-system gnu-build-system)
|
||||||
(home-page "http://www.x.org/wiki/")
|
;; (inputs `(("pkg-config" ,pkg-config)))
|
||||||
(synopsis "xorg implementation of the X Window System")
|
;; (home-page "http://www.x.org/wiki/")
|
||||||
(description "X.org provides an implementation of the X Window System")
|
;; (synopsis "xorg implementation of the X Window System")
|
||||||
(license license:x11)))
|
;; (description "X.org provides an implementation of the X Window System")
|
||||||
|
;; (license license:x11)))
|
||||||
|
|
||||||
|
|
||||||
(define-public bdftopcf
|
(define-public bdftopcf
|
||||||
|
@ -1178,31 +1179,32 @@
|
||||||
(license license:x11)))
|
(license license:x11)))
|
||||||
|
|
||||||
|
|
||||||
(define-public libapplewm
|
;; requires applewmproto, which compiles only on macos
|
||||||
(package
|
;; (define-public libapplewm
|
||||||
(name "libapplewm")
|
;; (package
|
||||||
(version "1.4.1")
|
;; (name "libapplewm")
|
||||||
(source
|
;; (version "1.4.1")
|
||||||
(origin
|
;; (source
|
||||||
(method url-fetch)
|
;; (origin
|
||||||
(uri (string-append
|
;; (method url-fetch)
|
||||||
"mirror://xorg/X11R7.7/src/everything/libAppleWM-"
|
;; (uri (string-append
|
||||||
version
|
;; "mirror://xorg/X11R7.7/src/everything/libAppleWM-"
|
||||||
".tar.bz2"))
|
;; version
|
||||||
(sha256
|
;; ".tar.bz2"))
|
||||||
(base32
|
;; (sha256
|
||||||
"0r8x28n45q89x91mz8mv0zkkcxi8wazkac886fyvflhiv2y8ap2y"))))
|
;; (base32
|
||||||
(build-system gnu-build-system)
|
;; "0r8x28n45q89x91mz8mv0zkkcxi8wazkac886fyvflhiv2y8ap2y"))))
|
||||||
(inputs
|
;; (build-system gnu-build-system)
|
||||||
`(("xextproto" ,xextproto)
|
;; (inputs
|
||||||
("libxext" ,libxext)
|
;; `(("xextproto" ,xextproto)
|
||||||
("libx11" ,libx11)
|
;; ("libxext" ,libxext)
|
||||||
("applewmproto" ,applewmproto)
|
;; ("libx11" ,libx11)
|
||||||
("pkg-config" ,pkg-config)))
|
;; ("applewmproto" ,applewmproto)
|
||||||
(home-page "http://www.x.org/wiki/")
|
;; ("pkg-config" ,pkg-config)))
|
||||||
(synopsis "xorg implementation of the X Window System")
|
;; (home-page "http://www.x.org/wiki/")
|
||||||
(description "X.org provides an implementation of the X Window System")
|
;; (synopsis "xorg implementation of the X Window System")
|
||||||
(license license:x11)))
|
;; (description "X.org provides an implementation of the X Window System")
|
||||||
|
;; (license license:x11)))
|
||||||
|
|
||||||
|
|
||||||
(define-public libdmx
|
(define-public libdmx
|
||||||
|
|
Loading…
Reference in New Issue