21 lines
414 B
Nix
21 lines
414 B
Nix
{ stdenvNoCC, lib
|
|
, allLocales ? null
|
|
, locales ? null
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "locale-archive-stub";
|
|
version = "0";
|
|
|
|
buildCommand = ''
|
|
mkdir -p "$out/lib/locale"
|
|
touch "$out/lib/locale/locale-archive"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "locale-archive stub";
|
|
license = licenses.cc0;
|
|
maintainers = with maintainers; [ mvs ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|