diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-04-02 14:15:55 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-04-02 14:15:55 +0200 |
commit | 33aa7e5c92daffce2f09639eb57cb995754fbd6b (patch) | |
tree | 42bd2da310e34e06f3739437c44f899a05220822 /nixops/modules/buildbot | |
parent | 7f6bd78f988381187bc1a75397dd332ef54263e9 (diff) | |
download | Nix-33aa7e5c92daffce2f09639eb57cb995754fbd6b.tar.gz Nix-33aa7e5c92daffce2f09639eb57cb995754fbd6b.tar.zst Nix-33aa7e5c92daffce2f09639eb57cb995754fbd6b.zip |
Migrate yarn2nix to external repository
Diffstat (limited to 'nixops/modules/buildbot')
-rw-r--r-- | nixops/modules/buildbot/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/nixops/modules/buildbot/default.nix b/nixops/modules/buildbot/default.nix index c670b7d..ff1c697 100644 --- a/nixops/modules/buildbot/default.nix +++ b/nixops/modules/buildbot/default.nix | |||
@@ -2,8 +2,10 @@ | |||
2 | let | 2 | let |
3 | varDir = "/var/lib/buildbot"; | 3 | varDir = "/var/lib/buildbot"; |
4 | buildslist_src = mylibs.fetchedGitPrivate ./buildslist.json; | 4 | buildslist_src = mylibs.fetchedGitPrivate ./buildslist.json; |
5 | buildslist_yarn = pkgs.yarn2nix.mkYarnModules { | 5 | buildslist_yarn = mylibs.yarn2nixPackage.mkYarnModules rec { |
6 | name = "buildslist-yarn-modules"; | 6 | name = "buildslist-yarn-modules"; |
7 | pname = name; | ||
8 | inherit (pkgs.buildbot-pkg) version; | ||
7 | packageJSON = "${buildslist_src.src}/package.json"; | 9 | packageJSON = "${buildslist_src.src}/package.json"; |
8 | yarnLock = "${buildslist_src.src}/yarn.lock"; | 10 | yarnLock = "${buildslist_src.src}/yarn.lock"; |
9 | }; | 11 | }; |