.files/nix/packages/by-name/hutils/package.nix

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 = "557735bad78307c0c8f10aea8c168b0e4dbe8603";
hash = "sha256-eIRIhHodGMhBCENOMbdooFbgneyMcCArIEeiob7dYxE=";
})
{};
in
justStaticExecutables drv