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

13 lines
282 B
Nix
Raw Permalink Normal View History

2023-07-26 09:17:26 +00:00
{
2024-06-06 15:52:20 +00:00
perSystem =
{ pkgs, ... }:
2023-07-26 09:17:26 +00:00
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; };
};
}