mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: mpv: Enable shared library support.
* gnu/packages/video.scm (mpv): Enable shared library support. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
9d5448f35f
commit
6cf83e3f83
1 changed files with 2 additions and 1 deletions
|
@ -7,6 +7,7 @@
|
||||||
;;; Copyright © 2015 Andy Patterson <ajpatter@uwaterloo.ca>
|
;;; Copyright © 2015 Andy Patterson <ajpatter@uwaterloo.ca>
|
||||||
;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2015 Alex Vong <alexvong1995@gmail.com>
|
;;; Copyright © 2015 Alex Vong <alexvong1995@gmail.com>
|
||||||
|
;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -818,7 +819,7 @@ (define-public mpv
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(copy-file (assoc-ref inputs "waf") "waf")
|
(copy-file (assoc-ref inputs "waf") "waf")
|
||||||
(setenv "CC" "gcc"))))
|
(setenv "CC" "gcc"))))
|
||||||
#:configure-flags (list "--enable-zsh-comp")
|
#:configure-flags (list "--enable-libmpv-shared" "--enable-zsh-comp")
|
||||||
;; No check function defined.
|
;; No check function defined.
|
||||||
#:tests? #f))
|
#:tests? #f))
|
||||||
(home-page "https://mpv.io/")
|
(home-page "https://mpv.io/")
|
||||||
|
|
Loading…
Reference in a new issue