Format flake.nix

This commit is contained in:
notgne2 2020-11-14 20:06:56 -07:00
parent 9a9d9b5c3e
commit a5d4390606
No known key found for this signature in database
GPG Key ID: BB661E172B42A7F8

View File

@ -34,17 +34,18 @@
program = "${self.defaultPackage."${system}"}/bin/deploy";
};
devShell = let
inherit (self.packages.${system}) deploy-rs;
in
pkgs.mkShell {
inherit (deploy-rs)
nativeBuildInputs
builtDependencies;
devShell =
let
inherit (self.packages.${system}) deploy-rs;
in
pkgs.mkShell {
inherit (deploy-rs)
nativeBuildInputs
builtDependencies;
buildInputs = deploy-rs.buildInputs
++ [ pkgs.nixUnstable ];
};
buildInputs = deploy-rs.buildInputs
++ [ pkgs.nixUnstable ];
};
lib = rec {
setActivate = base: activate: pkgs.buildEnv {