xrfragment/shell.nix

12 lines
213 B
Nix
Raw Normal View History

2023-08-04 09:11:26 +02:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs.buildPackages; [
mmark
xml2rfc
2023-08-04 09:11:26 +02:00
];
}