File tree 2 files changed +30
-2
lines changed
2 files changed +30
-2
lines changed Original file line number Diff line number Diff line change 3
3
nixpkgs . url = "github:nixos/nixpkgs/nixpkgs-unstable" ;
4
4
flake-parts . url = "github:hercules-ci/flake-parts" ;
5
5
haskell-flake . url = "github:srid/haskell-flake" ;
6
+ rerefined . url = "github:raehik/rerefined" ;
7
+ rerefined . flake = false ;
6
8
} ;
7
9
outputs = inputs :
8
10
let
24
26
devShells . default = self' . devShells . ghc98 ;
25
27
haskellProjects . ghc910 = {
26
28
basePackages = pkgs . haskell . packages . ghc910 ;
29
+ devShell = defDevShell "ghc910" ;
27
30
packages . finite-typelits . source = "0.2.1.0" ;
28
31
packages . vector-sized . source = "1.6.1" ;
29
32
settings . defun-core . jailbreak = true ;
30
- devShell = defDevShell "ghc910" ;
33
+
34
+ # waiting on nixpkgs
35
+ packages . rerefined . source = inputs . rerefined ;
31
36
} ;
32
37
haskellProjects . ghc98 = {
33
38
basePackages = pkgs . haskell . packages . ghc98 ;
34
39
devShell = defDevShell "ghc98" ;
40
+
41
+ # waiting on nixpkgs
42
+ packages . rerefined . source = inputs . rerefined ;
35
43
} ;
36
44
haskellProjects . ghc96 = {
37
45
basePackages = pkgs . haskell . packages . ghc96 ;
38
46
devShell = defDevShell "ghc96" ;
47
+
48
+ # waiting on nixpkgs
49
+ packages . rerefined . source = inputs . rerefined ;
39
50
} ;
40
51
} ;
41
52
} ;
You can’t perform that action at this time.
0 commit comments