Skip to content

Commit

Permalink
Test with newer versions of dependencies
Browse files Browse the repository at this point in the history
These aren't yet in nixpkgs.
  • Loading branch information
acowley committed May 13, 2016
1 parent 43993f7 commit 735135a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,15 @@ let

haskellPackages = if compiler == "default"
then pkgs.haskellPackages
else pkgs.haskell.packages.${compiler};
else if compiler == "mine"
then pkgs.myHaskellPackages.override {
overrides = self: super: {
OpenGLRaw = self.callPackage ./OpenGLRaw-3.2.0.0 {};
GLURaw = self.callPackage ./GLURaw-2.0.0.2 {};
OpenGL = self.callPackage ./OpenGL-3.0.1.0 {};
};
}
else pkgs.haskell.packages.${compiler};

drv = haskellPackages.callPackage f {};

Expand Down

0 comments on commit 735135a

Please sign in to comment.