Skip to content

Commit

Permalink
Update to working Nix config
Browse files Browse the repository at this point in the history
  • Loading branch information
nikdoof committed Apr 1, 2024
1 parent 8bb519d commit f9ba3da
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.poetry2nix.mkPoetryApplication {
{
poetry2nix ? import (fetchTarball {
url = "https://github.com/nix-community/poetry2nix/archive/refs/tags/2024.2.2230616.tar.gz";
sha256 = "0qx2iv57vhgraaqj4dm9zd3dha1p6ch4n07pja0hsxsymjbvdanw";
}) {}
}:

poetry2nix.mkPoetryApplication {
projectDir = ./.;
}
}

0 comments on commit f9ba3da

Please sign in to comment.