42bf4475e0
* Update shell and packages * Fix code for 0.15 * Fix tests * Format * Add check-pulp command * Generate bowerfile * Add check-pulp to CI * Add nixfmt to formatting * Fixup test helpers * Take 2 * PR comments (#1) * Nix cleanup from PR * Use arrows functions * Remove unnecessary step Co-authored-by: Connor Prussin <connor@prussin.net>
12 lines
331 B
Nix
12 lines
331 B
Nix
let
|
|
nivSrc = fetchTarball {
|
|
url = "https://github.com/nmattia/niv/tarball/df49d53b71ad5b6b5847b32e5254924d60703c46";
|
|
sha256 = "1j5p8mi1wi3pdcq0lfb881p97i232si07nb605dl92cjwnira88c";
|
|
};
|
|
sources = import "${nivSrc}/nix/sources.nix" {
|
|
sourcesFile = ./sources.json;
|
|
};
|
|
niv = import nivSrc {};
|
|
in
|
|
niv // sources
|