feat(pkg/h-m-m): add (for tim)

This commit is contained in:
Malte Tammena 2024-10-29 20:53:20 +01:00
parent fb56d091b5
commit d05ae51506

22
pkgs/h-m-m.nix Normal file
View file

@ -0,0 +1,22 @@
{
writeShellApplication,
fetchFromGitHub,
php,
...
}: let
src = fetchFromGitHub {
owner = "nadrad";
repo = "h-m-m";
rev = "3b028e8";
hash = "sha256-u/V2+Wjtq91/vmZoEgorPyO1/mRHQprJUucRyVSpuws=";
};
in
writeShellApplication {
name = "h-m-m";
runtimeInputs = [
php
];
text = ''
php ${src}/h-m-m "$@"
'';
}