.files/nix/packages/by-name/hutils/package.nix
2025-08-07 13:29:16 +02: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 = "6c869618619a6659f9402405053d9d486bd0958c";
hash = "sha256-EoVnRBIj/9z9YzW9fPf3Ix0l4fA2v4qwijjt3QZsy6M=";
})
{};
in
justStaticExecutables drv