nix package
Some checks are pending
Rust / build (push) Waiting to run

This commit is contained in:
raf 2024-08-04 01:14:17 +03:00
commit f0809ce877
Signed by: NotAShelf
GPG key ID: AF26552424E53993
4 changed files with 70 additions and 0 deletions

17
flake.nix Normal file
View file

@ -0,0 +1,17 @@
{
description = "A microscopic fetch script in Rust, for NixOS systems";
inputs.nixpkgs.url = "github:NixOS/nixpkgs";
outputs = {
self,
nixpkgs,
}: let
systems = ["x86_64-linux" "aarch64-linux"];
forEachSystem = nixpkgs.lib.genAttrs systems;
pkgsForEach = nixpkgs.legacyPackages;
in {
packages = forEachSystem (system: {
default = pkgsForEach.${system}.callPackage ./nix/package.nix {};
});
};
}