mirror of
				https://github.com/NotAShelf/microfetch.git
				synced 2025-11-03 23:32:19 +00:00 
			
		
		
		
	
		
			Some checks failed
		
		
	
	Rust / build (push) Has been cancelled
				
			...and alias default package to it. I like this convention better
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			618 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			22 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 {};
 | 
						|
    });
 | 
						|
  };
 | 
						|
}
 |