unicode-character-database: do not include env-vars

Including env-vars in output breaks reproducibility
This commit is contained in:
Dee Anzorge 2023-12-07 02:43:50 +01:00
parent f996d87185
commit 687f42d64b

View file

@ -1,9 +1,9 @@
{ lib, stdenv { lib, stdenvNoCC
, fetchurl , fetchurl
, unzip , unzip
}: }:
stdenv.mkDerivation rec { stdenvNoCC.mkDerivation rec {
pname = "unicode-character-database"; pname = "unicode-character-database";
version = "15.1.0"; version = "15.1.0";
@ -23,6 +23,7 @@ stdenv.mkDerivation rec {
mkdir -p $out/share/unicode mkdir -p $out/share/unicode
cp -r * $out/share/unicode cp -r * $out/share/unicode
rm $out/share/unicode/env-vars
runHook postInstall runHook postInstall
''; '';