1
0
forked from clan/clan-core
This commit is contained in:
a-kenji 2024-04-02 12:46:24 +02:00
parent 28ab426290
commit a864e951ab
4 changed files with 38 additions and 2 deletions

1
.gitignore vendored
View File

@ -7,7 +7,6 @@ out.log
democlan
example_clan
result*
/pkgs/clan-cli/clan_cli/nixpkgs
/pkgs/clan-cli/clan_cli/webui/assets
nixos.qcow2
**/*.glade~

View File

@ -0,0 +1,27 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1712004559,
"narHash": "sha256-87vZKDepF3ZqpinX5zarC5Xb9dwpGgmfcl4Woy26lYA=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "5476cea4892cedbf6f8bbebdb93ba07e3f5f5e38",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable-small",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

View File

@ -0,0 +1,9 @@
{
description = "dependencies for the clan-cli";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small";
};
outputs = _inputs: { };
}

View File

@ -9,7 +9,8 @@ dynamic = ["version"]
scripts = { clan = "clan_cli:main" }
[tool.setuptools.packages.find]
exclude = ["clan_cli.nixpkgs*", "result"]
# exclude = ["clan_cli.nixpkgs*", "result"]
exclude = ["result"]
[tool.setuptools.package-data]
clan_cli = ["py.typed", "config/jsonschema/*", "webui/assets/**/*", "vms/mimetypes/**/*"]