Created
March 30, 2015 10:58
-
-
Save miguel-negrao/8234ad179274e7657e2a to your computer and use it in GitHub Desktop.
config.nix for vivid
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 : 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