dream2nix/tests/pure/other/default.nix
2021-11-18 12:09:14 +07:00

22 lines
355 B
Nix

{
lib ? pkgs.lib,
pkgs ? import <nixpkgs> {},
dream2nix ? import ./src { inherit pkgs; },
}:
let
l = pkgs.lib // builtins;
fetchAggrgatedGithub =
dream2nix.utils.toDrv
(dream2nix.fetchSources {
dreamLock = ./prettier-github-aggregated.json;
}).fetchedSources.prettier."2.4.1";
in
{
inherit fetchAggrgatedGithub;
}