summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/shell.nix b/shell.nix
index 9566524..056cd5d 100644
--- a/shell.nix
+++ b/shell.nix
@@ -32,7 +32,7 @@ let
32 inherit (nixpkgs) pkgs; 32 inherit (nixpkgs) pkgs;
33 33
34f = { mkDerivation, ad, base, diagrams-lib, diagrams-rasterific, gcc 34f = { mkDerivation, ad, base, diagrams-lib, diagrams-rasterific, gcc
35 , hmatrix, hmatrix-gsl, inline-c, plots, pretty, stdenv, sundials, vector }: 35 , hmatrix, hmatrix-gsl, HUnit, inline-c, plots, pretty, QuickCheck, stdenv, sundials, vector }:
36 36
37mkDerivation { 37mkDerivation {
38 pname = "haskell-sundials"; 38 pname = "haskell-sundials";
@@ -48,8 +48,10 @@ mkDerivation {
48 gcc 48 gcc
49 hmatrix 49 hmatrix
50 hmatrix-gsl 50 hmatrix-gsl
51 HUnit
51 inline-c 52 inline-c
52 plots 53 plots
54 QuickCheck
53 pretty 55 pretty
54 vector 56 vector
55 ] ++ (if pkgs.stdenv.isDarwin then [pkgs.darwin.apple_sdk.frameworks.Cocoa] else []); 57 ] ++ (if pkgs.stdenv.isDarwin then [pkgs.darwin.apple_sdk.frameworks.Cocoa] else []);