microfetch/flake.nix
NotAShelf f0809ce877
Some checks are pending
Rust / build (push) Waiting to run
nix package
2024-08-04 01:14:17 +03:00

18 lines
443 B
Nix

{
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 {};
});
};
}