Created
December 15, 2017 17:00
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
packageOverrides = pkgs: with pkgs; | |
let in rec { | |
custom-pinentry = pinentry.override { gtk2 = null; qt4 = null; ncurses = null; }; | |
custom-youtube-dl = python27Packages.youtube-dl.override { pandoc = null; }; | |
default = buildEnv { | |
name = "default"; | |
ignoreCollisions = true; | |
paths = [ | |
aria | |
aspell | |
aspellDicts.en | |
cabal-install | |
cacert | |
clang | |
clang-analyzer | |
cloc | |
cscope | |
ctags | |
curl | |
custom-pinentry | |
custom-youtube-dl | |
diffutils | |
docbook5 | |
duply | |
emacs | |
entr | |
gdbm | |
ghostscript | |
gist | |
gitAndTools.git-extras | |
gitAndTools.gitFull | |
glib | |
gmp | |
gnumake | |
gnupg | |
gnupg1compat | |
gnutar | |
gnutls | |
graphviz-nox | |
haskellPackages.ShellCheck | |
haskellPackages.ghc-mod | |
haskellPackages.hasktags | |
haskellPackages.hindent | |
haskellPackages.hspec | |
# haskellPackages.idris | |
haskellPackages.pandoc | |
htop | |
imagemagick | |
iperf | |
jq | |
keychain | |
lastpass-cli | |
less | |
llvm | |
mercurial | |
moreutils | |
mosh | |
mr | |
multitail | |
munge | |
openssl | |
p7zip | |
patchutils | |
pbzip2 | |
pigz | |
pixz | |
pkgconfig | |
pv | |
python27Packages.flake8 | |
python27Packages.howdoi | |
python27Packages.pip | |
python27Packages.pyflakes | |
python27Packages.pylint | |
python27Packages.virtualenv | |
rlwrap | |
rsync | |
rtags | |
silver-searcher | |
sloccount | |
sshpass | |
stack | |
texlive.combined.scheme-full | |
tmux | |
tree | |
unzip | |
upx | |
wakelan | |
watch | |
wget | |
xz | |
# If I ever come up with some linux only stuff or figure out xhyve | |
# ] ++ stdenv.lib.optionals stdenv.isLinux [ | |
] ++ stdenv.lib.optionals stdenv.isDarwin [ | |
vagrant | |
# xhyve | |
]; | |
}; | |
}; | |
allowUnfree = true; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment