.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 = "25875a28ddf425ad8aa1fad5a7c10575ae2d7cb5";
hash = "sha256-8AZ4qk1zlP4GRd6uFyiAt/a3REv8FOuBkCfoB6CK1VE=";
})
{};
in
justStaticExecutables drv