32 lines
708 B
Nix
32 lines
708 B
Nix
|
{ stdenv
|
||
|
, fetchFromGitHub
|
||
|
, gettext
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "cinnamon-translations";
|
||
|
version = "4.4.0";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "linuxmint";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
sha256 = "0hh6shfj7vc1mw814l38cakfmh135ba8j604h1rmx4zwspwgvgzh";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
gettext
|
||
|
];
|
||
|
|
||
|
installPhase = ''
|
||
|
mv usr $out # files get installed like so: msgfmt -o usr/share/locale/$lang/LC_MESSAGES/$dir.mo $file
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = "https://github.com/linuxmint/cinnamon-translations";
|
||
|
description = "Translations files for the Cinnamon desktop";
|
||
|
platforms = platforms.linux;
|
||
|
maintainers = [ maintainers.mkg20001 ];
|
||
|
};
|
||
|
}
|