mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 22:59:15 +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 = "00e57124dce1492631c1f3324a2b973fd1f7463b";
|
|
hash = "sha256-smyvd41E6PkOBegKhuYTRby6SC68as4pZr6fgzAci/Y=";
|
|
})
|
|
{};
|
|
in
|
|
justStaticExecutables drv
|