Try using nixpkgs...

This commit is contained in:
2024-01-27 11:19:33 -08:00
parent 91233f71aa
commit 251d405d3a
2 changed files with 6 additions and 7 deletions
+2 -4
View File
@@ -9,14 +9,12 @@
outputs = { self, gomod2nix, nixpkgs, utils, ... }:
utils.lib.eachDefaultSystem (system:
let
inherit (gomod2nix.legacyPackages."${system}") buildGoApplication;
inherit (nixpkgs) lib;
let inherit (gomod2nix.legacyPackages."${system}") buildGoApplication;
in {
packages = rec {
default = google-photo-uploader;
google-photo-uploader = import ./google-photo-uploader.nix {
inherit lib buildGoApplication;
inherit nixpkgs buildGoApplication;
};
};
});