mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
gnu: Add x86-video-armada-novena.
* gnu/packages/xorg.scm (x86-video-armada-novena): New variable. Change-Id: I7617b61724cc788479f707f05398096b69fcfe17
This commit is contained in:
parent
b03b1465c8
commit
013cc1952a
1 changed files with 45 additions and 0 deletions
|
|
@ -2771,6 +2771,51 @@ X server.")
|
|||
"xf86-video-ark is an Ark Logic video driver for the Xorg X server.")
|
||||
(license license:x11)))
|
||||
|
||||
(define-public xf86-video-armada-novena
|
||||
(package
|
||||
(name "xf86-video-armada-novena")
|
||||
(version "1.0.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/novena-next/xf86-video-armada.git")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"01h27ck9s9rxyi9n8v9lqpd9aacln0w5pd5zlfgj740060q3wf30"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
(list #:configure-flags
|
||||
#~(list "--disable-vivante" "--disable-etnaviv"
|
||||
(string-append "--with-etnaviv-source="
|
||||
(assoc-ref %build-inputs "etna-viv")))
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(replace 'bootstrap
|
||||
(lambda _
|
||||
(mkdir "m4")
|
||||
(invoke "autoreconf" "--install"))))))
|
||||
(inputs
|
||||
(list xorg-server libdrm-armada-novena))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)
|
||||
("automake" ,automake)
|
||||
("autoconf" ,autoconf)
|
||||
("libtool" ,libtool)
|
||||
("etna-viv" ,(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/laanwj/etna_viv.git")
|
||||
(commit "d4c87f61bdcd15f98d4bdbea8c34788bb71fbad9")))
|
||||
(sha256
|
||||
(base32
|
||||
"0qfzwsmcq1lcwng707vlfql8nnkqqyhspfydxpfs03gn8w0l2cm2"))))))
|
||||
(synopsis "Xorg driver for Freescale i.MX6")
|
||||
(description "This package provides Xorg support for Freescale i.MX6.")
|
||||
(home-page "https://github.com/novena-next/xf86-video-armada")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public xf86-video-ast
|
||||
(package
|
||||
(name "xf86-video-ast")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue