Skip to content

Instantly share code, notes, and snippets.

@miguel-negrao
Created March 30, 2015 10:58
Show Gist options
  • Save miguel-negrao/8234ad179274e7657e2a to your computer and use it in GitHub Desktop.
Save miguel-negrao/8234ad179274e7657e2a to your computer and use it in GitHub Desktop.
config.nix for vivid
{
packageOverrides = pkgs : rec {
haskellngPackages = pkgs.haskellngPackages.override {
overrides = self: super: rec {
vividNew = self.callPackage ./haskell/vivid-0.1.0.3.nix {};
};
};
ihaskell-with-packages = pkgs.callPackage ./haskell/ng-wrapper.nix {
inherit (pkgs.pythonPackages) ipython;
inherit (haskellngPackages) ihaskell ghcWithPackages;
packages = pkgs: with pkgs; [cabal-install hoogle vividNew];
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment