Commit all uncommitted changes
This commit is contained in:
parent
743ab70eee
commit
9983def243
7 changed files with 1333 additions and 11 deletions
11
flake.nix
11
flake.nix
|
|
@ -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}";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue