remarkable-scripts/flake.nix

17 lines
508 B
Nix
Raw Normal View History

2021-06-28 11:17:13 +00:00
{
description = "Useful scripts for users of reMarkable e-ink tablets";
inputs.nixpkgs.url = "github:nixos/nixpkgs?branch=nixpkgs-unstable";
inputs.utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, utils }:
utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in {
devShell = pkgs.mkShell {
buildInputs =
[ (pkgs.python38.withPackages (py: with py; [ sh requests click maya ])) ];
2021-06-28 11:17:13 +00:00
};
});
}