mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 21:21:06 +00:00
95dfa8b8cf
Cuz ew. What could be more ew? Not this really.
Clearly using update-source-version (bash) from a different lang
is better? 😜️
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.
|
|
;
|
|
|
|
}
|