nix-packages/flake.nix

20 lines
454 B
Nix
Raw Normal View History

2022-11-04 12:43:39 +01:00
{
description = "h7x4s WIP packages that has not been added to nixpkgs (yet?)";
inputs.nixpkgs.url = "nixpkgs/nixos-22.05";
outputs = { self, nixpkgs, ... }: let
# I don't have any other systems to test on yet...
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
inherit (pkgs) lib;
in {
overlays.default = new: old: old // self.packages.${system};
packages.${system} = {};
hydraJobs = {};
};
}