xeals
af57ecdd22
The main script only does a single program, and requires being fed the name. This is a wrapper to get those names.
27 lines
428 B
Nix
27 lines
428 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
let
|
|
inherit (pkgs.stdenv) lib;
|
|
in
|
|
pkgs.mkShell {
|
|
buildInputs = [
|
|
pkgs.bash
|
|
];
|
|
|
|
APPS = lib.mapAttrsToList
|
|
(k: v: v.name)
|
|
{
|
|
inherit (pkgs.jetbrains)
|
|
clion
|
|
datagrip
|
|
goland
|
|
idea-community
|
|
idea-ultimate
|
|
phpstorm
|
|
pycharm-community
|
|
pycharm-professional
|
|
rider
|
|
ruby-mine
|
|
webstorm;
|
|
};
|
|
}
|