Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
31 lines
629 B
Nix
31 lines
629 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "smfh";
|
|
version = "1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "feel-co";
|
|
repo = "smfh";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-LxLu578DRp1l3ekybZ+g6zNbvt27rOx7wORP9ch5O2c=";
|
|
};
|
|
|
|
cargoHash = "sha256-DOE0Bs09TRP7fUqzB0mdylFc1vYsRjcz9chrQG79ajg=";
|
|
|
|
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";
|
|
};
|
|
})
|