xrfragment-haxe/doc/shell.nix

24 lines
515 B
Nix
Raw Normal View History

{ pkgs ? import <nixos-unstable> {} } :
{
2023-08-31 12:40:41 +02:00
pkgs = import (builtins.fetchGit {
name = "nixos-23.05";
url = "https://github.com/nixos/nixpkgs/";
ref = "refs/heads/nixos-unstable";
rev = "ef99fa5c5ed624460217c31ac4271cfb5cb2502c";
});
foo = pkgs.mkShell {
2023-08-31 12:40:41 +02:00
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs.buildPackages; [
mmark
xml2rfc
python312Packages.lxml
wkhtmltopdf-bin
2024-02-08 19:40:43 +01:00
imagemagick
2023-08-31 12:40:41 +02:00
];
};
2023-08-31 12:40:41 +02:00
}