nix: migrate from deprecated attributes
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
b6a9c7e6a4
commit
007994e0a2
12
flake.nix
12
flake.nix
|
@ -36,6 +36,8 @@
|
|||
in
|
||||
rec {
|
||||
apps = {
|
||||
default = apps.matrix-notifier;
|
||||
|
||||
matrix-notifier =
|
||||
futils.lib.mkApp { drv = packages.matrix-notifier; };
|
||||
};
|
||||
|
@ -56,11 +58,8 @@
|
|||
};
|
||||
};
|
||||
|
||||
defaultApp = apps.matrix-notifier;
|
||||
|
||||
defaultPackage = packages.matrix-notifier;
|
||||
|
||||
devShell = pkgs.mkShell {
|
||||
devShells = {
|
||||
default = pkgs.mkShell {
|
||||
name = "matrix-notifier";
|
||||
|
||||
inputsFrom = with self.packages.${system}; [
|
||||
|
@ -69,8 +68,11 @@
|
|||
|
||||
inherit (self.checks.${system}.pre-commit) shellHook;
|
||||
};
|
||||
};
|
||||
|
||||
packages = {
|
||||
default = packages.matrix-notifier;
|
||||
|
||||
matrix-notifier = pkgs.stdenvNoCC.mkDerivation rec {
|
||||
pname = "matrix-notifier";
|
||||
version = "0.2.0";
|
||||
|
|
Loading…
Reference in a new issue