fix example for haskell

This commit is contained in:
DavHau 2022-06-03 15:13:51 +02:00
parent 8836a3f422
commit 30401cbc9d
2 changed files with 4 additions and 9 deletions

View File

@ -9,14 +9,11 @@
self,
dream2nix,
src,
} @ inp: let
dream2nix = inp.dream2nix.lib2.init {
systems = ["x86_64-linux"];
config.projectRoot = ./.;
};
in
(dream2nix.makeFlakeOutputs {
} @ inp:
(dream2nix.lib.makeFlakeOutputs {
pkgs = dream2nix.inputs.nixpkgs.legacyPackages.x86_64-linux;
source = src;
config.projectRoot = ./.;
settings = [
{
subsystemInfo.noDev = true;

View File

@ -129,8 +129,6 @@ in {
snapshotYamlFile = builtins.fetchurl {
url = snapshotEntry.completed.url;
sha256 = snapshotEntry.completed.sha256;
# This is a plain text file, therefore enable http compression
curlOpts = "--compressed";
};
snapshot = haskellUtils.fromYaml snapshotYamlFile;