mirror of
https://github.com/sbrow/nu-ffmpeg.git
synced 2025-12-29 16:23:11 -05:00
28 lines
508 B
Nix
28 lines
508 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
|
|
{
|
|
formatter.x86_64-linux = pkgs.nixpkgs-fmt;
|
|
|
|
devShells.x86_64-linux.default = pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
ffmpeg
|
|
gomplate
|
|
|
|
hugo
|
|
yarn
|
|
|
|
nushell
|
|
];
|
|
};
|
|
};
|
|
}
|