Do not introduce timestamps in PNG files (for icons). See . --- awesome-3.4.15/CMakeLists.txt 2013-02-11 14:50:21.000000000 +0100 +++ awesome-3.4.15/CMakeLists.txt 2016-06-16 13:59:30.528125439 +0200 @@ -295,7 +295,7 @@ macro(a_icon_convert match replacement i set(ALL_ICONS ${ALL_ICONS} ${output}) add_custom_command( - COMMAND ${CONVERT_EXECUTABLE} ${input} -strip ${ARGN} ${output} + COMMAND ${CONVERT_EXECUTABLE} +set date:create +set date:modify -define png:exclude-chunk=time ${input} -strip ${ARGN} ${output} OUTPUT ${output} DEPENDS ${input} VERBATIM) s.form.submit();'> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/simh.scm
AgeCommit message (Expand)Author
2024-08-31gnu: simh: Import the correct set of modules....* gnu/packages/simh.scm (simh) [arguments] <modules>: Replace %default-gnu-imported-modules with %default-gnu-modules. Change-Id: I11a5cd3619ada3a280e990741b513f6c20a1713a Maxim Cournoyer
2024-08-31build-systems: gnu: Export %default-gnu-imported-modules and %default-gnu-mod......Until now users would have to cargo cult or inspect the private %default-modules variable of (guix build-systems gnu) to discover which modules to include when extending the used modules via the #:modules argument. The renaming was automated via the command: $ git grep -l %gnu-build-system-modules | xargs sed 's/%gnu-build-system-modules/%default-gnu-imported-modules/' -i * guix/build-system/gnu.scm (%gnu-build-system-modules): Rename to... (%default-gnu-imported-modules): ... this. (%default-modules): Rename to... (%default-gnu-modules): ... this. Export. (dist-package, gnu-build, gnu-cross-build): Adjust accordingly. Change-Id: Idef307fff13cb76f3182d782b26e1cd3a5c757ee Maxim Cournoyer