16 lines
381 B
Nix
16 lines
381 B
Nix
|
{
|
||
|
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; });
|
||
|
};
|
||
|
}
|