move all nix expressions to pkgs

This commit is contained in:
Jörg Thalheim 2022-05-15 07:48:48 +02:00
parent 0c20c6257b
commit 150afcb240
No known key found for this signature in database
6 changed files with 48 additions and 34 deletions

View file

@ -40,7 +40,7 @@
nixpkgs.legacyPackages.${system}.callPackage ./shell.nix {}
);
devShells = forAllSystems (system: {
unit-tests = nixpkgs.legacyPackages.${system}.callPackage ./unit-tests.nix {};
unit-tests = nixpkgs.legacyPackages.${system}.callPackage ./pkgs/unit-tests.nix {};
});
};
}