Commit all uncommitted changes

This commit is contained in:
heyarne 2022-08-08 23:44:44 +02:00
commit 9983def243
7 changed files with 1333 additions and 11 deletions

View file

@ -18,8 +18,14 @@
outputs = { self, nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem
(system:
let pkgs = nixpkgs.legacyPackages.${system}; in
{
let
pkgs = nixpkgs.legacyPackages.${system};
# myApp = pkgs.poetry2nix.mkPoetryApplication {
# # this contains a python interpreter and datasette with addons
# projectDir = ./.;
# python = pkgs.python38;
# };
in {
devShell =
let
lib = pkgs.lib;
@ -32,6 +38,7 @@
rlwrap
datasette
python39
];
LD_LIBRARY_PATH = "${lib.makeLibraryPath buildInputs}";