astc-encoder: patch files to use a fixed build year
The build year is included in the help output. See the discussion in #162133.
This commit is contained in:
parent
158c26ff77
commit
80f8c65283
1 changed files with 6 additions and 0 deletions
|
@ -46,6 +46,12 @@ gccStdenv.mkDerivation rec {
|
||||||
"-DCMAKE_BUILD_TYPE=Release"
|
"-DCMAKE_BUILD_TYPE=Release"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# Set a fixed build year to display within help output (otherwise, it would be 1980)
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace Source/cmake_core.cmake \
|
||||||
|
--replace 'string(TIMESTAMP astcencoder_YEAR "%Y")' 'set(astcencoder_YEAR "2022")'
|
||||||
|
'';
|
||||||
|
|
||||||
# Link binaries into environment and provide 'astcenc' link
|
# Link binaries into environment and provide 'astcenc' link
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
mv $out/astcenc $out/bin
|
mv $out/astcenc $out/bin
|
||||||
|
|
Loading…
Reference in a new issue