Add shell.nix

This commit is contained in:
2024-01-13 00:53:21 +01:00
parent 5ea5d94a5f
commit 4169713b0b

8
shell.nix Normal file
View File

@@ -0,0 +1,8 @@
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
packages = with pkgs; [
go
mediainfo
libmediainfo
];
}