first flake output test

This commit is contained in:
2024-11-01 00:21:45 -06:00
parent bd50a7ce71
commit aa0e9490be
21 changed files with 3273 additions and 0 deletions

17
pkgs/download.nix Normal file
View File

@@ -0,0 +1,17 @@
{ pkgs, ... }:
with pkgs;
python3Packages.buildPythonApplication {
pname = "download";
version = "2.6";
src = ../nix/download/.;
build-system = with python3Packages; [ setuptools ];
dependencies = with python3Packages; [
pyyaml
types-pyyaml
];
propagatedBuildInputs = [
gallery-dl
ffmpeg
python3Packages.yt-dlp
];
}