package properly

This commit is contained in:
xunuwu 2025-05-20 18:45:38 +02:00
parent f9b9b05683
commit b5e68df877
Signed by: xun
SSH key fingerprint: SHA256:Uot/1WoAjWAeqLOHA5vYy4phhVydsH7jCPmBjaPZfgI
6 changed files with 1655 additions and 0 deletions

13
flake.nix Normal file
View file

@ -0,0 +1,13 @@
{
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
inputs.flake-parts.url = "github:hercules-ci/flake-parts";
outputs = {flake-parts, ...} @ inputs:
flake-parts.lib.mkFlake {inherit inputs;} {
systems = ["x86_64-linux"];
perSystem = {pkgs, ...}: {
packages.default = pkgs.callPackage ./default.nix {};
};
};
}