ed90e59fc2
Includes the following upstream commits: - Fix for package.json without a version (moretea/yarn2nix#113) - Don't access package.json via filtered src (moretea/yarn2nix#115) - remove redundant rec (moretea/yarn2nix#119)
11 lines
267 B
Nix
11 lines
267 B
Nix
{ pkgs ? (import ../../../../. {})
|
|
, fetchFromGitHub ? pkgs.fetchFromGitHub
|
|
}:
|
|
|
|
fetchFromGitHub {
|
|
owner = "moretea";
|
|
repo = "yarn2nix";
|
|
rev = "9e7279edde2a4e0f5ec04c53f5cd64440a27a1ae";
|
|
sha256 = "0zz2lrwn3y3rb8gzaiwxgz02dvy3s552zc70zvfqc0zh5dhydgn7";
|
|
}
|