study-docker-repro-longevity/flake.nix
Quentin Guilloteau 46b7d349c3 Add POC for using nickel as a configuration lang
The `check.ncl` file contains the commands what we could use directly from snakemake to validate the configs and generate the json/yaml for ecg
2024-07-11 16:05:08 +02:00

28 lines
590 B
Nix

{
description = "Flake study docker longevity";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/24.05";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShells = {
default = pkgs.mkShell {
packages = with pkgs; [
nickel
(python3.withPackages (ps: with ps; [
requests
pyyaml
]))
];
};
};
});
}