mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-22 16:38:09 +01:00
97 lines
3.8 KiB
Scheme
97 lines
3.8 KiB
Scheme
|
;;; GNU Guix --- Functional package management for GNU
|
||
|
;;; Copyright © 2019 Pierre Neidhardt <mail@ambrevar.xyz>
|
||
|
;;;
|
||
|
;;; This file is not part of GNU Guix.
|
||
|
;;;
|
||
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
||
|
;;; under the terms of the GNU General Public License as published by
|
||
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
||
|
;;; your option) any later version.
|
||
|
;;;
|
||
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
||
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
;;; GNU General Public License for more details.
|
||
|
;;;
|
||
|
;;; You should have received a copy of the GNU General Public License
|
||
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
||
|
(define-module (nongnu packages game-development)
|
||
|
#:use-module (ice-9 match)
|
||
|
#:use-module ((nonguix licenses) :prefix license:)
|
||
|
#:use-module (guix packages)
|
||
|
#:use-module (nonguix build-system binary)
|
||
|
#:use-module (guix download)
|
||
|
#:use-module (gnu packages base)
|
||
|
#:use-module (gnu packages gcc)
|
||
|
#:use-module (gnu packages gl)
|
||
|
#:use-module (gnu packages xorg))
|
||
|
|
||
|
(define-public nvidia-cg-toolkit
|
||
|
(let ((arch (match (or (%current-target-system)
|
||
|
(%current-system))
|
||
|
("x86_64-linux" "x86_64")
|
||
|
("i686-linux" "x86")
|
||
|
(_ "")))
|
||
|
(lib (match (or (%current-target-system)
|
||
|
(%current-system))
|
||
|
("x86_64-linux" "lib64")
|
||
|
("i686-linux" "lib")
|
||
|
(_ "")))
|
||
|
(date "April2012"))
|
||
|
(package
|
||
|
(name "nvidia-cg-toolkit")
|
||
|
(version "3.1")
|
||
|
(source (origin
|
||
|
(method url-fetch)
|
||
|
(uri
|
||
|
(string-append "http://developer.download.nvidia.com/cg/Cg_"
|
||
|
version "/Cg-" version "_" date "_" arch ".tgz"))
|
||
|
(sha256
|
||
|
(base32
|
||
|
"0y4qms4lm9xiix93g45337rx5nrp0y3gb0x0avyv7l9qrkk03zz8"))))
|
||
|
(build-system binary-build-system)
|
||
|
(arguments
|
||
|
`(#:strip-binaries? #f ; Fails with "allocated section `.dynstr' not in segment".
|
||
|
#:patchelf-plan
|
||
|
`(("bin/cgc"
|
||
|
("glibc" "out"))
|
||
|
("bin/cginfo"
|
||
|
("gcc:lib" "glibc"))
|
||
|
("bin/cgfxcat"
|
||
|
("out" "glibc" "glu" "mesa" "libice" "libsm"
|
||
|
"libxmu" "libxt" "libxi" "libxext" "libx11"))
|
||
|
("lib64/libCg.so"
|
||
|
("glibc"))
|
||
|
("lib64/libCgGL.so"
|
||
|
("out" "glibc")))
|
||
|
#:install-plan
|
||
|
`(("bin" (".") "bin/")
|
||
|
(,,lib (".") "lib/")
|
||
|
("include" (".") "include/")
|
||
|
("local" (".") "share/"))))
|
||
|
(inputs
|
||
|
`(("gcc:lib" ,gcc "lib")
|
||
|
("glibc" ,glibc)
|
||
|
("glu" ,glu)
|
||
|
("libice" ,libice)
|
||
|
("libsm" ,libsm)
|
||
|
("libxmu" ,libxmu)
|
||
|
("libxt" ,libxt)
|
||
|
("libxi" ,libxi)
|
||
|
("libxext" ,libxext)
|
||
|
("libx11" ,libx11)))
|
||
|
(home-page "https://developer.nvidia.com/cg-toolkit")
|
||
|
(synopsis "High-level shading language")
|
||
|
(description "NVIDIA introduced programmable shading with Cg, which
|
||
|
supported dozens of different OpenGL and DirectX profile targets. It allowed
|
||
|
developers to incorporate interactive effects within 3D applications and share
|
||
|
them among other Cg applications, across graphics APIs, and most operating
|
||
|
systems as well as balance effect complexities with client GPU capabilities.
|
||
|
|
||
|
The Cg Toolkit is a legacy NVIDIA toolkit no longer under active development
|
||
|
or support. It is not recommended using it in new development projects
|
||
|
because future hardware features may not be supported. Going forward, new
|
||
|
development should opt for GLSL rather than Cg.")
|
||
|
(license (license:nonfree "file://share/Cg/docs/license.txt")))))
|