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
71 lines
1.4 KiB
Nix
71 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
rustPlatform,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
rustc,
|
|
cargo,
|
|
wrapGAppsHook4,
|
|
desktop-file-utils,
|
|
libadwaita,
|
|
gst_all_1,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "kana";
|
|
version = "1.4";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.gnome.org";
|
|
owner = "fkinoshita";
|
|
repo = "Kana";
|
|
rev = "v${version}";
|
|
hash = "sha256-/Ri723ub8LMlhbPObC83bay63JuWIQpgxAT5UUYuwZI=";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.fetchCargoVendor {
|
|
inherit src;
|
|
name = "kana-${version}";
|
|
hash = "sha256-3ODkAstBZQE3eqGmRUdm3xyCoBXV41hK4ndxeDK8+Yc=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
rustPlatform.cargoSetupHook
|
|
rustc
|
|
cargo
|
|
wrapGAppsHook4
|
|
desktop-file-utils
|
|
];
|
|
|
|
buildInputs = [
|
|
libadwaita
|
|
]
|
|
++ (with gst_all_1; [
|
|
gstreamer
|
|
gst-plugins-base
|
|
gst-plugins-bad
|
|
gst-plugins-good
|
|
]);
|
|
|
|
# Workaround for the gettext-sys issue
|
|
# https://github.com/Koka/gettext-rs/issues/114
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString (
|
|
stdenv.cc.isClang && lib.versionAtLeast stdenv.cc.version "16"
|
|
) "-Wno-error=incompatible-function-pointer-types";
|
|
|
|
meta = with lib; {
|
|
description = "Learn Japanese hiragana and katakana characters";
|
|
homepage = "https://gitlab.gnome.org/fkinoshita/kana";
|
|
license = licenses.gpl3Plus;
|
|
mainProgram = "kana";
|
|
maintainers = with maintainers; [ aleksana ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|