diff options
author | Andreas Enge <andreas@enge.fr> | 2013-03-06 22:24:08 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2013-03-06 22:24:08 +0100 |
commit | d92083ad99e0d5f43fa9ded5ef0d023815ea4ff3 (patch) | |
tree | ac5bd19439875a50f2ad27590d382d91c11072a6 /gnu/packages | |
parent | 6eb126c5f2870209837919b93b899857046497b5 (diff) | |
download | guix-d92083ad99e0d5f43fa9ded5ef0d023815ea4ff3.tar guix-d92083ad99e0d5f43fa9ded5ef0d023815ea4ff3.tar.gz |
gnu: xorg: Comment applewmproto and libapplewm, compile only on macos.
* gnu/packages/xorg.scm (applewmproto,libapplewm): Remove variables.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/xorg.scm | 92 |
1 files changed, 47 insertions, 45 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index d6439ec4d4..248d4efa73 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -47,26 +47,27 @@ ;; be defined first, the split makes book-keeping easier.) -(define-public applewmproto - (package - (name "applewmproto") - (version "1.4.2") - (source - (origin - (method url-fetch) - (uri (string-append - "mirror://xorg/X11R7.7/src/everything/applewmproto-" - version - ".tar.bz2")) - (sha256 - (base32 - "1zi4p07mp6jmk030p4gmglwxcwp0lzs5mi31y1b4rp8lsqxdxizw")))) - (build-system gnu-build-system) - (inputs `(("pkg-config" ,pkg-config))) - (home-page "http://www.x.org/wiki/") - (synopsis "xorg implementation of the X Window System") - (description "X.org provides an implementation of the X Window System") - (license license:x11))) +;; compiles only on macos +;; (define-public applewmproto +;; (package +;; (name "applewmproto") +;; (version "1.4.2") +;; (source +;; (origin +;; (method url-fetch) +;; (uri (string-append +;; "mirror://xorg/X11R7.7/src/everything/applewmproto-" +;; version +;; ".tar.bz2")) +;; (sha256 +;; (base32 +;; "1zi4p07mp6jmk030p4gmglwxcwp0lzs5mi31y1b4rp8lsqxdxizw")))) +;; (build-system gnu-build-system) +;; (inputs `(("pkg-config" ,pkg-config))) +;; (home-page "http://www.x.org/wiki/") +;; (synopsis "xorg implementation of the X Window System") +;; (description "X.org provides an implementation of the X Window System") +;; (license license:x11))) (define-public bdftopcf @@ -1178,31 +1179,32 @@ (license license:x11))) -(define-public libapplewm - (package - (name "libapplewm") - (version "1.4.1") - (source - (origin - (method url-fetch) - (uri (string-append - "mirror://xorg/X11R7.7/src/everything/libAppleWM-" - version - ".tar.bz2")) - (sha256 - (base32 - "0r8x28n45q89x91mz8mv0zkkcxi8wazkac886fyvflhiv2y8ap2y")))) - (build-system gnu-build-system) - (inputs - `(("xextproto" ,xextproto) - ("libxext" ,libxext) - ("libx11" ,libx11) - ("applewmproto" ,applewmproto) - ("pkg-config" ,pkg-config))) - (home-page "http://www.x.org/wiki/") - (synopsis "xorg implementation of the X Window System") - (description "X.org provides an implementation of the X Window System") - (license license:x11))) +;; requires applewmproto, which compiles only on macos +;; (define-public libapplewm +;; (package +;; (name "libapplewm") +;; (version "1.4.1") +;; (source +;; (origin +;; (method url-fetch) +;; (uri (string-append +;; "mirror://xorg/X11R7.7/src/everything/libAppleWM-" +;; version +;; ".tar.bz2")) +;; (sha256 +;; (base32 +;; "0r8x28n45q89x91mz8mv0zkkcxi8wazkac886fyvflhiv2y8ap2y")))) +;; (build-system gnu-build-system) +;; (inputs +;; `(("xextproto" ,xextproto) +;; ("libxext" ,libxext) +;; ("libx11" ,libx11) +;; ("applewmproto" ,applewmproto) +;; ("pkg-config" ,pkg-config))) +;; (home-page "http://www.x.org/wiki/") +;; (synopsis "xorg implementation of the X Window System") +;; (description "X.org provides an implementation of the X Window System") +;; (license license:x11))) (define-public libdmx |