mirror of
https://codeberg.org/leana8959/.files.git
synced 2026-02-01 22:49:41 +00:00
colors and helpful output remove Justfile build manage as a package add manage as a precompiled tool to installer
10 lines
182 B
Nix
10 lines
182 B
Nix
{
|
|
haskellPackages,
|
|
haskell,
|
|
}:
|
|
let
|
|
inherit (haskell.lib.compose) justStaticExecutables;
|
|
|
|
drv = haskellPackages.callCabal2nix "manage" ./src { };
|
|
in
|
|
justStaticExecutables drv
|