aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/desktops/pantheon/nixpkgs_github_update/shell.nix
blob: 0bb4e58a6a127074790eac9c87d00ddd5881aab6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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.
  ;

}