Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
32 lines
803 B
Nix
32 lines
803 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
}:
|
|
|
|
# This package requires a locale ru_RU.cp1251 locale entry.
|
|
# Waiting for a better idea, I created it modifying a store file using:
|
|
# localedef -f CP1251 -i ru_RU ru_RU.CP1251
|
|
# The store file mentioned is in "${glibc.out}/lib/locale/locale-archive"
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "multitran-data";
|
|
version = "0.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/multitran/multitran-data.tar.bz2";
|
|
sha256 = "9c2ff5027c2fe72b0cdf056311cd7543f447feb02b455982f20d4a3966b7828c";
|
|
};
|
|
|
|
patchPhase = ''
|
|
sed -i -e 's@\$(DESTDIR)/usr@'$out'@' Makefile
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://multitran.sourceforge.net/";
|
|
description = "Multitran data english-russian";
|
|
license = lib.licenses.gpl2Only;
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|