chcase: init at 2.3.0

This commit is contained in:
emaryn 2025-05-03 08:19:02 +08:00
parent fe9582f018
commit f881b6ad23

View file

@ -0,0 +1,38 @@
{
lib,
stdenv,
fetchFromGitHub,
meson,
ninja,
vala,
pkg-config,
blueprint-compiler,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "chcase";
version = "2.3.0";
src = fetchFromGitHub {
owner = "ryonakano";
repo = "chcase";
tag = finalAttrs.version;
hash = "sha256-3TuAnuWV3Sm1T76Go4NWe2eA55ImR1TFYoCUnqfp9DE=";
};
nativeBuildInputs = [
meson
ninja
vala
pkg-config
blueprint-compiler
];
meta = {
homepage = "https://github.com/ryonakano/chcase";
description = "Small library to convert case of a given string";
license = lib.licenses.lgpl3Plus;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ emaryn ];
};
})