brainix/sources/nixpkgs/pkgs/desktops/pantheon/nixpkgs_github_update/shell.nix
2026-02-13 17:06:24 +09:00

19 lines
336 B
Nix

with import <nixpkgs> {};
let
inherit (lib) optional;
in
mkShell rec {
name = "nixpkgs-github-update-shell";
buildInputs = [
elixir
erlang
common-updater-scripts
]
++ optional stdenv.isLinux libnotify # For ExUnit Notifier on Linux.
++ optional stdenv.isLinux inotify-tools # For file_system on Linux.
;
}