Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add std flake and tullia #625

Merged
merged 4 commits into from
Dec 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 15 additions & 9 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,30 @@
, system ? builtins.currentSystem

, haskellNix ? import
(builtins.fetchTarball
"https://github.com/input-output-hk/haskell.nix/archive/0.0.64.tar.gz")
{ }
(builtins.fetchTarball {
url = "https://github.com/input-output-hk/haskell.nix/archive/0.0.64.tar.gz";
sha256 = "0mply6n3gym8r7z4l7512phw667qzwfqkfl1zmiyrdjpdg7xqn1d";
dermetfan marked this conversation as resolved.
Show resolved Hide resolved
})
{ pkgs = import nixpkgsSrc { inherit system; }; }
ffakenz marked this conversation as resolved.
Show resolved Hide resolved

, iohkNix ? import
(builtins.fetchTarball
"https://github.com/input-output-hk/iohk-nix/archive/d31417fe8c8fbfb697b3ad4c498e17eb046874b9.tar.gz")
(builtins.fetchTarball {
url = "https://github.com/input-output-hk/iohk-nix/archive/d31417fe8c8fbfb697b3ad4c498e17eb046874b9.tar.gz";
sha256 = "0w562wdmdhp83dw9rabiijj5hk1f4l8p8f3bwlr7virakgbg8lf8";
})
{ }

# NOTE: use the 'repo' branch of CHaP which contains the index
, CHaP ? (builtins.fetchTarball
"https://github.com/input-output-hk/cardano-haskell-packages/archive/695c91a740abfeef0860056227c605abf6375edd.tar.gz")
, CHaP ? (builtins.fetchTarball {
url = "https://github.com/input-output-hk/cardano-haskell-packages/archive/695c91a740abfeef0860056227c605abf6375edd.tar.gz";
sha256 = "05dffxjxap6ncfs7x4lpp85cm7pvls0b10idpyshm4lqlrz5v92p";
})

# nixpkgs-unstable as also used by cardano-node, cardano-ledger et al
, nixpkgsSrc ? haskellNix.sources.nixpkgs-unstable
, nixpkgsSrc ? iohkNix.nixpkgs
}:
let
pkgs = import nixpkgsSrc (haskellNix.nixpkgsArgs // {
inherit system;
overlays =
# Haskell.nix (https://github.com/input-output-hk/haskell.nix)
haskellNix.overlays
Expand Down
Loading