Skip to content

Commit

Permalink
fixup! [#45] Use flake update instead of flake lock --update-input
Browse files Browse the repository at this point in the history
  • Loading branch information
alexd1971 committed Aug 29, 2024
1 parent 6a102ef commit b0bc826
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
inputs = {
flake-compat.flake = false;
naersk.url = "github:nix-community/naersk";
nix.url = "github:nixpkgs/nix";
};

outputs = { self, nixpkgs, flake-utils, serokell-nix, naersk, ... }:
outputs = { self, nixpkgs, flake-utils, serokell-nix, naersk, nix, ... }:
flake-utils.lib.eachSystem [ "x86_64-linux" ] (system:
let
pkgs = nixpkgs.legacyPackages.${system}.extend serokell-nix.overlay;
naersk' = pkgs.callPackage naersk {};
nix = pkgs.nix;

update-daemon = naersk'.buildPackage {
src = builtins.path {
Expand Down

0 comments on commit b0bc826

Please sign in to comment.