mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
chcase: init at 2.3.0
This commit is contained in:
parent
fe9582f018
commit
f881b6ad23
1 changed files with 38 additions and 0 deletions
38
pkgs/by-name/ch/chcase/package.nix
Normal file
38
pkgs/by-name/ch/chcase/package.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
})
|
Loading…
Add table
Add a link
Reference in a new issue