aboutsummaryrefslogtreecommitdiff
path: root/pkgs/webapps/grocy/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/webapps/grocy/default.nix')
-rw-r--r--pkgs/webapps/grocy/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/webapps/grocy/default.nix b/pkgs/webapps/grocy/default.nix
index 3a8e55a..f87f6ec 100644
--- a/pkgs/webapps/grocy/default.nix
+++ b/pkgs/webapps/grocy/default.nix
@@ -1,4 +1,4 @@
1{ varDir ? "/var/lib/grocy", stdenv, callPackage, composerEnv, fetchurl, mylibs, runCommand, git, which, jq }: 1{ varDir ? "/var/lib/grocy", stdenv, callPackage, composerEnv, fetchurl, mylibs, runCommand, git, which, jq, yarn2nix-moretea }:
2let 2let
3 version = "2.6.1-1"; 3 version = "2.6.1-1";
4 packagesource = mylibs.fetchedGithub ./grocy.json; 4 packagesource = mylibs.fetchedGithub ./grocy.json;
@@ -11,7 +11,7 @@ let
11 cp yarn.lock $out/ 11 cp yarn.lock $out/
12 ''; 12 '';
13 }); 13 });
14 yarnModules = mylibs.yarn2nixPackage.mkYarnModules rec { 14 yarnModules = yarn2nix-moretea.mkYarnModules rec {
15 name = "grocy-yarn"; 15 name = "grocy-yarn";
16 pname = name; 16 pname = name;
17 version = version; 17 version = version;
@@ -20,7 +20,7 @@ let
20 yarnNix = ./yarn-packages.nix; 20 yarnNix = ./yarn-packages.nix;
21 pkgConfig = { 21 pkgConfig = {
22 all = { 22 all = {
23 buildInputs = [ git which mylibs.yarn2nixPackage.src ]; 23 buildInputs = [ git which ];
24 }; 24 };
25 }; 25 };
26 }; 26 };