mirror of
https://github.com/NotAShelf/microfetch.git
synced 2024-11-01 14:51:14 +00:00
NotAShelf
64ac7a6ef3
Some checks failed
Rust / build (push) Has been cancelled
...and alias default package to it. I like this convention better
23 lines
618 B
Nix
23 lines
618 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 = self.packages.${system}.microfetch;
|
|
microfetch = pkgsForEach.${system}.callPackage ./nix/package.nix {};
|
|
});
|
|
|
|
devShells = forEachSystem (system: {
|
|
default = pkgsForEach.${system}.callPackage ./nix/shell.nix {};
|
|
});
|
|
};
|
|
}
|