mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-20 04:52:15 +03:00
25 lines
309 B
Nix
25 lines
309 B
Nix
{
|
|
lib,
|
|
|
|
# dream2nix
|
|
apps,
|
|
utils,
|
|
...
|
|
}:
|
|
let
|
|
|
|
l = lib // builtins;
|
|
|
|
cli = apps.cli.program;
|
|
|
|
in
|
|
utils.writePureShellScript
|
|
[]
|
|
''
|
|
${cli} add github:BurntSushi/ripgrep/13.0.0 \
|
|
--no-default-nix \
|
|
--translator cargo-lock \
|
|
--arg packageName="ripgrep" \
|
|
--attribute-name ripgrep
|
|
''
|