This commit is contained in:
Makesesama 2025-05-12 11:18:04 +02:00
parent 0b8190ae8b
commit f28dd0b6a2
3 changed files with 3 additions and 3 deletions

View File

@ -31,8 +31,8 @@
in
{
formatter = pkgs.nixfmt-rfc-style;
devShells.default = pkgs.callPackage ./shell.nix { inherit pkgs; };
packages.default = pkgs.callPackage ./derivation.nix { inherit (pkgs) lib python3Packages; };
devShells.default = pkgs.callPackage ./nix/shell.nix { inherit pkgs; };
packages.default = pkgs.callPackage ./nix/derivation.nix { inherit (pkgs) lib python3Packages; };
apps.default = {
type = "app";
program = "${self.packages.${system}.default}/bin/bar";

View File

@ -20,7 +20,7 @@ python3Packages.buildPythonApplication {
version = "0.0.1";
pyproject = true;
src = ./.;
src = ../.;
nativeBuildInputs = [
wrapGAppsHook3