study-docker-repro-longevity/flake.nix

29 lines
608 B
Nix
Raw Normal View History

2024-07-09 18:36:38 +02:00
{
description = "Flake study docker longevity";
inputs = {
2024-07-11 13:35:54 +02:00
nixpkgs.url = "github:nixos/nixpkgs/23.11";
2024-07-09 18:36:38 +02:00
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; [
2024-07-11 13:35:54 +02:00
snakemake
gawk
nickel
2024-07-09 18:36:38 +02:00
(python3.withPackages (ps: with ps; [
requests
]))
];
};
};
});
}