hb-downloader/flake.nix

14 lines
404 B
Nix
Raw Normal View History

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