# Software that I do not like, since it is more complicated than it
# really must be, and has brain-damaged dependency tree, yet
# I did not found any substitute that would fit universe.
{ callPackage, buildEnv, keepassxc, slock }:
let
firefox = callPackage ./firefox { };
runx = callPackage ./runx { inherit firefox; };
in buildEnv {
name = "concession";
paths = [ runx keepassxc slock firefox ];
}