Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
714 B
Nix
Raw Permalink Normal View History

2025-05-03 08:19:02 +08:00
{
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;
2025-07-17 07:59:54 +08:00
maintainers = with lib.maintainers; [ ];
2025-05-03 08:19:02 +08:00
};
})