This commit is contained in:
Martin 2022-04-07 11:32:09 +02:00
parent 3a5e5d4870
commit 6ca24383f0
Signed by: mawalu
GPG Key ID: BF556F989760A7C8
5 changed files with 57 additions and 1 deletions

3
.gitignore vendored
View File

@ -1,2 +1,3 @@
.idea
main
bwbox
result

View File

13
bwbox.nimble Normal file
View File

@ -0,0 +1,13 @@
# Package
version = "1.0.0"
author = "mawalu"
description = "A DNS server for the ACME DNS-01 challenge"
license = "MIT"
srcDir = "."
bin = @["bwbox"]
# Dependencies
requires "nim >= 1.6.0"

26
flake.lock Normal file
View File

@ -0,0 +1,26 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1649321570,
"narHash": "sha256-j0SM2JzxKA3aGdH1QJUWqKW7lkHG1fuGLnPye4pBTBY=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "2c6bdafd36837e6422d18837ca1c77159be28a5a",
"type": "github"
},
"original": {
"owner": "NixOS",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

16
flake.nix Normal file
View File

@ -0,0 +1,16 @@
{
description = "An experimental sandbox tool for linux apps";
inputs.nixpkgs.url = github:NixOS/nixpkgs;
outputs = { self, nixpkgs }: {
packages.x86_64-linux.default =
with import nixpkgs { system = "x86_64-linux"; };
nimPackages.buildNimPackage {
name = "bwbox";
src = self;
};
};
}