nixos/kubernetes/kubelet: Fix sandbox image load on containerd 2.x (#364558)
[NixPkgs.git] / pkgs / tools / text / multitran / data / default.nix
blob05f4420e8100ceefccb345170183b2e950f9386b
2   lib,
3   stdenv,
4   fetchurl,
5 }:
7 # This package requires a locale ru_RU.cp1251 locale entry.
8 # Waiting for a better idea, I created it modifying a store file using:
9 #   localedef -f CP1251 -i ru_RU ru_RU.CP1251
10 # The store file mentioned is in "${glibc.out}/lib/locale/locale-archive"
12 stdenv.mkDerivation {
13   pname = "multitran-data";
14   version = "0.3";
16   src = fetchurl {
17     url = "mirror://sourceforge/multitran/multitran-data.tar.bz2";
18     sha256 = "9c2ff5027c2fe72b0cdf056311cd7543f447feb02b455982f20d4a3966b7828c";
19   };
21   patchPhase = ''
22     sed -i -e 's@\$(DESTDIR)/usr@'$out'@' Makefile
23   '';
25   meta = {
26     homepage = "https://multitran.sourceforge.net/";
27     description = "Multitran data english-russian";
28     license = lib.licenses.gpl2Only;
29     platforms = lib.platforms.unix;
30   };