Skip to content

Instantly share code, notes, and snippets.

@bluescreen303
Created January 12, 2012 22:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bluescreen303/1603644 to your computer and use it in GitHub Desktop.
Save bluescreen303/1603644 to your computer and use it in GitHub Desktop.
~/.nixpkgs/config.nix
{
packageOverrides = pkgs:
let
haskell = pkgs.haskellPackages_ghc704;
hiPrio = pkgs.lib.hiPrio;
in
rec {
mathijs = pkgs.buildEnv {
name = "mathijs";
paths = [ haskell.haskellPlatform # _2011_2_0_1
haskell.uhc
haskell.ghcMod
pkgs.unison
pkgs.nodejs
pkgs.auctexWithPreview
pkgs.emacs
pkgs.emacs23Packages.haskellMode
pkgs.dejavu_fonts
pkgs.jruby165
pkgs.MPlayer
hiPrio (pkgs.texLive)
pkgs.texLiveBeamer
pkgs.texLiveExtra
];
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment