guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/04: gnu: Add xf86-video-nouveau.


From: Ludovic Courtès
Subject: 02/04: gnu: Add xf86-video-nouveau.
Date: Fri, 06 Feb 2015 12:53:34 +0000

civodul pushed a commit to branch master
in repository guix.

commit 0d5212e8220d1121a8d084e6bc10a35c7efd57d7
Author: Ludovic Courtès <address@hidden>
Date:   Fri Feb 6 13:43:03 2015 +0100

    gnu: Add xf86-video-nouveau.
    
    * gnu/packages/xorg.scm (xf86-video-nouveau): New variable.
---
 gnu/packages/xorg.scm |   34 ++++++++++++++++++++++++++++++++++
 1 files changed, 34 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index 5381dd0..10801fe 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -2,6 +2,7 @@
 ;;; Copyright © 2013, 2014 Andreas Enge <address@hidden>
 ;;; Copyright © 2014, 2015 Mark H Weaver <address@hidden>
 ;;; Copyright © 2014 Eric Bavier <address@hidden>
+;;; Copyright © 2015 Ludovic Courtès <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -22,9 +23,11 @@
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages)
   #:use-module (guix download)
+  #:use-module (guix git-download)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system perl)
   #:use-module (gnu packages)
+  #:use-module (gnu packages autotools)
   #:use-module (gnu packages bison)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages flex)
@@ -2775,6 +2778,37 @@ There are a few caveats of which to be aware: the XVideo 
extension is not
 supported, and the RENDER extension is not accelerated by this driver.")
     (license license:x11)))
 
+(define-public xf86-video-nouveau
+  (package
+    (name "xf86-video-nouveau")
+    (version "1.0.11")
+    (source (origin
+              ;; There are no tarball releases of Nouveau.
+              (method git-fetch)
+              (uri (git-reference
+                    (url 
"git://anongit.freedesktop.org/nouveau/xf86-video-nouveau")
+                    (commit (string-append name "-" version))))
+              (sha256
+               (base32
+                "0zdb6b0n7pzf3l8j8hl7gfshg8jsmcmk11isvvl542yc36162ahp"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:phases (alist-cons-after
+                 'unpack 'bootstrap
+                 (lambda _
+                   (zero? (system* "autoreconf" "-vi")))
+                 %standard-phases)))
+    (inputs `(("xorg-server" ,xorg-server)))
+    (native-inputs `(("pkg-config" ,pkg-config)
+                     ("autoconf" ,(autoconf-wrapper))
+                     ("automake" ,automake)
+                     ("libtool" ,libtool)))
+    (home-page "http://nouveau.freedesktop.org";)
+    (synopsis "NVIDIA video driver for the Xorg X server")
+    (description
+     "This package provides modern, high-quality Xorg drivers for NVIDIA
+graphics cards.")
+    (license license:x11)))
 
 (define-public xf86-video-openchrome
   (package



reply via email to

[Prev in Thread] Current Thread [Next in Thread]