diff options
Diffstat (limited to 'gnu/packages/xorg.scm')
| -rw-r--r-- | gnu/packages/xorg.scm | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index ffe5e81b8e5..698f3d4c913 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm | |||
| @@ -2771,6 +2771,51 @@ X server.") | |||
| 2771 | "xf86-video-ark is an Ark Logic video driver for the Xorg X server.") | 2771 | "xf86-video-ark is an Ark Logic video driver for the Xorg X server.") |
| 2772 | (license license:x11))) | 2772 | (license license:x11))) |
| 2773 | 2773 | ||
| 2774 | (define-public xf86-video-armada-novena | ||
| 2775 | (package | ||
| 2776 | (name "xf86-video-armada-novena") | ||
| 2777 | (version "1.0.0") | ||
| 2778 | (source (origin | ||
| 2779 | (method git-fetch) | ||
| 2780 | (uri (git-reference | ||
| 2781 | (url "https://github.com/novena-next/xf86-video-armada.git") | ||
| 2782 | (commit (string-append "v" version)))) | ||
| 2783 | (file-name (git-file-name name version)) | ||
| 2784 | (sha256 | ||
| 2785 | (base32 | ||
| 2786 | "01h27ck9s9rxyi9n8v9lqpd9aacln0w5pd5zlfgj740060q3wf30")))) | ||
| 2787 | (build-system gnu-build-system) | ||
| 2788 | (arguments | ||
| 2789 | (list #:configure-flags | ||
| 2790 | #~(list "--disable-vivante" "--disable-etnaviv" | ||
| 2791 | (string-append "--with-etnaviv-source=" | ||
| 2792 | (assoc-ref %build-inputs "etna-viv"))) | ||
| 2793 | #:phases | ||
| 2794 | #~(modify-phases %standard-phases | ||
| 2795 | (replace 'bootstrap | ||
| 2796 | (lambda _ | ||
| 2797 | (mkdir "m4") | ||
| 2798 | (invoke "autoreconf" "--install")))))) | ||
| 2799 | (inputs | ||
| 2800 | (list xorg-server libdrm-armada-novena)) | ||
| 2801 | (native-inputs | ||
| 2802 | `(("pkg-config" ,pkg-config) | ||
| 2803 | ("automake" ,automake) | ||
| 2804 | ("autoconf" ,autoconf) | ||
| 2805 | ("libtool" ,libtool) | ||
| 2806 | ("etna-viv" ,(origin | ||
| 2807 | (method git-fetch) | ||
| 2808 | (uri (git-reference | ||
| 2809 | (url "https://github.com/laanwj/etna_viv.git") | ||
| 2810 | (commit "d4c87f61bdcd15f98d4bdbea8c34788bb71fbad9"))) | ||
| 2811 | (sha256 | ||
| 2812 | (base32 | ||
| 2813 | "0qfzwsmcq1lcwng707vlfql8nnkqqyhspfydxpfs03gn8w0l2cm2")))))) | ||
| 2814 | (synopsis "Xorg driver for Freescale i.MX6") | ||
| 2815 | (description "This package provides Xorg support for Freescale i.MX6.") | ||
| 2816 | (home-page "https://github.com/novena-next/xf86-video-armada") | ||
| 2817 | (license license:gpl2))) | ||
| 2818 | |||
| 2774 | (define-public xf86-video-ast | 2819 | (define-public xf86-video-ast |
| 2775 | (package | 2820 | (package |
| 2776 | (name "xf86-video-ast") | 2821 | (name "xf86-video-ast") |
