Created
January 19, 2012 21:22
-
-
Save bluescreen303/1642727 to your computer and use it in GitHub Desktop.
~/.nixpkgs/config.nix
This file contains hidden or 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: | |
let | |
haskell = pkgs.haskellPackages_ghc704; | |
emacs = pkgs.emacs23Packages; | |
lowPrio = pkgs.lib.lowPrio; | |
hiPrio = pkgs.lib.hiPrio; | |
# uhc = haskell.uhc.override {useJSBackend = true; }; | |
uhc = haskell.uhc; # js backend is enabled by default nowadays | |
myTexLive = pkgs.texLiveAggregationFun { | |
paths = [ pkgs.texLive | |
pkgs.texLiveExtra | |
pkgs.texLiveBeamer | |
pkgs.texLiveCMSuper ]; | |
}; | |
in | |
rec { | |
mathijs = pkgs.buildEnv { | |
ignoreCollisions = true; | |
name = "mathijs"; | |
paths = [ haskell.haskellPlatform # _2011_2_0_1 | |
haskell.ghcMod | |
haskell.hlint | |
uhc | |
pkgs.unison | |
pkgs.nodejs | |
pkgs.auctexWithPreview | |
pkgs.emacs | |
emacs.haskellMode | |
emacs.org | |
emacs.emacsw3m | |
pkgs.jruby165 | |
pkgs.MPlayer | |
pkgs.nzbget | |
myTexLive | |
pkgs.jre | |
pkgs.graphviz | |
pkgs.youtubeDL | |
pkgs.aspell | |
pkgs.aspellDicts.en | |
pkgs.aspellDicts.nl | |
pkgs.openssl | |
pkgs.gnutls | |
haskell.lhs2tex | |
pkgs.nginx | |
pkgs.libcap_progs | |
]; | |
}; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment