mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 15:44:20 +00:00
20 lines
336 B
Nix
20 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.
|
||
|
;
|
||
|
|
||
|
}
|