clan-infra/pkgs/clan-merge/flake-module.nix

12 lines
278 B
Nix
Raw Normal View History

2023-07-26 09:17:26 +00:00
{
perSystem = { pkgs, ... }:
let
package = pkgs.callPackage ./default.nix { inherit pkgs; };
in
{
packages.clan-merge = package;
checks.clan-merge = package.tests.check;
devShells.clan-merge = import ./shell.nix { inherit pkgs; };
};
}