mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-22 05:51:38 +03:00
22 lines
355 B
Nix
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;
|
|
}
|
|
|