mirror of
https://github.com/Noratrieb/nixos.git
synced 2026-01-14 19:55:08 +01:00
9 lines
252 B
Nix
9 lines
252 B
Nix
{ pkgs, ... }: pkgs.writeShellApplication {
|
|
name = "sl";
|
|
runtimeInputs = with pkgs; [ niri jq ];
|
|
derivationArgs = {
|
|
# shellcheck can't comprehend our amazingly new bash syntax
|
|
checkPhase = null;
|
|
};
|
|
text = builtins.readFile ./sl.sh;
|
|
}
|