nix: add package default drv and format

This commit is contained in:
Kevin Baensch 2024-11-25 11:00:49 +01:00
parent c218805f22
commit f178b14e1a
Signed by: derped
GPG key ID: C0F1D326C7626543
2 changed files with 9 additions and 2 deletions

View file

@ -1,4 +1,8 @@
{ buildPythonApplication, zlib, lib }: {
buildPythonApplication,
zlib,
lib,
}:
with lib; with lib;

View file

@ -18,7 +18,10 @@
{ {
# https://github.com/NixOS/rfcs/pull/166 # https://github.com/NixOS/rfcs/pull/166
formatter = pkgs.nixfmt-rfc-style; formatter = pkgs.nixfmt-rfc-style;
packages.fck = pkgs.python311Packages.callPackage ./default.nix { }; packages = rec {
fck = pkgs.python311Packages.callPackage ./default.nix { };
default = fck;
};
} }
); );
} }