pankomacs/flake.nix

44 lines
1.1 KiB
Nix
Raw Normal View History

2024-07-17 04:09:08 +01:00
{
description = "Pankomacs";
2024-07-17 04:09:08 +01:00
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
emacs = {
url = "github:nix-community/emacs-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs:
inputs.parts.lib.mkFlake { inherit inputs; } {
systems = [
"x86_64-linux"
];
2024-07-17 04:09:08 +01:00
flake = {
2024-07-20 22:34:32 +01:00
overlays.default = final: _prev: {
pankomacs = final.callPackage ./package { };
};
2024-07-17 04:09:08 +01:00
};
2024-07-17 04:09:08 +01:00
perSystem = { pkgs, self', config, system, ... }: {
_module.args.pkgs = import inputs.nixpkgs {
inherit system;
overlays = [
inputs.emacs.overlays.default
inputs.self.overlays.default
];
};
2024-07-17 04:09:08 +01:00
packages.pankomacs = pkgs.pankomacs;
packages.default = self'.packages.pankomacs;
apps.pankomacs.program = "${self'.packages.pankomacs}/bin/emacs";
apps.default = config.apps.pankomacs;
2024-07-17 04:09:08 +01:00
formatter = pkgs.nixpkgs-fmt;
2024-07-17 04:09:08 +01:00
};
};
}