nixos/custom-pkgs/sl/default.nix
2025-09-13 17:54:28 +02:00

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;
}