Merge pull request #272585 from DeeUnderscore/misc/ucd-repro

unicode-character-database: do not include env-vars
This commit is contained in:
Pol Dellaiera 2024-02-09 11:41:09 +01:00 committed by GitHub
commit 27575f4f60
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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