hb-downloader/flake.nix

17 lines
468 B
Nix
Raw Normal View History

2024-03-07 19:48:00 +01:00
{
description = "hb-downloader";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.x86_64-linux.default = ( import ./shell.nix { inherit pkgs; });
2024-03-07 21:18:14 +01:00
packages.x86_64-linux.default = ( import ./default.nix { inherit pkgs; });
2024-03-07 19:48:00 +01:00
};
}