diff options
| author | Danny Milosavljevic <dannym@scratchpost.org> | 2019-03-14 11:50:06 +0100 |
|---|---|---|
| committer | Danny Milosavljevic <dannym@scratchpost.org> | 2019-03-14 16:47:19 +0100 |
| commit | 625697ea609385b596903f34997dee56d1f7997f (patch) | |
| tree | 689ba024e5554fd2bf05f5b14d62aa9b66732917 | |
| parent | 50bc1d0125641f29fb15da3b264353b5df0dff8b (diff) | |
gnu: lxqt-about: Make it more reproducible.
* gnu/packages/lxqt.scm (lxqt-about)[arguments]<#:phases>[setenv]: New phase.
| -rw-r--r-- | gnu/packages/lxqt.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/lxqt.scm b/gnu/packages/lxqt.scm index c8e3a104f..4c00b2a61 100644 --- a/gnu/packages/lxqt.scm +++ b/gnu/packages/lxqt.scm @@ -288,6 +288,10 @@ and memory usage or network traffic.") '(#:tests? #f ; no tests #:phases (modify-phases %standard-phases + (add-before 'build 'setenv + (lambda _ + (setenv "QT_RCC_SOURCE_DATE_OVERRIDE" "1") + #t)) (add-after 'unpack 'patch-translations-dir (lambda* (#:key outputs #:allow-other-keys) (substitute* "CMakeLists.txt" |