mirror of
https://github.com/ZmnSCPxj/clboss.git
synced 2026-08-13 12:33:20 +02:00
20 lines
390 B
Nix
20 lines
390 B
Nix
{
|
|
pkgs ? import (builtins.fetchTarball {
|
|
url = "https://github.com/NixOS/nixpkgs/archive/nixpkgs-unstable.tar.gz";
|
|
}) { },
|
|
}:
|
|
|
|
let
|
|
poetry2nix = import (builtins.fetchGit {
|
|
url = "https://github.com/nix-community/poetry2nix";
|
|
}) { inherit pkgs; };
|
|
in
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = [
|
|
pkgs.poetry
|
|
(poetry2nix.mkPoetryEnv {
|
|
projectDir = ./contrib;
|
|
})
|
|
];
|
|
}
|