.files/nix/packages/by-name/hutils/package.nix
2025-09-04 00:35:05 +08:00

19 lines
449 B
Nix

{
haskellPackages,
haskell,
fetchFromGitea,
}: let
inherit (haskell.lib.compose) justStaticExecutables;
drv =
haskellPackages.callCabal2nix "hutils"
(fetchFromGitea {
domain = "git.confusedcompiler.org";
owner = "leana8959";
repo = "hutils";
rev = "904af10296c72535e4c32efb23904d117468f146";
hash = "sha256-h5ZSVT+6PK62iDB8goC6tlDBb9IW7vDdKUU9l+I6ZwM=";
})
{};
in
justStaticExecutables drv