pdf-replace/shell.nix

9 lines
106 B
Nix
Raw Normal View History

2024-01-23 14:15:27 +01:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.python3
pkgs.poetry
];
}