mirror of
https://github.com/zaphar/durnitisp.git
synced 2025-07-20 17:59:48 -04:00
21 lines
601 B
Nix
21 lines
601 B
Nix
{
|
|
inputs = {
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
naersk.url = "github:nix-community/naersk";
|
|
flake-compat = { url = github:edolstra/flake-compat; flake = false; };
|
|
};
|
|
|
|
outputs = {self, flake-utils, naersk, flake-compat}:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let
|
|
naersk-lib = naersk.lib."${system}";
|
|
in
|
|
{
|
|
defaultPackage = naersk-lib.buildPackage rec {
|
|
pname = "kitchen";
|
|
src = ./.;
|
|
};
|
|
}
|
|
);
|
|
|
|
} |