mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
19 lines
348 B
Nix
19 lines
348 B
Nix
{pkgs ? import <nixpkgs> {}}: let
|
|
pythonPackages = p:
|
|
with p; [
|
|
guessit
|
|
];
|
|
in
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
nodejs-16_x
|
|
nodePackages.yarn
|
|
(with dotnetCorePackages;
|
|
combinePackages [
|
|
sdk_6_0
|
|
aspnetcore_6_0
|
|
])
|
|
(python3.withPackages pythonPackages)
|
|
];
|
|
}
|