mirror of
https://github.com/status-im/status-react.git
synced 2025-01-09 10:42:53 +00:00
Jakub Sokołowski
1f7fd17ff1
This way the name of the repo makes at least some sense and matches the `status-desktop` repo naming. Also updated `status-jenkins-lib` since it also contained references to `status-react` repo and job names. Signed-off-by: Jakub Sokołowski <jakub@status.im>
11 lines
330 B
Nix
11 lines
330 B
Nix
{ lib, yarn2nix-moretea }:
|
|
|
|
# Create a yarn package for our project that contains all the dependecies.
|
|
yarn2nix-moretea.mkYarnModules rec {
|
|
pname = "status-mobile";
|
|
name = "${pname}-node-deps-${version}";
|
|
version = lib.fileContents ../../../VERSION;
|
|
yarnLock = ../../../yarn.lock;
|
|
packageJSON = ../../../package.json;
|
|
}
|