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 = "ee04ec425af81e762362bc2c4bcd5d89ad50ddc8";
|
|
hash = "sha256-e22agWHNftl7zlXnPpzNyE3iJKPHxcE7tH1XRYfG+4Q=";
|
|
})
|
|
{};
|
|
in
|
|
justStaticExecutables drv
|