File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1- { pkgs ? import ( fetchTarball "https://github.com/NixOS/nixpkgs/archive/7e9b0dff974c89e070da1ad85713ff3c20b0ca97 .tar.gz" ) { } , compiler ? "ghc8104 " } :
1+ { pkgs ? import ( fetchTarball "https://github.com/NixOS/nixpkgs/archive/5c37ad87222cfc1ec36d6cd1364514a9efc2f7f2 .tar.gz" ) { } , compiler ? "ghc8107 " } :
22pkgs . pkgs . haskell . packages . ${ compiler } . callPackage ./haskellings.nix { }
Original file line number Diff line number Diff line change 44} :
55mkDerivation {
66 pname = "haskellings" ;
7- version = "0.9.0 .0" ;
7+ version = "0.9.1 .0" ;
88 src = ./. ;
99 isLibrary = true ;
1010 isExecutable = true ;
Original file line number Diff line number Diff line change 11name : haskellings
2- version : 0.9.0 .0
2+ version : 0.9.1 .0
33github : " MondayMorningHaskell/haskellings"
44license : BSD3
55author : " James Bowen"
Original file line number Diff line number Diff line change 1- { pkgs ? import ( fetchTarball "https://github.com/NixOS/nixpkgs/archive/7e9b0dff974c89e070da1ad85713ff3c20b0ca97 .tar.gz" ) { } , compiler ? "ghc8104 " } :
1+ { pkgs ? import ( fetchTarball "https://github.com/NixOS/nixpkgs/archive/5c37ad87222cfc1ec36d6cd1364514a9efc2f7f2 .tar.gz" ) { } , compiler ? "ghc8107 " } :
22
33pkgs . mkShell {
4- buildInputs = with pkgs ; [
5- haskell . compiler . ghc8104
4+ buildInputs = with pkgs ; [
5+ haskell . compiler . ghc8107
66 which
77 ( import ./default.nix { inherit pkgs compiler ; } )
88 ] ;
99
1010 shellHook = ''
1111 __GHCPATH=$(echo $(which ghc))
12- echo "ghc_path: $__GHCPATH" > config.yaml
12+ echo "ghc_path: $__GHCPATH" > config.yaml
1313 '' ;
1414}
Original file line number Diff line number Diff line change @@ -36,16 +36,16 @@ import System.Environment
3636-- | The GHC version currently used by Haskellings. We use this
3737-- to locate the appropriate GHC executable.
3838ghcVersion :: String
39- ghcVersion = " ghc-8.10.4 "
39+ ghcVersion = " ghc-8.10.7 "
4040
4141-- | The version number, isolated from any prefix. Also helps in
4242-- finding certain directories.
4343ghcVersionNumber :: String
44- ghcVersionNumber = " 8.10.4 "
44+ ghcVersionNumber = " 8.10.7 "
4545
4646-- | The current Haskellings program version.
4747haskellingsVersion :: String
48- haskellingsVersion = " 0.9.0 .0"
48+ haskellingsVersion = " 0.9.1 .0"
4949
5050-- | The project root directory name. We need to find the project root
5151-- in order to locate the exercises.
You can’t perform that action at this time.
0 commit comments