gnu: mediasdk: Build reproducibly.

* gnu/packages/video.scm (mediasdk)[arguments]: Add #:phases.  Convert to gexp
while at it.
This commit is contained in:
Marius Bakke 2022-08-11 18:34:25 +02:00
parent 73e0c84d1f
commit 6550130108
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -352,17 +352,26 @@ (define-public mediasdk
(base32 "18mrqringyv1drswm4m8ppw7sks6x4jzp6s0ag0h9hrpd15kn5rx"))))
(build-system cmake-build-system)
(arguments
`(#:configure-flags
(list
"-DENABLE_X11=ON"
"-DENABLE_X11_DRI3=ON"
"-DENABLE_WAYLAND=ON"
"-DENABLE_TEXTLOG=ON"
"-DENABLE_STAT=ON"
"-DBUILD_TESTS=ON"
"-DBUILD_TOOLS=ON"
(string-append "-DCMAKE_EXE_LINKER_FLAGS=-Wl,-rpath="
(assoc-ref %outputs "out") "/lib"))))
(list
#:configure-flags
#~(list
"-DENABLE_X11=ON"
"-DENABLE_X11_DRI3=ON"
"-DENABLE_WAYLAND=ON"
"-DENABLE_TEXTLOG=ON"
"-DENABLE_STAT=ON"
"-DBUILD_TESTS=ON"
"-DBUILD_TOOLS=ON"
(string-append "-DCMAKE_EXE_LINKER_FLAGS=-Wl,-rpath="
#$output "/lib"))
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'do-not-embed-kernel-version
(lambda _
(substitute* "builder/FindGlobals.cmake"
(("set\\([[:blank:]]+?BUILD_INFO \"\\$\\{CMAKE_SYSTEM\\}\
\\$\\{CMAKE_SYSTEM_VERSION\\}")
"set( BUILD_INFO \"Linux")))))))
(native-inputs
(list pkg-config python-wrapper))
(inputs