mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-11-23 09:04:37 +03:00
15 lines
183 B
Nix
15 lines
183 B
Nix
{
|
|
lib,
|
|
self,
|
|
...
|
|
}: let
|
|
l = lib // builtins;
|
|
in {
|
|
flake = {
|
|
v1-python = {
|
|
description = "Simple dream2nix python project";
|
|
path = ./v1-python;
|
|
};
|
|
};
|
|
}
|