nixpkgs/pkgs/desktops/pantheon/nixpkgs_github_update/shell.nix
worldofpeace 95dfa8b8cf pantheon: no bash update script, nixpkgs_github_update
Cuz ew. What could be more ew? Not this really.
Clearly using update-source-version (bash) from a different lang
is better? 😜
2019-12-22 01:47:42 -05:00

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