mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
19 lines
449 B
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 = "6b8d142233c829e67ec5dd768547c052f2d8baa0";
|
|
hash = "sha256-4hMj+N64V569kRyvHQNTMFqrkbsC6rcUDwO/cbD/rRg=";
|
|
})
|
|
{};
|
|
in
|
|
justStaticExecutables drv
|