Package with nix

This commit is contained in:
Sven van Heugten 2026-01-10 19:07:16 +01:00
parent 1ad118c6d8
commit c5088ae218
5 changed files with 219 additions and 3 deletions

20
flake.nix Normal file
View file

@ -0,0 +1,20 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
};
outputs =
{
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
packages.default = pkgs.callPackage ./default.nix { };
}
);
}