-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
18a1a71
commit 6fa5f39
Showing
26 changed files
with
387 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,5 @@ | |
result | ||
dist | ||
dist-newstyle | ||
bellroy-application | ||
mercury-interview |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,20 @@ | ||
let | ||
pkgs = import ../pkgs.nix; | ||
in import "${pkgs.ihaskell}/release.nix" { | ||
compiler = "ghc928"; | ||
nixpkgs = import pkgs.nixpkgs {}; | ||
overlay = sel: sup: { | ||
nix-filter = import pkgs.nix-filter; | ||
haskell = sup.haskell // { | ||
packages = sup.haskell.packages // { | ||
ghc948 = sup.haskell.packages.ghc948.override { | ||
overrides = self: super: { | ||
ghc-syntax-highlighter = self.ghc-syntax-highlighter_0_0_10_0; | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; | ||
nixpkgs = (import pkgs.nixpkgs { overlays = [ overlay ]; }); | ||
jupyterlab = nixpkgs.python3.withPackages (ps: [ ps.jupyterlab ps.notebook ]); | ||
in nixpkgs.callPackage "${pkgs.ihaskell}/nix/release.nix" { compiler = "ghc948"; }{ | ||
extraEnvironmentBinaries = [jupyterlab]; | ||
packages = self: with self; []; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,21 @@ | ||
let | ||
pkgs = import ../pkgs.nix; | ||
in import "${pkgs.ihaskell}/release.nix" { | ||
nixpkgs = import pkgs.nixpkgs {}; | ||
compiler = "ghc928"; | ||
overlay = sel: sup: { | ||
nix-filter = import pkgs.nix-filter; | ||
haskell = sup.haskell // { | ||
packages = sup.haskell.packages // { | ||
ghc948 = sup.haskell.packages.ghc948.override { | ||
overrides = self: super: { | ||
ghc-syntax-highlighter = self.ghc-syntax-highlighter_0_0_10_0; | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; | ||
nixpkgs = (import pkgs.nixpkgs { overlays = [ overlay ]; }); | ||
jupyterlab = nixpkgs.python3.withPackages (ps: [ ps.jupyterlab ps.notebook ]); | ||
in nixpkgs.callPackage "${pkgs.ihaskell}/nix/release.nix" { compiler = "ghc948"; }{ | ||
extraEnvironmentBinaries = [jupyterlab]; | ||
packages = self: with self; [ ihaskell-aeson ihaskell-blaze ihaskell-charts ihaskell-diagrams ]; | ||
systemPackages = self: with self; [ graphviz ]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,20 @@ | ||
let | ||
pkgs = import ../pkgs.nix; | ||
in import "${pkgs.ihaskell}/release.nix" { | ||
compiler = "ghc928"; | ||
nixpkgs = import pkgs.nixpkgs {}; | ||
overlay = sel: sup: { | ||
nix-filter = import pkgs.nix-filter; | ||
haskell = sup.haskell // { | ||
packages = sup.haskell.packages // { | ||
ghc948 = sup.haskell.packages.ghc948.override { | ||
overrides = self: super: { | ||
ghc-syntax-highlighter = self.ghc-syntax-highlighter_0_0_10_0; | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; | ||
nixpkgs = (import pkgs.nixpkgs { overlays = [ overlay ]; }); | ||
jupyterlab = nixpkgs.python3.withPackages (ps: [ ps.jupyterlab ps.notebook ]); | ||
in nixpkgs.callPackage "${pkgs.ihaskell}/nix/release.nix" { compiler = "ghc948"; }{ | ||
extraEnvironmentBinaries = [jupyterlab]; | ||
packages = self: with self; []; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,20 @@ | ||
let | ||
pkgs = import ../pkgs.nix; | ||
in import "${pkgs.ihaskell}/release.nix" { | ||
nixpkgs = import pkgs.nixpkgs {}; | ||
compiler = "ghc928"; | ||
packages = self: with self; [ ihaskell-widgets ]; | ||
overlay = sel: sup: { | ||
nix-filter = import pkgs.nix-filter; | ||
haskell = sup.haskell // { | ||
packages = sup.haskell.packages // { | ||
ghc948 = sup.haskell.packages.ghc948.override { | ||
overrides = self: super: { | ||
ghc-syntax-highlighter = self.ghc-syntax-highlighter_0_0_10_0; | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; | ||
nixpkgs = (import pkgs.nixpkgs { overlays = [ overlay ]; }); | ||
jupyterlab = nixpkgs.python3.withPackages (ps: [ ps.jupyterlab ps.notebook ]); | ||
in nixpkgs.callPackage "${pkgs.ihaskell}/nix/release.nix" { compiler = "ghc948"; }{ | ||
extraEnvironmentBinaries = [jupyterlab]; | ||
packages = self: with self; []; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,20 @@ | ||
let | ||
pkgs = import ../pkgs.nix; | ||
rise = import ../rise.nix; | ||
in import "${pkgs.ihaskell}/release.nix" { | ||
nixpkgs = import pkgs.nixpkgs {}; | ||
compiler = "ghc928"; | ||
overlay = sel: sup: { | ||
nix-filter = import pkgs.nix-filter; | ||
haskell = sup.haskell // { | ||
packages = sup.haskell.packages // { | ||
ghc948 = sup.haskell.packages.ghc948.override { | ||
overrides = self: super: { | ||
ghc-syntax-highlighter = self.ghc-syntax-highlighter_0_0_10_0; | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; | ||
nixpkgs = (import pkgs.nixpkgs { overlays = [ overlay ]; }); | ||
jupyterlab = nixpkgs.python3.withPackages (ps: [ ps.jupyterlab ps.notebook ]); | ||
in nixpkgs.callPackage "${pkgs.ihaskell}/nix/release.nix" { compiler = "ghc948"; }{ | ||
extraEnvironmentBinaries = [jupyterlab]; | ||
packages = self: with self; []; | ||
pythonPackages = p: [ (rise p) ]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,20 @@ | ||
let | ||
pkgs = import ../pkgs.nix; | ||
in import "${pkgs.ihaskell}/release.nix" { | ||
nixpkgs = import pkgs.nixpkgs {}; | ||
compiler = "ghc928"; | ||
overlay = sel: sup: { | ||
nix-filter = import pkgs.nix-filter; | ||
haskell = sup.haskell // { | ||
packages = sup.haskell.packages // { | ||
ghc948 = sup.haskell.packages.ghc948.override { | ||
overrides = self: super: { | ||
ghc-syntax-highlighter = self.ghc-syntax-highlighter_0_0_10_0; | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; | ||
nixpkgs = (import pkgs.nixpkgs { overlays = [ overlay ]; }); | ||
jupyterlab = nixpkgs.python3.withPackages (ps: [ ps.jupyterlab ps.notebook ]); | ||
in nixpkgs.callPackage "${pkgs.ihaskell}/nix/release.nix" { compiler = "ghc948"; }{ | ||
extraEnvironmentBinaries = [jupyterlab]; | ||
packages = self: with self; []; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,20 @@ | ||
let | ||
pkgs = import ../pkgs.nix; | ||
in import "${pkgs.ihaskell}/release.nix" { | ||
compiler = "ghc928"; | ||
nixpkgs = import pkgs.nixpkgs {}; | ||
overlay = sel: sup: { | ||
nix-filter = import pkgs.nix-filter; | ||
haskell = sup.haskell // { | ||
packages = sup.haskell.packages // { | ||
ghc948 = sup.haskell.packages.ghc948.override { | ||
overrides = self: super: { | ||
ghc-syntax-highlighter = self.ghc-syntax-highlighter_0_0_10_0; | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; | ||
nixpkgs = (import pkgs.nixpkgs { overlays = [ overlay ]; }); | ||
jupyterlab = nixpkgs.python3.withPackages (ps: [ ps.jupyterlab ps.notebook ]); | ||
in nixpkgs.callPackage "${pkgs.ihaskell}/nix/release.nix" { compiler = "ghc948"; }{ | ||
extraEnvironmentBinaries = [jupyterlab]; | ||
packages = self: with self; [ timeit ]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,21 @@ | ||
let | ||
pkgs = import ../pkgs.nix; | ||
in import "${pkgs.ihaskell}/release.nix" { | ||
compiler = "ghc928"; | ||
nixpkgs = import pkgs.nixpkgs {}; | ||
overlay = sel: sup: { | ||
nix-filter = import pkgs.nix-filter; | ||
haskell = sup.haskell // { | ||
packages = sup.haskell.packages // { | ||
ghc948 = sup.haskell.packages.ghc948.override { | ||
overrides = self: super: { | ||
ghc-syntax-highlighter = self.ghc-syntax-highlighter_0_0_10_0; | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; | ||
nixpkgs = (import pkgs.nixpkgs { overlays = [ overlay ]; }); | ||
jupyterlab = nixpkgs.python3.withPackages (ps: [ ps.jupyterlab ps.notebook ]); | ||
in nixpkgs.callPackage "${pkgs.ihaskell}/nix/release.nix" { compiler = "ghc948"; }{ | ||
extraEnvironmentBinaries = [ jupyterlab ]; | ||
packages = self: with self; [ here ihaskell-graphviz ]; | ||
systemPackages = self: with self; [ graphviz ]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,21 @@ | ||
let | ||
pkgs = import ../pkgs.nix; | ||
in import "${pkgs.ihaskell}/release.nix" { | ||
compiler = "ghc928"; | ||
nixpkgs = import pkgs.nixpkgs {}; | ||
overlay = sel: sup: { | ||
nix-filter = import pkgs.nix-filter; | ||
haskell = sup.haskell // { | ||
packages = sup.haskell.packages // { | ||
ghc948 = sup.haskell.packages.ghc948.override { | ||
overrides = self: super: { | ||
ghc-syntax-highlighter = self.ghc-syntax-highlighter_0_0_10_0; | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; | ||
nixpkgs = (import pkgs.nixpkgs { overlays = [ overlay ]; }); | ||
jupyterlab = nixpkgs.python3.withPackages (ps: [ ps.jupyterlab ps.notebook ]); | ||
in nixpkgs.callPackage "${pkgs.ihaskell}/nix/release.nix" { compiler = "ghc948"; }{ | ||
extraEnvironmentBinaries = [jupyterlab]; | ||
packages = self: with self; [ bytestring memory pretty-show timeit vector here ihaskell-graphviz ]; | ||
systemPackages = self: with self; [ graphviz ]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,20 @@ | ||
let | ||
pkgs = import ../pkgs.nix; | ||
in import "${pkgs.ihaskell}/release.nix" { | ||
nixpkgs = import pkgs.nixpkgs {}; | ||
compiler = "ghc902"; | ||
overlay = sel: sup: { | ||
nix-filter = import pkgs.nix-filter; | ||
haskell = sup.haskell // { | ||
packages = sup.haskell.packages // { | ||
ghc948 = sup.haskell.packages.ghc948.override { | ||
overrides = self: super: { | ||
ghc-syntax-highlighter = self.ghc-syntax-highlighter_0_0_10_0; | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; | ||
nixpkgs = (import pkgs.nixpkgs { overlays = [ overlay ]; }); | ||
jupyterlab = nixpkgs.python3.withPackages (ps: [ ps.jupyterlab ps.notebook ]); | ||
in nixpkgs.callPackage "${pkgs.ihaskell}/nix/release.nix" { compiler = "ghc948"; }{ | ||
extraEnvironmentBinaries = [ jupyterlab ]; | ||
packages = self: with self; [ validation ]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,20 @@ | ||
let | ||
pkgs = import ../pkgs.nix; | ||
in import "${pkgs.ihaskell}/release.nix" { | ||
compiler = "ghc928"; | ||
nixpkgs = import pkgs.nixpkgs {}; | ||
overlay = sel: sup: { | ||
nix-filter = import pkgs.nix-filter; | ||
haskell = sup.haskell // { | ||
packages = sup.haskell.packages // { | ||
ghc948 = sup.haskell.packages.ghc948.override { | ||
overrides = self: super: { | ||
ghc-syntax-highlighter = self.ghc-syntax-highlighter_0_0_10_0; | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; | ||
nixpkgs = (import pkgs.nixpkgs { overlays = [ overlay ]; }); | ||
jupyterlab = nixpkgs.python3.withPackages (ps: [ ps.jupyterlab ps.notebook ]); | ||
in nixpkgs.callPackage "${pkgs.ihaskell}/nix/release.nix" { compiler = "ghc948"; }{ | ||
extraEnvironmentBinaries = [ jupyterlab ]; | ||
packages = self: with self; [ pretty-show ]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,20 @@ | ||
let | ||
pkgs = import ../pkgs.nix; | ||
in import "${pkgs.ihaskell}/release.nix" { | ||
compiler = "ghc928"; | ||
nixpkgs = import pkgs.nixpkgs {}; | ||
overlay = sel: sup: { | ||
nix-filter = import pkgs.nix-filter; | ||
haskell = sup.haskell // { | ||
packages = sup.haskell.packages // { | ||
ghc948 = sup.haskell.packages.ghc948.override { | ||
overrides = self: super: { | ||
ghc-syntax-highlighter = self.ghc-syntax-highlighter_0_0_10_0; | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; | ||
nixpkgs = (import pkgs.nixpkgs { overlays = [ overlay ]; }); | ||
jupyterlab = nixpkgs.python3.withPackages (ps: [ ps.jupyterlab ps.notebook ]); | ||
in nixpkgs.callPackage "${pkgs.ihaskell}/nix/release.nix" { compiler = "ghc948"; }{ | ||
packages = self: with self; [ containers transformers vector ]; | ||
extraEnvironmentBinaries = [jupyterlab]; | ||
} |
Oops, something went wrong.