summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorDominic Steinitz <dominic@steinitz.org>2018-04-03 12:16:41 +0100
committerDominic Steinitz <dominic@steinitz.org>2018-04-03 12:16:41 +0100
commit1622bf09e12b8df74f1303cfa2e0c4bc461c3350 (patch)
tree04dbe63c059057d250ee10bfcfe922051fdf8243 /shell.nix
parenta0f9a95d11bb59376d8facdb8ab14117f754088d (diff)
Use nix rather than ubuntu for CI
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 []);