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