smfh: init at 1

This commit is contained in:
arthsmn
2025-06-14 13:23:31 -03:00
parent 1326fcac62
commit 5fe092dd1e
+30
View File
@@ -0,0 +1,30 @@
{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "smfh";
version = "1.1";
src = fetchFromGitHub {
owner = "feel-co";
repo = "smfh";
tag = finalAttrs.version;
hash = "sha256-/9Ww10kYopxfCNNnNDwENTubs7Wzqlw+O6PJAHNOYQw=";
};
cargoHash = "sha256-MpqbmhjNsE1krs7g3zWSXGxzb4G/A+cz/zxD2Jk2HC8=";
meta = {
description = "Sleek Manifest File Handler";
homepage = "https://github.com/feel-co/smfh";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [
arthsmn
gerg-l
];
mainProgram = "smfh";
};
})