Files
nu-ffmpeg/flake.nix
2024-02-03 22:57:33 -05:00

23 lines
431 B
Nix

{
description = "Utility commands for working with video files in nushell";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs }:
let
pkgs = nixpkgs.legacyPackages.x86_64-linux;
in
{
devShells.x86_64-linux.default = pkgs.mkShell {
packages = with pkgs; [
ffmpeg
gomplate
nushellFull
];
};
};
}